/* ─────────────────────────────────────────────────────────────────────────────
   ChoreCraft marketing website — style.css
   Inspired by Linear's dark, editorial aesthetic.
   ──────────────────────────────────────────────────────────────────────────── */

/* ── Tokens ─────────────────────────────────────────────────────────────────── */
:root {
  --bg: #06060f;
  --surface: #0d0d1a;
  --surface-2: #12122a;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.14);

  --indigo: #4338ca;
  --violet: #7c3aed;
  --indigo-lt: #818cf8;
  --violet-lt: #a78bfa;

  --text: #f0f0ff;
  --text-2: #9090b8;
  --text-3: #5555aa;

  --radius: 12px;
  --radius-lg: 20px;

  --grad: linear-gradient(135deg, var(--indigo), var(--violet));
  --grad-text: linear-gradient(90deg, var(--indigo-lt), var(--violet-lt));
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  font: inherit;
}

/* ── Typography helpers ──────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-lt);
  margin-bottom: 0.75rem;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout helpers ──────────────────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 100px 0;
}

/* ── Navbar ──────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  background: rgba(6, 6, 15, 0.82);
  transition: border-color 0.3s;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 60px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--text);
  flex-shrink: 0;
}
.nav__logo img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 32px;
}
.nav__links a {
  font-size: 14px;
  color: var(--text-2);
  padding: 6px 14px;
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav__links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Lang switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2px;
}
.lang-btn {
  background: transparent;
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.2s;
}
.lang-btn--active {
  background: var(--grad);
  color: #fff;
}
.lang-btn:not(.lang-btn--active):hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 9px;
  border: none;
  outline: none;
  transition:
    opacity 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
}
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 2px 24px rgba(124, 58, 237, 0.35);
}
.btn--primary:hover {
  box-shadow: 0 4px 32px rgba(124, 58, 237, 0.5);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}
.btn--outline:hover {
  border-color: var(--violet-lt);
  color: var(--violet-lt);
  background: rgba(124, 58, 237, 0.06);
}
.btn--lg {
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 12px;
}
.btn--xl {
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 14px;
}

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  pointer-events: none;
  background: radial-gradient(
    ellipse 60% 50% at 50% 0%,
    rgba(124, 58, 237, 0.25) 0%,
    transparent 70%
  );
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--violet-lt);
  margin-bottom: 28px;
}
.hero__badge::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--violet);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(124, 58, 237, 0.7);
  flex-shrink: 0;
}
.hero__h1 {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 820px;
  margin: 0 auto 20px;
}
.hero__h1 span {
  display: block;
}
.hero__h1 .grad-text {
  display: inline;
}
.hero__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hero__trust span {
  font-size: 12px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__trust span::before {
  content: "✓";
  color: var(--violet-lt);
  font-weight: 700;
}

/* Stats strip */
.stats {
  padding: 24px 0 48px;
  border-top: 1px solid var(--border);
}
.stats__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 180px;
  max-width: 300px;
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}
.stat:last-child {
  border-right: none;
}
.stat__n {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat__l {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 4px;
}

/* ── App mockup ──────────────────────────────────────────────────────────────── */
.hero__mockup {
  margin: 60px auto 0;
  max-width: 920px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(124, 58, 237, 0.08);
  overflow: hidden;
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}
.mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) {
  background: #ff5f56;
}
.mockup-dot:nth-child(2) {
  background: #ffbd2e;
}
.mockup-dot:nth-child(3) {
  background: #27c93f;
}
.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 16px;
  max-width: 340px;
  margin: 0 auto;
}
.mockup-body {
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.task-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  cursor: default;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.task-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.task-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.task-card__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}
.task-card__meta {
  font-size: 11px;
  color: var(--text-3);
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.badge-open {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
}
.badge-prog {
  background: rgba(245, 158, 11, 0.12);
  color: #fcd34d;
}
.badge-repair {
  background: rgba(124, 58, 237, 0.15);
  color: var(--violet-lt);
}
.badge-shop {
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
}
.badge-garden {
  background: rgba(14, 165, 233, 0.12);
  color: #7dd3fc;
}
.badge-urgent {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
}
.badge-med {
  background: rgba(249, 115, 22, 0.12);
  color: #fdb57a;
}

/* ── Features ────────────────────────────────────────────────────────────────── */
.features {
  background: var(--surface);
}
.features__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.features__h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.features__sub {
  font-size: 16px;
  color: var(--text-2);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feat-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.25s;
}
.feat-card:hover {
  background: var(--surface-2);
}
.feat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}
.feat-card:hover .feat-card__icon {
  border-color: rgba(124, 58, 237, 0.4);
}
.feat-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feat-card__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── How it works ────────────────────────────────────────────────────────────── */
.how__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.how__h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.step:hover {
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateY(-4px);
}
.step__num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}
.step__role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-lt);
  margin-bottom: 8px;
}
.step__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}
.step::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle at 100% 100%,
    rgba(124, 58, 237, 0.15),
    transparent 70%
  );
  pointer-events: none;
}

/* ── Pricing ─────────────────────────────────────────────────────────────────── */
.pricing {
  background: var(--surface);
}
.pricing__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.pricing__h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.pricing__sub {
  font-size: 15px;
  color: var(--text-2);
}
.pricing__note {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 14px;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition:
    border-color 0.25s,
    transform 0.2s;
}
.plan:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.plan--popular {
  border-color: rgba(124, 58, 237, 0.5);
  background: var(--surface-2);
}
.plan--popular:hover {
  border-color: var(--violet);
}
.plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 6px;
}
.plan__desc {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 24px;
}
.plan__price {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.plan__price span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-2);
  vertical-align: middle;
}
.plan__limit {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 28px;
}
.plan__cta {
  width: 100%;
  margin-bottom: 28px;
}
.plan__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
}
.plan__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan__feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.plan__feat::before {
  content: "✓";
  color: var(--violet-lt);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CTA band ────────────────────────────────────────────────────────────────── */
.cta-band {
  padding: 100px 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 50%,
      rgba(67, 56, 202, 0.2) 0%,
      transparent 70%
    ),
    var(--bg);
  text-align: center;
}
.cta-band__h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-band__sub {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  background: var(--surface);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}
.footer__brand-logo img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}
.footer__tagline {
  font-size: 13px;
  color: var(--text-3);
}
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer__links a:hover {
  color: var(--text);
}
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 13px;
  color: var(--text-3);
}

/* ── Scroll reveal ───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Guide page ──────────────────────────────────────────────────────────────── */
.guide-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  align-items: start;
}
.guide-toc {
  position: sticky;
  top: 84px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  font-size: 13px;
}
.guide-toc__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 14px;
}
.guide-toc a {
  display: block;
  color: var(--text-3);
  padding: 6px 0;
  transition: color 0.2s;
}
.guide-toc a:hover {
  color: var(--text);
}
.guide-toc a.active {
  color: var(--violet-lt);
  font-weight: 600;
}
.guide-content {
  padding-left: 48px;
}
.guide-content h1 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.guide-content .subtitle {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 48px;
}
.guide-section {
  margin-bottom: 56px;
  scroll-margin-top: 90px;
}
.guide-section h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
.guide-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0 8px;
}
.guide-section p {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 12px;
  line-height: 1.7;
}
.guide-section ul li {
  font-size: 15px;
  color: var(--text-2);
  padding: 4px 0 4px 20px;
  position: relative;
}
.guide-section ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--text-3);
}

/* Tiers table */
.tiers-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.tiers-table th,
.tiers-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.tiers-table th {
  font-weight: 700;
  font-size: 12px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--surface);
}
.tiers-table td {
  color: var(--text-2);
}
.tiers-table td:first-child {
  color: var(--text);
  font-weight: 500;
}
.check {
  color: var(--violet-lt);
  font-weight: 700;
}
.dash {
  color: var(--text-3);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after {
  content: "+";
  color: var(--violet-lt);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.25s;
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 12px;
}

/* Guide back link */
.guide-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.guide-back:hover {
  color: var(--violet-lt);
}

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .plans {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .guide-layout {
    grid-template-columns: 1fr;
  }
  .guide-toc {
    display: none;
  }
  .guide-content {
    padding-left: 0;
  }
  .mockup-body {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .nav__links {
    display: none;
  }
  section {
    padding: 64px 0;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .mockup-body {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 440px) {
  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }
  .stat {
    min-width: 140px;
  }
}
