/* ============================================================
   SettleFlow landing page
   Design tokens mirrored from Figma (node 29:52)
   ============================================================ */
:root {
  --indigo: #4f46e5;
  --indigo-deep: #3525cd;
  --teal: #006a61;
  --gradient: linear-gradient(135deg, #4f46e5 0%, #006a61 100%);
  --gradient-text: linear-gradient(129deg, #3525cd 0%, #006a61 100%);

  --ink: #1e293b;        /* headings */
  --ink-strong: #191c1e; /* dense headings */
  --muted: #64748b;      /* body text */
  --line: #e2e8f0;       /* hairlines */
  --border-soft: #c7c4d8;

  --page: #f7f9fb;
  --card: #f2f4f6;
  --surface: #e0e3e5;

  --mint: #89f5e7;
  --lavender: #e2dfff;
  --peach: #ffdcc3;
  --green: #10b981;
  --red: #ba1a1a;

  --serif: "Noto Serif", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;

  --maxw: 1280px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--muted);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img, svg { display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ---------- Icons ---------- */
.ic {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  font-family: var(--sans);
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--gradient {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
}
.btn--outline {
  background: #fff;
  color: var(--ink-strong);
  border: 1px solid var(--border-soft);
}
.btn--sm { padding: 10px 24px; font-size: 14px; letter-spacing: .28px; }
.btn--lg { padding: 17px 32px; font-size: 20px; }
.btn--lg .ic { width: 18px; height: 18px; }

/* ---------- Pills / tags / eyebrows ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
}
.pill--lavender { background: var(--lavender); color: var(--indigo-deep); }
.pill .ic { width: 16px; height: 16px; fill: currentColor; stroke: none; }

.tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
}
.tag--green { background: rgba(16,185,129,.1); color: var(--green); }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.eyebrow--teal { color: var(--teal); }
.eyebrow--indigo { color: var(--indigo-deep); }

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

/* ---------- Brand ---------- */
.brand { display: inline-flex; align-items: center; gap: 8px; }
.brand__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient);
}
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -.6px;
  color: var(--indigo-deep);
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(247,249,251,.8);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .28px;
  color: var(--muted);
}
.nav__links a:hover { color: var(--ink-strong); }
.nav__links .btn { color: #fff; }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 96px 0; }
.section--white { background: #fff; }
.section--tint { background: var(--page); }

.section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}
.section__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}
.section__title em { font-style: normal; }
.section__title--center { text-align: center; }
.section__title--sm { font-size: 32px; }
.section__lead {
  font-size: 18px;
  line-height: 28px;
  color: var(--muted);
  margin: 0;
  max-width: 576px;
}
.section__lead--center { text-align: center; max-width: 672px; }

.rule {
  width: 96px;
  height: 4px;
  border-radius: 9999px;
  background: var(--gradient);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 128px 0 80px;
  background: var(--page);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 32px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 56px;
  line-height: 70px;
  color: var(--ink);
  margin: 0;
}
.hero__lead {
  font-size: 18px;
  line-height: 28px;
  color: var(--muted);
  margin: 0;
  max-width: 576px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  min-height: 680px;
  align-items: center;
}
.hero__glow {
  position: absolute;
  inset: 34px 28px;
  border-radius: 9999px;
  background: linear-gradient(50deg, rgba(53,37,205,.2), rgba(0,106,97,.2));
  filter: blur(32px);
}

/* ---------- Phone mockup ---------- */
.phone {
  position: relative;
  width: 340px;
  height: 680px;
  background: #000;
  border: 8px solid #d8dadc;
  border-radius: 48px;
  padding: 20px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
}
.phone__screen {
  height: 100%;
  background: #fff;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone__top {
  background: var(--card);
  padding: 24px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.phone__head { display: flex; align-items: center; justify-content: space-between; }
.phone__brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--indigo-deep);
}
.phone__bell { color: var(--ink-strong); width: 18px; height: 18px; }

.balance-card {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.balance-card__label { font-size: 12px; font-weight: 700; letter-spacing: .6px; color: var(--muted); }
.balance-card__value { font-family: var(--serif); font-size: 16px; color: var(--green); }

.phone__body {
  flex: 1;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: auto;
}
.txn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}
.txn__left { display: flex; align-items: center; gap: 12px; }
.txn__title { margin: 0; font-size: 16px; color: var(--ink-strong); }
.txn__meta { margin: 0; font-size: 12px; font-weight: 700; letter-spacing: .6px; color: var(--muted); }
.txn__amount { font-size: 16px; }
.txn__amount--neg { color: var(--red); }
.txn__amount--pos { color: var(--green); }

.avatar {
  width: 40px; height: 40px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink-strong);
}
.avatar .ic { width: 20px; height: 20px; }
.avatar--mint { background: var(--mint); }
.avatar--lavender { background: var(--lavender); }

.phone__tabs {
  background: var(--surface);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.phone__tabs .ic { color: var(--muted); width: 18px; height: 18px; }
.phone__fab {
  width: 48px; height: 48px;
  border-radius: 9999px;
  background: var(--gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -40px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
}
.phone__fab .ic { color: #fff; width: 16px; height: 16px; }

/* ============================================================
   Split feature sections
   ============================================================ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-grid__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.split-grid__visual { position: relative; }

.blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(32px);
  z-index: 0;
}
.blob--mint { width: 256px; height: 256px; top: -48px; left: -48px; background: rgba(137,245,231,.3); }
.blob--lavender { width: 320px; height: 320px; background: rgba(226,223,255,.2); }
.blob--br { bottom: -80px; right: -80px; }

/* Settle card */
.settle-card {
  position: relative;
  z-index: 1;
  max-width: 448px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 16px;
  padding: 33px;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.settle-card__head { display: flex; align-items: center; justify-content: space-between; }
.settle-card__title { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--ink-strong); margin: 0; }
.settle-row { display: flex; align-items: center; gap: 16px; }
.circle {
  width: 48px; height: 48px;
  border-radius: 9999px;
  background: #eceef0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ink-strong);
  flex-shrink: 0;
}
.bar { flex: 1; height: 8px; border-radius: 9999px; background: #eceef0; overflow: hidden; }
.bar__fill { display: block; height: 100%; }
.bar__fill--indigo { background: var(--indigo); }
.bar__fill--green { background: var(--green); }
.settle-row__meta { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.settle-row__meta small { font-size: 12px; font-weight: 700; letter-spacing: .6px; color: var(--muted); }
.settle-row__meta strong { font-weight: 400; font-size: 16px; color: var(--ink-strong); }
.settle-arrow { display: flex; justify-content: center; color: var(--muted); }
.settle-arrow .ic { width: 14px; height: 20px; }
.settle-card__quote {
  margin: 0;
  padding-top: 33px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  color: var(--muted);
}

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 16px; padding-top: 16px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.ic--check { color: var(--teal); width: 20px; height: 24px; flex-shrink: 0; }
.feature-list strong { display: block; font-size: 16px; color: var(--ink-strong); }
.feature-list p { margin: 0; font-size: 14px; line-height: 20px; color: var(--muted); }

/* Mini cards */
.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 16px; width: 100%; }
.mini-card {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 12px;
  padding: 17px;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
}
.mini-card h4 { margin: 8px 0 4px; font-size: 16px; font-weight: 400; color: var(--ink-strong); }
.mini-card p { margin: 0; font-size: 14px; line-height: 20px; color: var(--muted); }
.ic--accent-indigo { color: var(--indigo); width: 18px; height: 18px; }

/* Checklist card */
.checklist-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.checklist-card__title { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--ink-strong); margin: 0; }
.checklist { display: flex; flex-direction: column; gap: 16px; }
.checklist__item { display: flex; align-items: center; gap: 16px; }
.checklist__item--dim { opacity: .7; }
.checklist__label { flex: 1; font-size: 14px; font-weight: 600; letter-spacing: .28px; color: var(--ink-strong); }
.checklist__item--done .checklist__label { text-decoration: line-through; color: var(--muted); }
.check {
  width: 24px; height: 24px;
  border-radius: 4px;
  border: 2px solid var(--border-soft);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.check--filled { background: var(--indigo); border-color: var(--indigo); }
.check--filled .ic { width: 14px; height: 14px; color: #fff; }
.check-avatar {
  width: 32px; height: 32px;
  border-radius: 9999px;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-strong);
  flex-shrink: 0;
}
.check-avatar--mint { background: var(--mint); }
.check-avatar--lavender { background: var(--lavender); }
.check-avatar--grey { background: #eceef0; }
.add-task {
  border: 2px dashed var(--border-soft);
  background: transparent;
  border-radius: 12px;
  padding: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  color: var(--muted);
  cursor: pointer;
}
.add-task:hover { border-color: var(--indigo); color: var(--indigo); }

/* ============================================================
   Bento grid
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.bento__card {
  background: var(--card);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bento__card h3 { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--ink-strong); margin: 0; }
.bento__card p { margin: 0; font-size: 16px; line-height: 24px; color: var(--muted); }
.bento__card--wide { grid-column: span 2; padding: 48px; overflow: hidden; }
.bento__card--voice {
  background: var(--indigo);
  padding: 48px;
  justify-content: space-between;
}
.bento__card--voice h3 { color: #fff; font-size: 24px; }
.bento__card--voice p { color: rgba(255,255,255,.8); }
.bento__card--voice > div:first-child { display: flex; flex-direction: column; gap: 24px; }

.icon-box {
  width: 48px; height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box .ic { width: 22px; height: 22px; }
.icon-box--mint { background: var(--mint); color: var(--ink-strong); }
.icon-box--peach { background: var(--peach); color: var(--ink-strong); }
.icon-box--grey { background: var(--surface); color: var(--ink-strong); }
.icon-box--indigo { background: var(--indigo); color: #fff; }
.icon-box--glass { background: rgba(255,255,255,.2); backdrop-filter: blur(2px); color: #fff; }

/* Receipt card */
.bento__card--wide > .receipt-copy,
.bento__card--wide { /* override flex direction for wide */ }
.bento__card--wide {
  flex-direction: row;
  align-items: center;
  gap: 48px;
}
.receipt-copy { display: flex; flex-direction: column; gap: 24px; max-width: 323px; }
.receipt-copy h3 { font-size: 24px; }
.receipt-shot {
  flex-shrink: 0;
  width: 256px;
  height: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  transform: rotate(3deg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.receipt-img {
  height: 144px;
  border-radius: 4px;
  background: rgba(216,218,220,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border-soft);
}
.receipt-img .ic { width: 27px; height: 27px; }
.skeleton { display: block; border-radius: 4px; background: rgba(216,218,220,.4); }
.skeleton--lg { height: 8px; width: 168px; }
.skeleton--md { height: 8px; width: 112px; }
.receipt-total { display: flex; justify-content: space-between; padding-top: 16px; }
.skeleton--chip { height: 12px; width: 64px; background: rgba(79,70,229,.2); }
.skeleton--chip-solid { width: 48px; background: var(--indigo); }

/* Voice mic */
.voice-mic { display: flex; justify-content: center; padding-top: 48px; }
.mic-ring {
  position: relative;
  width: 80px; height: 80px;
  border-radius: 9999px;
  background: rgba(255,255,255,.1);
  border: 4px solid rgba(255,255,255,.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  animation: mic-breathe 2s ease-in-out infinite;
}
.mic-ring .ic { width: 18px; height: 24px; }

/* expanding "listening" waves radiating from the mic */
.mic-ring::before,
.mic-ring::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 9999px;
  border: 2px solid rgba(255,255,255,.5);
  animation: mic-pulse 2s ease-out infinite;
}
.mic-ring::after { animation-delay: 1s; }

@keyframes mic-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes mic-pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .mic-ring,
  .mic-ring::before,
  .mic-ring::after { animation: none; }
}

/* ============================================================
   How it works
   ============================================================ */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.steps__line {
  position: absolute;
  top: 40px;
  left: 25%;
  right: 25%;
  border-top: 2px dashed var(--border-soft);
}
.step { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.step__icon {
  position: relative;
  width: 80px; height: 80px;
  border-radius: 24px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  color: var(--indigo);
}
.step__icon .ic { width: 32px; height: 32px; }
.step__num {
  position: absolute;
  top: -12px; left: -12px;
  width: 32px; height: 32px;
  border-radius: 9999px;
  background: var(--gradient);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--ink-strong); margin: 0; }
.step p { margin: 0; font-size: 16px; line-height: 24px; color: var(--muted); max-width: 280px; }

/* ============================================================
   CTA
   ============================================================ */
.cta-wrap { padding: 0 40px 96px; background: #fff; }
.cta {
  max-width: calc(var(--maxw) - 96px);
  margin: 0 auto;
  background: var(--gradient);
  border-radius: 48px;
  padding: 80px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.cta__title { font-family: var(--serif); font-weight: 700; font-size: 48px; line-height: 60px; color: #fff; margin: 0; }
.cta__lead { font-size: 18px; line-height: 28px; color: rgba(255,255,255,.9); margin: 0; max-width: 672px; }
.cta__stores { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; padding-top: 16px; }
.store {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  border-radius: 12px;
  padding: 12px 24px;
  min-width: 192px;
}
.store:hover { opacity: .9; }
.store__logo { width: 26px; height: 26px; }
.store span { display: flex; flex-direction: column; line-height: 1.2; }
.store small { font-size: 10px; opacity: .6; }
.store strong { font-size: 18px; font-weight: 700; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #fff; border-top: 1px solid var(--line); padding: 64px 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer__brand { display: flex; flex-direction: column; gap: 24px; max-width: 320px; }
.footer__brand p { margin: 0; font-size: 14px; line-height: 20px; color: var(--muted); }
.footer__social { display: flex; gap: 16px; }
.footer__social a { color: var(--muted); }
.footer__social a:hover { color: var(--indigo); }
.footer__col h4 { margin: 0 0 24px; font-size: 14px; font-weight: 600; letter-spacing: .28px; color: var(--ink-strong); }
.footer__col li { margin-bottom: 16px; }
.footer__col a { font-size: 14px; color: var(--muted); }
.footer__col a:hover { color: var(--ink-strong); }
.footer__bottom { border-top: 1px solid var(--line); padding-top: 33px; text-align: center; }
.footer__bottom p { margin: 0; font-size: 14px; color: var(--muted); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .container { padding-left: 24px; padding-right: 24px; }
  .nav__links { gap: 16px; }
  .nav__links a:not(.btn) { display: none; }

  .hero__grid,
  .split-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { justify-content: center; min-height: 0; }
  .hero__title { font-size: 44px; line-height: 54px; }

  /* keep the text column above the visual on splitting section */
  .split-grid__copy { order: -1; }

  .bento { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: auto; flex-direction: column; align-items: flex-start; }

  .steps { grid-template-columns: 1fr; gap: 56px; }
  .steps__line { display: none; }

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

  .cta { padding: 48px 28px; border-radius: 32px; }
  .cta__title { font-size: 34px; line-height: 42px; }
  .section__title { font-size: 32px; }
}

@media (max-width: 560px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .section { padding: 64px 0; }
  .hero { padding: 110px 0 56px; }
  .hero__title { font-size: 36px; line-height: 44px; }
  .mini-cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions, .cta__stores { width: 100%; }
  .btn--lg { width: 100%; }
}
