:root {
  --blue: #0052c2;
  --blue-dark: #003d94;
  --blue-soft: #e8f1fc;
  --navy: #071a33;
  --text: #152033;
  --muted: #5b6677;
  --line: #e4e9f0;
  --bg: #f5f7fb;
  --white: #ffffff;
  --radius: 6px;
  --shadow: 0 12px 40px rgba(7, 26, 51, 0.08);
  --container: 1180px;
  --header: 78px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--blue);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #9ec0f5;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head h2,
.repair-copy h2,
.contact-copy h2,
.cta-banner h2,
.hero h1 {
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
}

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  text-align: left;
  max-width: none;
  gap: 20px;
}

.section-head-row .section-head,
.section-head-row > div {
  margin: 0;
  text-align: left;
  max-width: 720px;
}

.center {
  text-align: center;
  margin-top: 36px;
}

.text-link {
  color: var(--blue);
  font-weight: 600;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-lg {
  min-height: 50px;
  padding: 0 26px;
}

.btn-block {
  width: 100%;
}

.quote-short {
  display: none;
}

.nav-cta {
  display: none;
}

.topbar {
  background: var(--navy);
  color: #d7e3f5;
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 38px;
}

.topbar-note {
  opacity: 0.85;
}

.topbar-contacts {
  display: flex;
  gap: 22px;
}

.topbar-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.icon-phone {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6.6 10.8c1.4 2.7 3.9 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.7 21 3 13.3 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1l-2.2 2.2z'/></svg>");
}

.icon-mail {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/></svg>");
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--header);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 15px;
}

.logo-text span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.logo-on-dark .logo-text span {
  color: #9fb4d0;
}

.nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 500;
  color: #334155;
}

.nav a:hover,
.nav a.is-active {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.link-login {
  font-weight: 600;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 640px;
  color: #fff;
  display: flex;
  align-items: end;
  padding: 72px 0 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 51, 0.86) 0%, rgba(7, 26, 51, 0.55) 48%, rgba(7, 26, 51, 0.25) 100%);
}

.hero-inner {
  position: relative;
  padding-bottom: 36px;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(36px, 5vw, 58px);
  text-transform: none;
}

.hero-lead {
  max-width: 560px;
  margin: 18px 0 28px;
  color: #d9e4f2;
  font-size: 18px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(7, 26, 51, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.hero-stats li {
  padding: 22px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats li:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  font-size: 28px;
  margin: 4px 0 2px;
}

.hero-stats span {
  color: #c5d4e8;
  font-size: 13px;
}

.stat-icon {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
}

.trust,
.products,
.process,
.knowledge {
  padding: 88px 0;
}

.trust {
  background: var(--bg);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.trust-card {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
}

.trust-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.finder {
  margin-top: -28px;
  position: relative;
  z-index: 2;
  padding: 0 0 20px;
}

.finder-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto;
  gap: 16px;
  align-items: end;
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.finder-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.finder-field input,
.finder-field select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font-size: 16px;
}

.finder-submit {
  min-width: 140px;
  min-height: 46px;
}

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

.product-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 16px 20px;
  transition: 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  background: #fff;
}

.product-media {
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.product-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.product-card a {
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
}

.repair {
  padding: 40px 0 88px;
}

.repair-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.repair-copy h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 16px;
}

.repair-copy > p {
  color: var(--muted);
  margin-bottom: 20px;
}

.checklist {
  margin-bottom: 28px;
}

.checklist li {
  position: relative;
  padding: 7px 0 7px 28px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue-soft);
  box-shadow: inset 0 0 0 4px var(--blue);
}

.repair-media {
  position: relative;
  min-height: 420px;
}

.repair-main {
  width: 82%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  margin-left: auto;
}

.repair-inset {
  position: absolute;
  left: 0;
  bottom: -24px;
  width: 46%;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  border: 6px solid #fff;
  box-shadow: var(--shadow);
}

.brands {
  padding: 64px 0;
  background: var(--bg);
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.brand-row li {
  display: grid;
  place-items: center;
  min-height: 72px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #64748b;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 13px;
  text-align: center;
  padding: 8px;
}

.process {
  background: #fff;
}

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

.steps li {
  padding: 8px 8px 0 0;
}

.step-num {
  display: inline-block;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 10px;
}

.steps h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.steps p {
  color: var(--muted);
  font-size: 14px;
}

.values {
  padding: 20px 0 88px;
}

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

.value-card {
  padding: 24px;
  background: var(--bg);
  border-radius: 12px;
}

.value-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--blue);
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--muted);
  font-size: 14px;
}

.cta-banner {
  background: var(--blue-soft);
  padding: 48px 0;
}

.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-banner h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 8px;
  max-width: 720px;
}

.cta-banner p {
  color: var(--muted);
}

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

.article-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.article-media {
  height: 190px;
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  padding: 20px;
}

.tag {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-body h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.article-body a {
  color: var(--blue);
  font-weight: 600;
}

.contact {
  position: relative;
  padding: 88px 0;
  color: #fff;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.contact-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 51, 0.82);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  margin-bottom: 16px;
}

.contact-copy > p {
  color: #c9d7ea;
  margin-bottom: 28px;
  max-width: 480px;
}

.contact-list li {
  margin-bottom: 18px;
}

.contact-list strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ec0f5;
  margin-bottom: 4px;
}

.contact-list a,
.contact-list span {
  display: block;
  color: #e8eef7;
}

.contact-form {
  background: #fff;
  color: var(--text);
  padding: 28px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin-bottom: 18px;
  font-size: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.form-status {
  margin-top: 12px;
  color: #0f7b3b;
  font-weight: 600;
}

.footer {
  background: var(--blue);
  color: #e7f0ff;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}

.footer-brand p {
  margin-top: 16px;
  color: #c5d8f7;
  max-width: 320px;
}

.footer h3 {
  font-size: 16px;
  margin-bottom: 14px;
}

.footer a:hover {
  text-decoration: underline;
}

.footer li {
  margin-bottom: 8px;
  color: #d5e4fa;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  font-size: 13px;
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: transparent;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M12.04 2C6.5 2 2 6.37 2 11.76c0 1.72.46 3.4 1.34 4.88L2 22l5.5-1.44A10.2 10.2 0 0 0 12.04 21.5C17.6 21.5 22 17.13 22 11.75 22 6.37 17.6 2 12.04 2zm5.9 14.2c-.25.7-1.45 1.28-2.02 1.36-.52.07-1.18.1-1.9-.12-.44-.13-.99-.32-1.71-.63-3.01-1.3-4.96-4.33-5.11-4.54-.15-.2-1.22-1.62-1.22-3.1 0-1.47.77-2.2 1.04-2.5.26-.29.58-.37.77-.37h.56c.18 0 .42-.07.66.5.25.6.85 2.07.92 2.22.08.15.12.32.02.52-.1.2-.15.32-.3.5-.15.17-.31.39-.45.52-.15.15-.3.31-.13.6.18.3.79 1.3 1.7 2.1 1.16 1.04 2.14 1.36 2.44 1.51.3.15.48.13.66-.08.18-.2.75-.87.95-1.17.2-.3.4-.25.66-.15.27.1 1.7.8 2 .95.3.15.5.22.57.34.08.13.08.73-.17 1.43z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
}

.nav.open {
  display: flex;
}

.product-grid > *,
.trust-grid > *,
.steps > *,
.value-grid > *,
.article-grid > *,
.footer-grid > *,
.contact-grid > *,
.repair-grid > * {
  min-width: 0;
}

@media (max-width: 1100px) {
  .nav {
    gap: 16px;
    font-size: 14px;
  }

  .hero-stats,
  .product-grid,
  .steps,
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .repair-grid,
  .contact-grid,
  .footer-grid,
  .finder-bar {
    grid-template-columns: 1fr 1fr;
  }

  .finder-submit {
    grid-column: 1 / -1;
  }

  .repair-grid {
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header: 68px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .topbar-inner,
  .cta-banner-inner,
  .section-head-row,
  .footer-bottom-inner {
    flex-wrap: wrap;
  }

  .header-inner {
    justify-content: space-between;
    gap: 12px;
    min-height: var(--header);
  }

  .topbar-note,
  .link-login,
  .quote-full {
    display: none;
  }

  .quote-short {
    display: inline;
  }

  .btn-quote {
    min-height: 40px;
    padding: 0 14px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 12px 20px 24px;
    gap: 4px;
    margin: 0;
    max-height: calc(100dvh - var(--header) - 38px);
    overflow-y: auto;
    box-shadow: var(--shadow);
  }

  .nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    display: flex;
    margin-top: 8px;
    justify-content: center;
    background: var(--blue);
    color: #fff;
    border: 0;
    border-radius: var(--radius);
    font-weight: 600;
  }

  .nav-cta:hover,
  .nav a.is-active.nav-cta {
    color: #fff;
  }

  .nav.open {
    display: flex;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .hero {
    min-height: 0;
    padding-top: 40px;
    align-items: stretch;
  }

  .hero-bg::after {
    background: linear-gradient(180deg, rgba(7, 26, 51, 0.72) 0%, rgba(7, 26, 51, 0.88) 100%);
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .hero-lead {
    font-size: 16px;
    margin: 14px 0 22px;
  }

  .hero-ctas {
    margin-bottom: 28px;
  }

  .hero-ctas .btn {
    flex: 1 1 160px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    border-radius: 10px;
  }

  .hero-stats li {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 12px;
  }

  .hero-stats li:nth-child(2n) {
    border-right: 0;
  }

  .hero-stats li:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .hero-stats strong {
    font-size: 22px;
  }

  .trust,
  .products,
  .process,
  .knowledge,
  .contact {
    padding: 56px 0;
  }

  .repair {
    padding: 24px 0 56px;
  }

  .values {
    padding: 8px 0 56px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-grid,
  .article-grid,
  .steps,
  .value-grid,
  .repair-grid,
  .contact-grid,
  .footer-grid,
  .finder-bar,
  .form-row {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .brand-row {
    grid-template-columns: 1fr 1fr;
  }

  .finder {
    margin-top: -20px;
  }

  .finder-bar {
    padding: 16px;
  }

  .finder-submit {
    width: 100%;
  }

  .trust-card,
  .repair-main {
    height: 220px;
    width: 100%;
  }

  .repair-media {
    min-height: 0;
  }

  .repair-inset {
    position: static;
    width: 100%;
    height: 180px;
    margin-top: 12px;
    border: 0;
  }

  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner .btn {
    width: 100%;
  }

  .contact-form {
    padding: 20px;
  }

  .footer {
    padding-top: 40px;
  }

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

  .whatsapp {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 560px) {
  .topbar-contacts {
    width: 100%;
    justify-content: center;
  }

  .topbar-contacts a[href^="mailto"] {
    display: none;
  }

  .logo-text {
    display: none;
  }

  .product-grid,
  .brand-row,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats li,
  .hero-stats li:nth-child(2n),
  .hero-stats li:last-child {
    grid-column: auto;
    border-right: 0;
  }

  .hero-ctas .btn {
    flex: 1 1 100%;
  }

  .steps li {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }
}
