@font-face {
  font-family: "EyebrowSansAZ";
  src: url("assets/fonts/NunitoSans-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DiscountSansAZ";
  src: url("assets/fonts/NunitoSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DiscountSansAZ";
  src: url("assets/fonts/NunitoSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DiscountSansAZ";
  src: url("assets/fonts/NunitoSans-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PapaSans";
  src: url("assets/fonts/PapaSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PapaSans";
  src: url("assets/fonts/PapaSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PapaSans";
  src: url("assets/fonts/PapaSans-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PapaSans Condensed";
  src: url("assets/fonts/PapaSans-MediumCondensed.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RubikLocal";
  src: url("assets/fonts/Rubik-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RubikLocal";
  src: url("assets/fonts/Rubik-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RubikLocal";
  src: url("assets/fonts/Rubik-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #dc0000;
  --green: #11491f;
  --green-2: #2d5d2a;
  --lime: #cfeb0b;
  --cream: #fff8ee;
  --dough: #f5e8dc;
  --ink: #050505;
  --text: #1a1b1f;
  --muted: #63635f;
  --line: #e2d7c8;
  --font: "RubikLocal", Arial, sans-serif;
  --font-heading: "PapaSans", Arial Black, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
  min-height: 86px;
  padding: 14px clamp(18px, 3vw, 58px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.brand img {
  width: clamp(150px, 15vw, 218px);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 34px);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 700;
}

.nav a {
  padding: 10px 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 700;
  white-space: nowrap;
}

.contact-link .icon {
  color: var(--green-2);
}

.lang-toggle {
  display: inline-flex;
  gap: 2px;
  align-items: center;
  padding: 3px;
  border: 1px solid #c7d4bd;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.lang-toggle span {
  min-width: 34px;
  padding: 7px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.lang-toggle .is-active {
  color: #fff;
  background: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border: 2px solid var(--lime);
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.button-small {
  min-height: 48px;
  padding-inline: clamp(18px, 2vw, 26px);
}

.button-outline {
  border-color: var(--green);
  color: var(--green);
  background: rgba(255, 255, 255, 0.82);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 620px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, #fff 0%, #fff 70%, rgba(255, 255, 255, 0) 100%),
    var(--cream);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(46px, 5vw, 78px) 0 clamp(42px, 4vw, 68px) clamp(30px, 5vw, 70px);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 5px;
  color: #fff;
  background: var(--red);
  font-family: "EyebrowSansAZ", "RubikLocal", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(52px, 6.6vw, 94px);
  font-weight: 900;
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.4vw, 62px);
  font-weight: 900;
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.05;
}

.lead {
  max-width: 540px;
  margin-bottom: 30px;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  max-width: min(820px, 92vw);
}

.hero-badges div {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: none;
  min-width: 0;
  font-size: clamp(15px, 1.08vw, 18px);
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.badge-icon,
.proof-icon {
  display: inline-grid;
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.badge-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background: currentColor;
  -webkit-mask: var(--icon-url) center / contain no-repeat;
  mask: var(--icon-url) center / contain no-repeat;
}

.badge-mail {
  --icon-url: url("assets/icons/mail.svg");
}

.badge-manager {
  --icon-url: url("assets/icons/manager-tie.svg");
}

.badge-headset {
  --icon-url: url("assets/icons/headset.svg");
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: 620px;
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 72%;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 36%, rgba(255, 255, 255, 0.58) 66%, rgba(255, 255, 255, 0) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px clamp(30px, 7vw, 94px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-bar article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 76px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.proof-bar article:last-child {
  border-right: 0;
}

.proof-bar strong {
  max-width: 250px;
  color: var(--ink);
  font-size: clamp(17px, 1.35vw, 22px);
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.1;
}

.proof-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  background: currentColor;
  transform: translate(-50%, -50%);
  -webkit-mask: var(--proof-icon-url) center / contain no-repeat;
  mask: var(--proof-icon-url) center / contain no-repeat;
}

.proof-team {
  --proof-icon-url: url("assets/icons/team-three.svg");
}

.proof-transfer {
  --proof-icon-url: url("assets/icons/bank-transfer.svg");
}

.proof-transfer-custom::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: currentColor;
  -webkit-mask: url("assets/icons/bank-transfer-icon.png") center / contain no-repeat;
  mask: url("assets/icons/bank-transfer-icon.png") center / contain no-repeat;
}

.proof-percent {
  font-size: 0;
  line-height: 0;
  font-family: Arial, sans-serif;
  font-weight: 900;
  padding-bottom: 0;
}

.proof-percent::before {
  content: "%";
  width: auto;
  height: auto;
  background: transparent;
  font-size: 21px;
  line-height: 1;
  font-family: Arial, sans-serif;
  font-weight: 900;
  -webkit-mask: none;
  mask: none;
}

.proof-azn {
  font-size: 0;
  line-height: 0;
  font-family: Arial, sans-serif;
  font-weight: 900;
  padding-bottom: 0;
}

.proof-azn::before {
  content: "₼";
  width: auto;
  height: auto;
  background: transparent;
  font-size: 21px;
  line-height: 1;
  font-family: Arial, sans-serif;
  font-weight: 900;
  -webkit-mask: none;
  mask: none;
}

main > section:not(.hero):not(.proof-bar) {
  padding: clamp(62px, 7vw, 104px) clamp(24px, 6vw, 84px);
}

.intro {
  padding-bottom: 24px;
  background: #fff;
}

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

.section-head .eyebrow {
  margin-inline: auto;
}

.section-head .intro-eyebrow {
  text-transform: none;
}

.section-head p:not(.eyebrow) {
  max-width: 780px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.compact {
  margin-bottom: 32px;
}

.question-title {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.18em;
}

.question-title .title-red {
  color: var(--red);
}

.formats {
  background: #fff;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 1260px;
  margin: 0 auto;
}

.format-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: none;
}

.format-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.format-card p {
  color: var(--muted);
}

.format-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.format-card li {
  position: relative;
  padding-left: 25px;
  font-size: 15px;
}

.format-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.card-button {
  width: 100%;
  min-height: 46px;
  margin-top: auto;
}

.discount-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 44px;
  align-items: center;
  max-width: 1340px;
  margin: 0 auto 32px;
  padding: clamp(34px, 4vw, 52px);
  border: 1px solid #d8c3a7;
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 100%, rgba(207, 235, 11, 0.14), transparent 28%),
    var(--cream);
  font-family: "DiscountSansAZ", "RubikLocal", Arial, sans-serif;
}

.discount-copy h2 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-weight: 900;
}

.discount-copy .eyebrow {
  max-width: none;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.discount-copy p {
  max-width: 420px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.42;
}

.discount-rules {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.discount-rules article {
  padding-left: 16px;
  border-left: 3px solid var(--green);
}

.discount-rules strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 900;
}

.discount-rules p {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.38;
}

.calculator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.34fr);
  gap: 18px 20px;
  align-items: end;
}

.calc-controls {
  display: grid;
  grid-column: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.calc-control-spacer {
  min-height: 80px;
}

.calc-controls label {
  grid-template-rows: 42px 56px;
  align-items: end;
}

.calc-controls label > span {
  align-self: start;
  min-height: 42px;
  line-height: 1.2;
}

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid #d7c8b7;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-family: inherit;
  font-size: inherit;
  font-weight: 800;
}

textarea {
  resize: vertical;
}

.discount-summary {
  display: grid;
  grid-column: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.discount-summary div {
  display: grid;
  min-height: 126px;
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  place-items: center;
  text-align: center;
}

.discount-summary div:last-child {
  border-right: 0;
}

.discount-summary small,
.total-box small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.discount-summary strong {
  display: block;
  color: var(--green);
  font-size: 32px;
  line-height: 1;
}

.total-box {
  display: grid;
  gap: 6px;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  min-width: 0;
  padding: 20px;
  border-left: 1px solid var(--line);
}

.total-box span:first-child {
  font-weight: 900;
}

.total-box strong {
  color: var(--green);
  font-size: 54px;
  line-height: 0.9;
}

.total-box small {
  font-family: "DiscountSansAZ", "RubikLocal", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.35;
}

.calc-cta {
  grid-column: 2;
  min-height: 58px;
  font-family: var(--font-heading);
  font-weight: 900;
}

.steps {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 3% 44%, rgba(255, 255, 255, 0.12), transparent 20%),
    radial-gradient(circle at 96% 34%, rgba(207, 235, 11, 0.11), transparent 22%),
    linear-gradient(135deg, #0b3d18 0%, #11491f 55%, #092e13 100%);
}

.steps h2,
.steps h3 {
  color: #fff;
}

.step-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.step-line::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 8%;
  right: 8%;
  border-top: 2px dashed rgba(255, 255, 255, 0.42);
}

.step-line article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 102px 50px 42px 56px;
  justify-items: center;
  text-align: center;
}

.step-icon {
  display: inline-flex;
  position: relative;
  width: 86px;
  height: 86px;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  color: #fff;
  background: var(--green);
}

.step-icon::before {
  content: "";
  width: 34px;
  height: 34px;
  background: currentColor;
  -webkit-mask: var(--step-icon-url) center / contain no-repeat;
  mask: var(--step-icon-url) center / contain no-repeat;
}

.step-apply {
  --step-icon-url: url("assets/icons/pencil.svg");
}

.step-document {
  --step-icon-url: url("assets/icons/document.svg");
}

.step-check {
  --step-icon-url: url("assets/icons/check-thick.svg");
}

.step-check::before {
  width: 38px;
  height: 38px;
}

.step-manager {
  --step-icon-url: url("assets/icons/manager-tie.svg");
}

.step-headset {
  --step-icon-url: url("assets/icons/headset.svg");
}

.step-line b {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 18px;
}

.step-line h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  line-height: 1;
}

.step-line p {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 180px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.form-faq {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: clamp(34px, 5vw, 70px);
  background: #fff;
}

.form-column h2,
.faq-column h2 {
  font-size: clamp(34px, 3.8vw, 52px);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  font-family: "DiscountSansAZ", "RubikLocal", Arial, sans-serif;
}

.lead-form label {
  font-family: "DiscountSansAZ", "RubikLocal", Arial, sans-serif;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  font-family: "DiscountSansAZ", "RubikLocal", Arial, sans-serif;
  font-weight: 800;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  font-family: "DiscountSansAZ", "RubikLocal", Arial, sans-serif;
  font-weight: 800;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.faq-column {
  padding-left: 48px;
  border-left: 1px solid var(--line);
}

details {
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  padding: 20px 22px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.45;
}

.help-box {
  position: relative;
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding-left: 68px;
  background: linear-gradient(90deg, transparent 0 46px, var(--line) 46px 47px, transparent 47px);
}

.help-box::before {
  content: "☎";
  position: absolute;
  top: 3px;
  left: 0;
  width: 46px;
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.help-box strong {
  color: var(--ink);
  font-family: "DiscountSansAZ", "RubikLocal", Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.help-box a {
  color: var(--green);
  font-weight: 900;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding: 48px clamp(24px, 6vw, 84px);
  color: #fff;
  background: linear-gradient(135deg, #0d3c19, #082c11);
}

.footer img {
  width: 174px;
  margin-bottom: 14px;
}

.footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 18px;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.82);
}

.footer p {
  color: rgba(255, 255, 255, 0.82);
  white-space: pre-line;
}

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

  .nav {
    display: none;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .email-link {
    display: none;
  }

  .hero,
  .discount-panel,
  .form-faq {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: clamp(24px, 6vw, 76px);
  }

  .hero-media {
    min-height: 420px;
  }

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

  .calc-controls,
  .discount-summary {
    grid-column: 1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .total-box,
  .calc-cta {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .total-box {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .faq-column {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 1400px) and (min-width: 981px) {
  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-badges div {
    width: max-content;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 72px;
    padding: 12px 16px;
  }

  .brand img {
    width: 132px;
  }

  .contact-link,
  .button-small {
    display: none;
  }

  h1 {
    font-size: 54px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 42px 18px;
  }

  .hero-media {
    min-height: 300px;
  }

  .proof-bar,
  .card-grid,
  .step-line,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    flex-wrap: wrap;
  }

  .proof-bar article {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-bar article:last-child {
    border-bottom: 0;
  }

  .discount-panel,
  section {
    padding-inline: 18px;
  }

  .calculator,
  .calc-controls,
  .discount-summary,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .calc-control-spacer {
    display: none;
  }

  .calc-controls label {
    grid-template-rows: auto;
  }

  .calc-controls label > span {
    min-height: 0;
  }

  .discount-summary,
  .calc-cta {
    grid-column: auto;
  }

  .discount-summary div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .discount-summary div:last-child {
    border-bottom: 0;
  }

  .step-line::before {
    display: none;
  }

  .step-line article {
    grid-template-rows: auto;
    gap: 12px;
  }

  .full {
    grid-column: auto;
  }
}
