:root {
  --ink: #10191f;
  --ink-2: #1a2a32;
  --paper: #f4f5f1;
  --white: #ffffff;
  --line: #ced6d3;
  --muted: #5d696f;
  --lime: #c7f15b;
  --teal: #00877f;
  --coral: #ff6e4a;
  --blue: #3f6ad8;
  --content: 1180px;
  --shadow: 0 22px 60px rgba(16, 25, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  min-height: 76px;
  padding: 9px max(20px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--white);
  background: rgba(16, 25, 31, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: var(--white);
  line-height: 1.15;
  text-decoration: none;
}

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

.brand span {
  display: grid;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 5px;
  color: #aebdc2;
  font-size: 0.73rem;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-header nav a {
  color: #dce4e5;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--lime);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.language-button {
  min-width: 42px;
  min-height: 31px;
  padding: 4px 8px;
  border: 0;
  border-radius: 4px;
  color: #b8c5c8;
  background: transparent;
  font-size: 0.73rem;
  font-weight: 900;
  cursor: pointer;
}

.language-button.is-active {
  color: var(--ink);
  background: var(--lime);
}

.header-cta {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--lime);
  border-radius: 5px;
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(790px, calc(100svh - 76px));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  overflow: hidden;
}

.hero-screen {
  position: absolute;
  top: -8%;
  right: 9%;
  width: min(35vw, 430px);
  min-width: 330px;
  height: 118%;
  border: 10px solid #0a1115;
  border-radius: 44px;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5);
  transform: rotate(7deg);
}

[dir="rtl"] .hero-screen {
  right: auto;
  left: 9%;
  transform: rotate(-7deg);
}

.hero-app {
  position: absolute;
  z-index: 1;
  width: clamp(72px, 8vw, 116px);
  aspect-ratio: 1;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.hero-app-a {
  right: 4%;
  bottom: 11%;
  transform: rotate(-7deg);
}

.hero-app-b {
  right: 34%;
  top: 14%;
  transform: rotate(8deg);
}

.hero-app-c {
  right: 31%;
  bottom: 11%;
  transform: rotate(-4deg);
}

[dir="rtl"] .hero-app-a {
  right: auto;
  left: 4%;
  transform: rotate(7deg);
}

[dir="rtl"] .hero-app-b {
  right: auto;
  left: 34%;
  transform: rotate(-8deg);
}

[dir="rtl"] .hero-app-c {
  right: auto;
  left: 31%;
  transform: rotate(4deg);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 25, 31, 1) 0%, rgba(16, 25, 31, 0.96) 38%, rgba(16, 25, 31, 0.44) 70%, rgba(16, 25, 31, 0.25) 100%),
    linear-gradient(0deg, rgba(16, 25, 31, 0.8), transparent 60%);
}

[dir="rtl"] .hero-shade {
  background:
    linear-gradient(-90deg, rgba(16, 25, 31, 1) 0%, rgba(16, 25, 31, 0.96) 38%, rgba(16, 25, 31, 0.44) 70%, rgba(16, 25, 31, 0.25) 100%),
    linear-gradient(0deg, rgba(16, 25, 31, 0.8), transparent 60%);
}

.hero-inner {
  display: flex;
  min-height: min(790px, calc(100svh - 76px));
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 54px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

.hero h1 {
  width: min(760px, 68%);
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7.1rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-lead {
  width: min(700px, 62%);
  margin: 28px 0 0;
  color: #d8e1e3;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.hero-offer {
  display: grid;
  grid-template-columns: auto minmax(0, auto);
  align-items: center;
  gap: 2px 14px;
  max-width: min(700px, 62%);
  margin-top: 26px;
  padding: 13px 18px;
  border-inline-start: 5px solid var(--lime);
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  text-decoration: none;
}

.hero-offer span {
  grid-row: 1 / 3;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.72rem;
  font-weight: 950;
  white-space: nowrap;
}

.hero-offer strong {
  font-size: 1rem;
  line-height: 1.2;
}

.hero-offer small {
  color: #cbd7da;
  font-size: 0.74rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 170ms ease, background-color 170ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ddff86;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.56);
  color: var(--white);
  background: rgba(16, 25, 31, 0.3);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 0;
  width: min(700px, 62%);
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-facts span {
  display: grid;
  align-content: center;
  min-height: 100px;
  padding: 14px 20px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-facts span:last-child {
  border-inline-end: 0;
}

.hero-facts strong {
  color: var(--lime);
  font-size: 1.7rem;
  line-height: 1;
}

.hero-facts small {
  margin-top: 7px;
  color: #d5dddf;
  font-size: 0.76rem;
  font-weight: 700;
}

.section {
  padding: 104px 0;
  scroll-margin-top: 76px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.section-head h2,
.process-section h2,
.research-inner h2,
.contact-inner h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.25rem, 4.3vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(190px, 0.45fr);
  align-items: center;
  gap: 28px;
  min-height: 190px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.service-number {
  align-self: start;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 950;
}

.service-list h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.7vw, 2.65rem);
}

.service-list p {
  max-width: 660px;
  margin: 12px 0 0;
  color: var(--muted);
}

.service-list article > strong {
  justify-self: end;
  color: var(--teal);
  font-size: 1.05rem;
  text-align: end;
}

.pricing-section {
  color: var(--white);
  background: var(--ink-2);
}

.section-head-light > p {
  color: #b9c7cb;
}

.market-table {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.market-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(280px, 1.35fr) minmax(140px, 0.5fr);
  align-items: center;
  gap: 28px;
  min-height: 84px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.market-row span {
  color: #b9c7cb;
}

.market-row b {
  color: var(--lime);
  font-size: 1.25rem;
}

.market-row-head {
  min-height: 54px;
  color: #8fa2a7;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.market-row-head span {
  color: inherit;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 58px;
}

.package {
  display: flex;
  min-width: 0;
  min-height: 470px;
  flex-direction: column;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.package.featured {
  color: var(--ink);
  background: var(--lime);
}

.package > p {
  margin: 0 0 32px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.package.featured > p {
  color: var(--teal);
}

.package h3 {
  min-height: 66px;
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.package > strong {
  display: block;
  margin-top: 16px;
  color: var(--lime);
  font-size: 2rem;
  line-height: 1;
}

.package.featured > strong {
  color: var(--ink);
}

.package > strong span {
  font-size: 0.78rem;
}

.package ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.package li {
  position: relative;
  padding-inline-start: 17px;
  color: #c5d0d3;
  font-size: 0.84rem;
}

.package li::before {
  position: absolute;
  top: 0.65em;
  inset-inline-start: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.package.featured li {
  color: #344149;
}

.package button {
  min-height: 44px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  color: var(--white);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.package.featured button {
  border-color: var(--ink);
  color: var(--ink);
}

.price-note {
  max-width: 900px;
  margin: 24px 0 0;
  color: #95a6ab;
  font-size: 0.77rem;
}

.work-section {
  background: var(--white);
}

.app-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.app-gallery a {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 15px;
  padding: 20px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: var(--paper);
  text-align: center;
  text-decoration: none;
  transition: transform 170ms ease, border-color 170ms ease;
}

.app-gallery a:hover,
.app-gallery a:focus-visible {
  border-color: var(--teal);
  transform: translateY(-4px);
}

.app-gallery img {
  width: min(100%, 112px);
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 13px 32px rgba(16, 25, 31, 0.17);
}

.app-gallery strong {
  width: 100%;
  overflow: hidden;
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-gallery small {
  padding: 4px 7px;
  border-radius: 3px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.66rem;
  font-weight: 950;
}

.portfolio-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--teal);
  font-weight: 900;
  text-underline-offset: 5px;
}

.process-section {
  color: var(--white);
  background: var(--teal);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 54px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.35);
  list-style: none;
}

.process-list li {
  min-height: 250px;
  padding: 26px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.process-list span {
  display: block;
  margin-bottom: 55px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 950;
}

.process-list strong {
  font-size: 1.2rem;
}

.process-list p {
  margin: 10px 0 0;
  color: #d2e8e5;
  font-size: 0.88rem;
}

.research-section {
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
  background: #edf0eb;
}

.research-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  align-items: center;
  gap: 80px;
}

.research-inner h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.source-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-inline-start: 1px solid var(--line);
}

.source-links a {
  min-height: 62px;
  padding: 17px;
  border-inline-end: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.source-links a:hover,
.source-links a:focus-visible {
  color: var(--teal);
  background: var(--white);
}

.contact-section {
  padding: 104px 0;
  color: var(--white);
  background: var(--ink);
  scroll-margin-top: 76px;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.65fr);
  align-items: center;
  gap: 90px;
}

.contact-inner > div:first-child > p:last-child {
  max-width: 700px;
  margin: 24px 0 0;
  color: #b8c5c8;
}

.contact-funnel {
  display: grid;
  gap: 12px;
}

.funnel-step {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 36px;
  color: #e5ecee;
}

.funnel-step > span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 950;
}

.funnel-step-coupon {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 11px;
  margin-top: 4px;
  padding: 15px;
  border: 1px solid rgba(199, 241, 91, 0.52);
  background: rgba(199, 241, 91, 0.07);
}

.funnel-step-coupon div {
  display: grid;
  gap: 4px;
}

.funnel-step-coupon small {
  color: #b8c5c8;
  font-size: 0.72rem;
  line-height: 1.4;
}

.coupon-copy {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--lime);
  border-radius: 4px;
  color: var(--lime);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 900;
  cursor: pointer;
}

.coupon-code {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.choice-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-grid-budget {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-grid button {
  min-width: 0;
  min-height: 50px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  color: #c7d1d3;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
}

.choice-grid button.is-selected {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.funnel-summary {
  min-height: 42px;
  margin: 2px 0 0;
  padding: 11px 13px;
  border-inline-start: 3px solid var(--lime);
  color: #d8e2e4;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.5;
}

.button-wide {
  width: 100%;
}

.email-link,
.phone-link {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #d6dfe1;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px max(20px, calc((100vw - var(--content)) / 2));
  color: #98a8ac;
  background: #091116;
  font-size: 0.76rem;
}

footer a {
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero h1 {
    width: 65%;
    font-size: clamp(3.4rem, 7.6vw, 5.6rem);
  }

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

  .package {
    min-height: 430px;
  }
}

@media (max-width: 820px) {
  .inner {
    width: min(var(--content), calc(100% - 28px));
  }

  .site-header {
    min-height: 68px;
    padding: 8px 14px;
  }

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

  .brand small,
  .header-cta {
    display: none;
  }

  .language-button {
    min-width: 36px;
    padding-inline: 5px;
  }

  .hero,
  .hero-inner {
    min-height: 820px;
  }

  .hero-screen {
    top: 24%;
    right: -17%;
    width: 68vw;
    min-width: 260px;
    height: 84%;
    opacity: 0.56;
  }

  [dir="rtl"] .hero-screen {
    right: auto;
    left: -17%;
  }

  .hero-app-a {
    right: 3%;
    bottom: 8%;
  }

  .hero-app-b {
    right: 40%;
    top: 39%;
  }

  .hero-app-c {
    right: 32%;
    bottom: 9%;
  }

  [dir="rtl"] .hero-app-a {
    left: 3%;
  }

  [dir="rtl"] .hero-app-b {
    left: 40%;
  }

  [dir="rtl"] .hero-app-c {
    left: 32%;
  }

  .hero-shade,
  [dir="rtl"] .hero-shade {
    background: linear-gradient(0deg, rgba(16, 25, 31, 0.94) 0%, rgba(16, 25, 31, 0.78) 52%, rgba(16, 25, 31, 0.96) 100%);
  }

  .hero-inner {
    justify-content: flex-start;
    padding-top: 104px;
  }

  .hero h1,
  .hero-lead,
  .hero-offer,
  .hero-facts {
    width: 100%;
  }

  .hero-offer {
    max-width: 580px;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 4.8rem);
  }

  .hero-lead {
    max-width: 580px;
  }

  .hero-facts {
    margin-top: auto;
  }

  .section {
    padding: 76px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 38px;
  }

  .service-list article {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .service-list article > strong {
    grid-column: 2;
    justify-self: start;
    text-align: start;
  }

  .market-row {
    grid-template-columns: minmax(105px, 0.7fr) minmax(150px, 1.2fr) minmax(92px, 0.45fr);
    gap: 14px;
  }

  .market-row span,
  .market-row strong {
    font-size: 0.83rem;
  }

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

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

  .research-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: 0.88rem;
  }

  .hero,
  .hero-inner {
    min-height: 790px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 11vw, 3.6rem);
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-facts span {
    min-width: 0;
    min-height: 86px;
    padding: 12px 8px;
  }

  .hero-facts strong {
    font-size: 1.4rem;
  }

  .hero-facts small {
    font-size: 0.65rem;
    overflow-wrap: anywhere;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-list article > strong {
    grid-column: 1;
  }

  .market-table {
    overflow-x: auto;
  }

  .market-row {
    grid-template-columns: 115px 210px 100px;
    min-width: 465px;
  }

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

  .package {
    min-height: 0;
  }

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

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 210px;
  }

  .source-links {
    grid-template-columns: 1fr;
  }

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

  .choice-grid-three {
    grid-template-columns: 1fr;
  }

  .funnel-step-coupon {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .coupon-copy {
    grid-column: 2;
    justify-self: start;
  }

  footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
