:root {
  --bg: #fff8f2;
  --paper: #fffdf9;
  --text: #3b1820;
  --muted: #755f62;
  --primary: #d8396e;
  --primary-dark: #b92d59;
  --pink: #fde4e9;
  --green: #dff0d8;
  --yellow: #ffe6b7;
  --blue: #dcedfa;
  --line: #f3cfc7;
  --orange: #eda339;
  --shadow: 0 18px 50px rgba(113, 52, 42, .09);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 3% 7%, rgba(255, 206, 205, .48) 0 80px, transparent 81px),
    radial-gradient(circle at 96% 132px, rgba(255, 218, 151, .58) 0 118px, transparent 119px),
    linear-gradient(180deg, #fffaf6 0%, var(--bg) 42%, #fffaf5 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.section {
  position: relative;
  padding: 54px 0;
  overflow: hidden;
}

.site-header {
  width: min(1120px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
}

.brand img {
  width: 54px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.02;
}

.brand strong {
  font-size: 25px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand small {
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 14px;
  font-weight: 800;
  color: #201017;
}

.main-nav a,
.site-footer a {
  transition: color .2s ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #e24f82 0%, var(--primary) 100%);
  box-shadow: 0 12px 28px rgba(216, 57, 110, .23);
}

.btn-outline {
  color: var(--primary);
  border-color: #ef9aaa;
  background: rgba(255, 255, 255, .68);
}

.hero {
  min-height: 0;
  padding-top: 8px;
  padding-bottom: 6px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  align-items: center;
  gap: 36px;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  max-width: 520px;
  padding-top: 16px;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 520;
  letter-spacing: 0;
}

h1 span,
h2 span {
  color: var(--primary);
  font-weight: 850;
}

h2 span {
  display: inline-block;
  position: relative;
}

h2 span::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -12px;
  height: 12px;
  border-bottom: 5px solid var(--orange);
  border-radius: 50%;
  transform: rotate(-2deg);
}

.lead {
  max-width: 455px;
  margin-bottom: 20px;
  color: #4a2b31;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 500;
}

.hero-note {
  max-width: 455px;
  margin-bottom: 32px;
  color: #4d3135;
  font-size: 18px;
  line-height: 1.48;
}

.hero-note strong {
  color: var(--primary);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 0;
  color: #8a7678;
  list-style: none;
  font-size: 13px;
  font-weight: 750;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-list svg,
.feature-list svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-media {
  align-self: end;
  margin-right: -34px;
  position: relative;
}

.hero-media img {
  width: auto;
  max-width: min(500px, 47vw);
  max-height: 640px;
  margin-left: auto;
  filter: drop-shadow(0 22px 36px rgba(88, 42, 29, .11));
}

.decor,
.soft-shape {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.decor {
  object-fit: contain;
}

.decor-butterfly {
  width: 76px;
  left: 26px;
  top: 24px;
}

.hero-leaves {
  width: 210px;
  left: 34px;
  right: auto;
  top: 142px;
  opacity: .28;
  transform: rotate(-24deg);
  z-index: 0;
}

.soft-shape {
  display: block;
  border-radius: 45% 55% 54% 46% / 52% 44% 56% 48%;
  filter: blur(.2px);
}

.hero-shape-one {
  width: 160px;
  height: 210px;
  left: -42px;
  top: 104px;
  background: rgba(255, 205, 207, .55);
}

.hero-shape-two {
  width: 250px;
  height: 160px;
  right: -54px;
  top: 14px;
  background: rgba(255, 222, 158, .58);
}

.pain {
  padding-top: 46px;
}

.pain::before,
.pricing::before {
  content: "";
  position: absolute;
  inset: -42px -5vw auto;
  height: 96px;
  background: var(--bg);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 0;
}

h2 {
  margin-bottom: 8px;
  text-align: center;
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: 0;
}

.underline {
  width: 152px;
  height: 16px;
  margin: 0 auto 26px;
  visibility: hidden;
}

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

.problem-card {
  min-height: 218px;
  padding: 28px 22px 24px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, .72);
  box-shadow: 0 10px 32px rgba(99, 43, 37, .045);
}

.icon-bubble {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.icon-bubble svg,
.step-icon svg,
.gift-badge svg,
.qr-box svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pink {
  color: var(--primary);
  background: var(--pink);
}

.green {
  color: #4d953a;
  background: var(--green);
}

.yellow {
  color: #de8b15;
  background: var(--yellow);
}

.blue {
  color: #3093cf;
  background: var(--blue);
}

h3 {
  margin-bottom: 12px;
  color: #23151a;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 850;
}

.problem-card p,
.benefit-grid p,
.phone-card p,
.pricing-copy p,
.faq p,
.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
}

.problem-card p {
  font-size: 14px;
  line-height: 1.5;
}

.decor-side-left {
  width: 230px;
  left: 20px;
  bottom: 12px;
  opacity: .2;
  transform: rotate(9deg);
}

.benefits {
  padding-top: 36px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 8px;
}

.benefit-grid article {
  min-height: 220px;
  padding: 22px 48px 10px;
  text-align: center;
  position: relative;
}

.benefit-grid article + article {
  border-left: 1px solid var(--line);
}

.benefit-grid p {
  font-size: 14px;
  line-height: 1.55;
}

.decor-flowers-right {
  width: 280px;
  right: -66px;
  top: 24px;
  opacity: .38;
}

.how {
  padding-top: 32px;
  padding-bottom: 42px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 62px;
  left: 9%;
  right: 9%;
  border-top: 2px dashed #d8d9c1;
  z-index: -1;
}

.steps li {
  text-align: center;
  position: relative;
}

.step-number {
  width: 34px;
  height: 34px;
  margin: 0 auto -8px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 850;
}

.steps li:nth-child(2) .step-number { background: #6d9d4d; }
.steps li:nth-child(3) .step-number { background: #f19b34; }
.steps li:nth-child(4) .step-number { background: #3a95cc; }
.steps li:nth-child(5) .step-number { background: #ef6475; }

.step-icon {
  width: 112px;
  height: 82px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: rgba(255, 225, 226, .58);
  border: 1px solid rgba(244, 172, 178, .45);
  border-radius: 50%;
}

.steps li:nth-child(2) .step-icon { color: #67984d; background: rgba(226, 240, 216, .72); border-color: rgba(183, 216, 166, .6); }
.steps li:nth-child(3) .step-icon { color: #d48624; background: rgba(255, 232, 191, .72); border-color: rgba(239, 174, 86, .42); }
.steps li:nth-child(4) .step-icon { color: #318ec2; background: rgba(220, 237, 250, .75); border-color: rgba(148, 203, 232, .55); }
.steps li:nth-child(5) .step-icon { color: var(--primary); background: rgba(255, 226, 231, .75); border-color: rgba(237, 157, 171, .55); }

.steps strong {
  display: block;
  color: #23151a;
  font-size: 14px;
  line-height: 1.35;
}

.screens {
  padding-top: 34px;
  padding-bottom: 54px;
}

.screens-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 44px;
  align-items: center;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.phone-card {
  text-align: center;
}

.phone-frame {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phone-frame::before {
  content: "";
  width: 290px;
  height: 350px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: .92;
  z-index: -1;
}

.bg-one .phone-frame::before { background-image: url("/assets/bg-screen-1.png"); }
.bg-two .phone-frame::before { background-image: url("/assets/bg-screen-2.png"); }
.bg-three .phone-frame::before { background-image: url("/assets/bg-screen-3.png"); }

.phone-frame img {
  width: auto;
  height: 342px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(64, 38, 30, .12));
}

.phone-card:nth-child(2) .phone-frame img {
  width: auto;
}

.phone-card h3 {
  color: var(--primary);
  margin-bottom: 6px;
}

.phone-card p {
  max-width: 220px;
  margin-inline: auto;
  font-size: 14px;
  line-height: 1.45;
}

.feature-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  color: #593d43;
  list-style: none;
  font-size: 17px;
  font-weight: 700;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-pill {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #743ae8, #d646c8);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
}

.screens-shape-one {
  width: 260px;
  height: 160px;
  left: -52px;
  bottom: 78px;
  background: rgba(255, 205, 207, .52);
}

.screens-shape-two {
  width: 190px;
  height: 140px;
  right: -42px;
  bottom: 0;
  background: rgba(255, 227, 183, .4);
}

.decor-screen-right {
  width: 260px;
  right: -102px;
  bottom: 8px;
  opacity: .32;
  transform: rotate(-8deg);
}

.pricing {
  padding-top: 46px;
  padding-bottom: 54px;
}

.pricing-panel {
  min-height: 190px;
  display: grid;
  grid-template-columns: 112px 1fr 420px;
  align-items: center;
  gap: 28px;
  padding: 34px 42px;
  background:
    radial-gradient(circle at 82px 66%, rgba(255, 204, 207, .45) 0 92px, transparent 93px),
    rgba(255, 246, 237, .76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gift-badge {
  width: 106px;
  height: 106px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #ffe6b8;
  border-radius: 50%;
}

.gift-badge svg {
  width: 54px;
  height: 54px;
  stroke-width: 2.1;
}

.pricing-copy h2 {
  margin-bottom: 14px;
  text-align: left;
}

.pricing-copy h2 span::after {
  display: none;
}

.pricing-copy p {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.55;
}

.qr-box {
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 20px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.qr-box img {
  width: 118px;
  padding: 10px;
  background: #fff;
  border-radius: var(--radius);
}

.qr-box strong {
  display: block;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 20px;
  line-height: 1.2;
}

.qr-box a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #503338;
  font-size: 23px;
  font-weight: 850;
}

.qr-box svg {
  width: 24px;
  height: 24px;
  color: #43a949;
}

.qr-box small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.decor-pricing {
  width: 170px;
  left: 18px;
  bottom: 14px;
  opacity: .16;
}

.faq {
  padding-top: 36px;
  padding-bottom: 58px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid transparent;
}

details {
  min-height: 86px;
  padding: 0 20px 16px;
  border-left: 1px solid var(--line);
}

details:first-child {
  border-left: 0;
}

summary {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 60px;
  text-align: center;
  color: #24151a;
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  position: relative;
  padding-bottom: 18px;
}

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

summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) rotate(45deg);
  transition: transform .2s ease;
}

details[open] summary::after {
  transform: translateX(-50%) rotate(225deg);
}

.faq p {
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
}

.site-footer {
  border-top: 1px solid #f1d9d3;
  background: rgba(255, 250, 246, .84);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .75fr .75fr .55fr;
  gap: 48px;
  padding: 34px 0 26px;
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer .brand,
.site-footer .footer-brand {
  display: inline-flex;
  align-items: center;
}

.site-footer h2 {
  margin-bottom: 14px;
  text-align: left;
  font-size: 14px;
  line-height: 1;
}

.site-footer p,
.site-footer a {
  display: block;
  color: #756367;
  font-size: 13px;
  line-height: 1.8;
}

.site-footer p {
  max-width: 260px;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #2a171c;
  background: #fff;
  border-radius: 50%;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

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

.socials a[aria-label="Facebook"] svg,
.socials a[aria-label="TikTok"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #9b8d90;
  font-size: 12px;
}

.footer-bottom a {
  display: inline;
  color: inherit;
}

@media (max-width: 980px) {
  .site-header {
    gap: 18px;
  }

  .main-nav {
    gap: 22px;
  }

  .hero-grid {
    grid-template-columns: 1fr 430px;
    gap: 18px;
  }

  .hero-media {
    margin-right: -42px;
  }

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

  .benefit-grid article {
    padding-inline: 28px;
  }

  .screens-layout,
  .pricing-panel {
    grid-template-columns: 1fr;
  }

  .feature-list {
    max-width: 520px;
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    font-size: 15px;
  }

  .pricing-panel {
    text-align: center;
    justify-items: center;
  }

  .pricing-copy h2 {
    text-align: center;
  }

  .qr-box {
    padding-left: 0;
    border-left: 0;
  }

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

  details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 249, .62);
  }

  details:first-child {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at -8% 4%, rgba(255, 206, 205, .5) 0 90px, transparent 91px),
      linear-gradient(180deg, #fffaf6 0%, var(--bg) 55%, #fffaf5 100%);
  }

  .container,
  .site-header,
  .footer-bottom {
    width: min(100% - 28px, 560px);
  }

  .site-header {
    min-height: 72px;
    gap: 8px;
  }

  .main-nav {
    display: none;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .section {
    padding: 42px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 10px;
  }

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

  .hero-copy {
    max-width: none;
    text-align: left;
    padding-top: 0;
  }

  h1 {
    font-size: clamp(39px, 12vw, 54px);
    margin-bottom: 18px;
  }

  .lead,
  .hero-note {
    max-width: none;
    font-size: 17px;
  }

  .actions {
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-media {
    margin: 4px auto -34px;
  }

  .hero-media img {
    width: min(390px, 108vw);
    max-width: none;
    max-height: none;
    margin-inline: auto;
    transform: translateX(5%);
  }

  .decor-butterfly {
    width: 58px;
    left: 14px;
    top: 86px;
    opacity: .65;
  }

  .hero-leaves,
  .decor-side-left,
  .decor-flowers-right,
  .decor-screen-right,
  .decor-pricing {
    display: none;
  }

  .hero-shape-one {
    width: 110px;
    height: 150px;
    left: -58px;
    top: 122px;
  }

  .hero-shape-two {
    display: none;
  }

  h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .underline {
    margin-bottom: 24px;
  }

  .problem-grid,
  .benefit-grid,
  .phone-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .benefit-grid article {
    min-height: 0;
    padding: 24px 10px;
  }

  .benefit-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
    gap: 20px;
  }

  .steps::before {
    top: 18px;
    bottom: 18px;
    left: 168px;
    right: auto;
    border-top: 0;
    border-left: 2px dashed #d8d9c1;
    z-index: 0;
  }

  .steps li {
    display: grid;
    grid-template-columns: 50px 108px 1fr;
    align-items: center;
    gap: 10px;
    text-align: left;
    z-index: 1;
  }

  .step-number,
  .step-icon {
    margin: 0;
  }

  .step-icon {
    width: 92px;
    height: 72px;
  }

  .phone-grid {
    gap: 18px;
  }

  .phone-frame {
    min-height: 330px;
  }

  .phone-frame img {
    width: auto;
    height: 318px;
    max-width: 82vw;
  }

  .phone-card:nth-child(2) .phone-frame img {
    width: auto;
  }

  .feature-list {
    grid-template-columns: 1fr;
    margin-top: 8px;
    font-size: 15px;
  }

  .pricing-panel {
    gap: 20px;
    padding: 30px 18px;
  }

  .gift-badge {
    width: 86px;
    height: 86px;
  }

  .gift-badge svg {
    width: 44px;
    height: 44px;
  }

  .qr-box {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .qr-box strong {
    font-size: 18px;
  }

  .qr-box a {
    font-size: 20px;
  }

  summary {
    min-height: 50px;
  }

  .footer-grid {
    gap: 22px;
    padding-top: 30px;
  }

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

@media (max-width: 420px) {
  .header-cta {
    display: none;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 18px;
  }

  h1 {
    font-size: 35px;
  }

  .actions {
    margin-bottom: 20px;
  }

  .hero-media img {
    width: min(352px, 112vw);
  }

  .steps li {
    grid-template-columns: 42px 86px 1fr;
  }

  .steps::before {
    left: 138px;
  }

  .step-icon {
    width: 78px;
    height: 64px;
  }

  .step-icon svg {
    width: 28px;
    height: 28px;
  }
}
