@font-face {
  font-family: "Neue Montreal";
  src: url("fonts/NeueMontreal-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("fonts/NeueMontreal-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("fonts/NeueMontreal-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --green-primary: #3faf6c;
  --green-soft: #e9f6ee;
  --green-deep: #2e7d4f;
  --text-main: #2c2c2c;
  --text-muted: #555555;
  --bg-page: #ffffff;
  --divider: #e5e7eb;
  --trust: #6b7280;
  --product-box: #f8f9fa;
  --radius-md: 6px;
  --radius-lg: 16px;
  --shadow-soft: 0 14px 45px rgba(46, 125, 79, 0.08);
  --section-padding-y: clamp(3rem, 5vw, 4.25rem);
  --section-gap: clamp(1rem, 2vw, 1.35rem);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top right, rgba(63, 175, 108, 0.1), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #fcfdfc 100%);
  color: var(--text-main);
  font-family: "Montserrat", "Neue Montreal", "Segoe UI", sans-serif;
  overflow-x: hidden;
  overflow-x: clip;
}

a {
  color: var(--green-primary);
}

h1,
h2,
h3 {
  font-family: "Montserrat", "Neue Montreal", "Segoe UI", sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.5rem, 2.7vw, 2rem);
  font-weight: 900;
}

h3 {
  font-size: 20px;
  font-weight: 800;
}

p {
  margin: 0 0 1rem;
  line-height: 1.65;
  font-size: 18px !important;
  font-weight: 500;
  font-family: "Montserrat", "Neue Montreal", "Segoe UI", sans-serif;
}

.page {
  min-height: 100vh;
}

.sales-page .page > section {
  position: relative;
  isolation: isolate;
}

.sales-page .page > section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  z-index: -1;
  background: #ffffff;
}

.sales-page .page > section:nth-of-type(1)::before {
  background: #f5fbf7;
}

.sales-page .page > section:nth-of-type(2)::before {
  background: #ffffff;
}

.sales-page .page > section:nth-of-type(3)::before {
  background: #0f1d17;
}

.sales-page .page > section:nth-of-type(4)::before {
  background: #ecf7ef;
}

.sales-page .page > section:nth-of-type(5)::before {
  background: #f8fcf9;
}

.sales-page .page > section:nth-of-type(6)::before {
  background: #14261b;
}

.sales-page .page > section:nth-of-type(7)::before {
  background: #f2f8f4;
}

.sales-page .page > section:nth-of-type(8)::before {
  background: #ffffff;
}

.sales-page .page > section:nth-of-type(9)::before {
  background: #17291e;
}

.sales-page .page > section:nth-of-type(10)::before {
  background: #e8f4eb;
}

.sales-page .page > section:nth-of-type(11)::before {
  background: #f7faf8;
}

.sales-page .page > section:nth-of-type(12)::before {
  background: #102016;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  display: grid;
  gap: var(--section-gap);
  padding-block: var(--section-padding-y);
  border-bottom: none;
}

.section > * {
  margin-bottom: 0;
}

.eyebrow {
  color: var(--green-deep);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding-block: clamp(2rem, 4vh, 2.8rem) clamp(2.2rem, 5vh, 3.2rem);
}

.hero-brand {
  margin: 0;
  font-family: "Montserrat", "Neue Montreal", "Segoe UI", sans-serif;
  color: var(--green-deep);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.hero-main-title {
  max-width: 1120px;
  font-family: "Montserrat", "Neue Montreal", "Segoe UI", sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.04;
  margin: 0;
}

.hero-mockup {
  width: min(660px, 82vw);
  max-height: 42vh;
  object-fit: contain;
  display: block;
}

.hero-support {
  margin: 0;
  max-width: 870px;
  color: var(--text-muted);
  font-size: 18px !important;
  font-weight: 500;
}

.hero-support-italic {
  font-style: italic;
}

.hero-cta {
  margin-top: 0.35rem;
}

.hero-benefits {
  width: fit-content;
  max-width: 100%;
  margin: 0.35rem auto 0.15rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.95rem;
}

.hero .hero-benefits li {
  margin-bottom: 0;
  text-align: left;
  font-size: 16px !important;
  line-height: 1.4;
  align-items: center;
  gap: 0.65rem;
}

.hero .hero-benefits li::before {
  top: 0;
}

.hero-price {
  margin: 0;
}

.toggle-field {
  display: grid;
  gap: 0.4rem;
}

.toggle-label {
  margin: 0;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1.2;
}

.seg-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid #d7e4db;
  border-radius: 999px;
  background: #eef4f0;
}

.toggle-btn {
  border: 0;
  background: transparent;
  color: #23372a;
  border-radius: 999px;
  padding: 0.58rem 0.9rem;
  font-family: "Montserrat", "Neue Montreal", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.18s ease;
}

.toggle-btn.is-active {
  background: #0f7e00;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 126, 0, 0.22);
}

.toggle-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.sales-currency-field {
  width: min(370px, 100%);
  margin: 0.3rem auto 0.15rem;
  justify-items: center;
}

.sales-currency-toggle {
  max-width: 340px;
}

.section-cta-wrap {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
}

.section-cta-wrap .btn {
  width: min(760px, 100%);
  margin-inline: auto;
}

.subheadline {
  color: var(--text-muted);
}

.price-line {
  color: var(--green-deep);
  font-weight: 700;
}

.book-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.book-spine {
  background: linear-gradient(180deg, var(--green-deep), #1f5f3a);
  color: #ffffff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  text-align: center;
  padding: 1rem 0;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.book-main {
  background: linear-gradient(145deg, #f4fbf7 0%, #e9f6ee 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.book-tag {
  color: var(--green-deep);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.book-title {
  font-family: "Neue Montreal", "Segoe UI", sans-serif;
  font-size: 1.55rem;
  margin-bottom: 0.7rem;
}

.book-price {
  font-size: 1.2rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 14px 24px;
  text-decoration: none;
  font-family: "Montserrat", "Neue Montreal", "Segoe UI", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: #0f7e00;
  border-color: #0f7e00;
  color: #ffffff;
}

.btn-primary:hover {
  background: #0f7e00;
  border-color: #0f7e00;
}

.btn-secondary {
  border-color: #0f7e00;
  color: #ffffff;
  background: #0f7e00;
}

.btn-secondary:hover {
  border-color: #0f7e00;
  color: #ffffff;
  background: #0f7e00;
}

.full-width {
  width: 100%;
}

.check-list,
.dash-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.dash-list li {
  padding-left: 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  font-size: 18px !important;
  font-weight: 500;
  line-height: 1.65;
}

.check-list li::before,
.dash-list li::before {
  content: "\2713";
  position: relative;
  left: 0;
  top: 0.18em;
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  border-radius: 50%;
  background: #0f7e00;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.value-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 1rem;
  align-items: start;
}

.value-list {
  display: grid;
  gap: 0.75rem;
}

.value-item {
  border: 1px solid #d3e8da;
  border-radius: 14px;
  background: #ffffff;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.value-item h3 {
  margin: 0 0 0.35rem;
}

.value-item p {
  margin: 0;
  font-size: 18px !important;
  line-height: 1.45;
}

.value-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e9f6ee;
  color: #0f7e00;
  border: 1px solid #b8dfc7;
  border-radius: 999px;
  padding: 0.28rem 0.68rem;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  margin-top: 0.12rem;
}

.offer-card {
  border: 2px solid #0f7e00;
  border-radius: 16px;
  background: linear-gradient(160deg, #ffffff 0%, #eef9f1 100%);
  padding: 1.05rem;
  box-shadow: 0 12px 30px rgba(15, 126, 0, 0.14);
  display: grid;
  gap: 0.48rem;
  text-align: center;
}

.offer-label {
  margin: 0;
  font-size: 0.8rem !important;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2f6f41;
}

.offer-total {
  margin: 0;
  color: #5a6570;
  font-size: 2rem !important;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.offer-sub {
  margin: 0.1rem 0 0;
  color: #2c2c2c;
  font-size: 1rem !important;
  font-weight: 700;
}

.offer-now {
  margin: 0;
  color: #0f7e00;
  font-size: 3rem !important;
  font-weight: 900;
  line-height: 1;
}

.offer-save {
  margin: 0.12rem 0 0;
  color: #ffffff;
  background: #0f7e00;
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
  font-size: 0.92rem !important;
  font-weight: 800;
  justify-self: center;
}

.offer-note {
  margin: 0.35rem 0 0;
  color: #2f3e35;
  font-size: 0.95rem !important;
  line-height: 1.4;
}

.mistake-stack {
  display: grid;
  gap: 1rem;
}

.card {
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  background: #ffffff;
}

.quick-start {
  background: transparent;
  border-radius: 0;
  border: none;
  padding-block: var(--section-padding-y);
  padding-inline: 0;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline article {
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #d2eadb;
}

.timeline .outcome {
  border-color: #a6d8b9;
  background: #ffffff;
}

.callout {
  background: var(--product-box);
  border-left: 4px solid var(--green-primary);
  padding: 1rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.final-cta {
  text-align: center;
}

.sales-page .page > section.final-cta::before {
  background: #102016;
}

.sales-page .page > section.final-cta {
  color: #e9f6ee;
}

.sales-page .page > section.final-cta h2,
.sales-page .page > section.final-cta h3 {
  color: #f4fff6;
}

.sales-page .page > section.final-cta .cta-note,
.sales-page .page > section.final-cta .small-note {
  color: #cfe5d7;
  opacity: 1;
}

.start-now {
  text-align: center;
}

.sales-page .btn {
  width: min(760px, 100%);
  padding: 16px 30px;
  font-size: clamp(1.05rem, 2.4vw, 1.58rem);
  letter-spacing: 0.02em;
  margin-inline: auto;
}

.sales-page .page > section:nth-of-type(3),
.sales-page .page > section:nth-of-type(6),
.sales-page .page > section:nth-of-type(9),
.sales-page .page > section:nth-of-type(12) {
  color: #e9f6ee;
}

.sales-page .page > section:nth-of-type(3) h2,
.sales-page .page > section:nth-of-type(3) h3,
.sales-page .page > section:nth-of-type(6) h2,
.sales-page .page > section:nth-of-type(6) h3,
.sales-page .page > section:nth-of-type(9) h2,
.sales-page .page > section:nth-of-type(9) h3,
.sales-page .page > section:nth-of-type(12) h2,
.sales-page .page > section:nth-of-type(12) h3 {
  color: #f4fff6;
}

.sales-page .page > section:nth-of-type(3) .small-note,
.sales-page .page > section:nth-of-type(6) .small-note,
.sales-page .page > section:nth-of-type(9) .small-note,
.sales-page .page > section:nth-of-type(12) .small-note {
  color: #cfe5d7;
}

.sales-page .page > section:nth-of-type(3) .card,
.sales-page .page > section:nth-of-type(6) .card,
.sales-page .page > section:nth-of-type(9) .card,
.sales-page .page > section:nth-of-type(12) .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.sales-page .page > section:nth-of-type(3) .timeline article,
.sales-page .page > section:nth-of-type(6) .timeline article,
.sales-page .page > section:nth-of-type(9) .timeline article,
.sales-page .page > section:nth-of-type(12) .timeline article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.small-note {
  color: var(--trust);
  font-size: 0.95rem;
}

.cta-note {
  margin-top: 0.55rem;
  margin-bottom: 0;
  font-size: 16px !important;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}

.purchase-consent {
  margin-top: 0.45rem !important;
  margin-bottom: 0 !important;
  font-size: 12px !important;
  line-height: 1.45;
  color: #5f6672;
}

.purchase-consent a {
  color: #0f7e00;
  font-weight: 700;
  text-decoration: none;
}

.purchase-consent a:hover {
  text-decoration: underline;
}

.support-note {
  margin-top: 0.45rem;
  margin-bottom: 0;
  font-size: 14px !important;
  line-height: 1.45;
  color: var(--trust);
}

.support-link {
  color: #0f7e00;
  font-weight: 700;
  text-decoration: none;
}

.support-link:hover {
  text-decoration: underline;
}

.sales-page .cta-note {
  color: currentColor;
  opacity: 0.88;
}

.sales-page .page > section.final-cta .support-note {
  color: #d6e6dc;
}

.sales-page .page > section.final-cta .support-link {
  color: #ffffff;
}

.checkout-layout .cta-note,
.checkout-card .cta-note {
  color: var(--trust);
}

.faq {
  width: min(760px, 100%);
  margin: 1.8rem auto 0;
  text-align: left;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  background: #ffffff;
  color: var(--text-main);
}

.faq-item h3 {
  margin-bottom: 0.8rem;
}

.sales-page .page > section .faq-item h3,
.sales-page .page > section .faq-item p {
  color: var(--text-main);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.25rem, 2vw, 2rem);
  align-items: start;
}

.checkout-main-title {
  margin-bottom: 0.65rem;
}

.checkout-mockup {
  width: min(620px, 100%);
  display: block;
  margin: 0 0 0.9rem;
}

.product-box {
  background: var(--product-box);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

.checkout-price {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-top: 1rem;
}

.checkout-card {
  position: sticky;
  top: 1rem;
}

.checkout-card form {
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

#checkoutForm {
  display: grid;
  gap: 0.8rem;
}

#checkoutForm h2,
#checkoutForm p,
#checkoutForm label {
  margin: 0;
}

label {
  display: block;
  margin-top: 0.2rem;
  margin-bottom: 0.15rem;
  font-weight: 500;
}

input {
  width: 100%;
  padding: 0.74rem 0.8rem;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  font: inherit;
}

select {
  width: 100%;
  padding: 0.74rem 0.8rem;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  font: inherit;
  background: #ffffff;
}

input:focus,
select:focus {
  outline: 2px solid rgba(63, 175, 108, 0.25);
  border-color: var(--green-primary);
}

.trust-text {
  color: var(--trust);
  margin-top: 0.8rem;
  font-size: 0.9rem;
}

.checkout-emphasis {
  font-size: 12px !important;
  font-weight: 700 !important;
  font-style: italic;
}

.center {
  text-align: center;
}

.error-text {
  min-height: 1.25rem;
  color: #b42318;
  font-size: 0.92rem;
  margin-top: 0.2rem;
}

.status-card {
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.status-card .btn {
  margin-right: 0.5rem;
  margin-top: 0.5rem;
}

.hidden {
  display: none;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #131313;
  padding: 1rem 0 1.3rem;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  color: #c8d0db;
}

.site-footer-inner a {
  color: #f3f4f6;
  text-decoration: none;
}

.site-footer-inner a:hover {
  color: #0f7e00;
  text-decoration: underline;
}

.legal-page {
  background: #f8fbf9;
}

.legal-page .legal-content {
  max-width: 900px;
}

.legal-page h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.legal-page h2 {
  margin-top: 1rem;
}

.legal-page ul {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
}

.legal-page ul li {
  margin-bottom: 0.55rem;
  font-size: 18px;
  line-height: 1.55;
}

.footer-disclaimer {
  max-width: 1000px;
  gap: 0.7rem;
  position: relative;
  isolation: isolate;
  background: #131313;
  color: #d1d5db;
}

.footer-disclaimer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background: #131313 !important;
  z-index: -1;
}

.footer-disclaimer h2 {
  font-size: 14px !important;
  font-weight: 800;
  line-height: 1.45;
  margin-top: 0.5rem;
  color: #f3f4f6;
}

.footer-disclaimer p {
  font-size: 12px !important;
  line-height: 1.6;
  color: #d1d5db;
}

@media (max-width: 900px) {
  .two-col,
  .guide-grid,
  .checkout-layout,
  .value-offer {
    grid-template-columns: 1fr;
  }

  p {
    font-size: 18px !important;
    line-height: 1.55;
  }

  .check-list li,
  .dash-list li {
    font-size: 18px !important;
    line-height: 1.55;
  }

  .hero {
    min-height: auto;
    padding-block: 1.7rem;
  }

  .hero-main-title {
    font-size: 28px;
  }

  .hero-support-italic {
    font-size: 16px !important;
  }

  .hero-price {
    font-size: 16px !important;
  }

  .hero-benefits {
    width: min(980px, 100%);
    margin-top: 0.2rem;
    gap: 0.35rem 0.75rem;
  }

  .hero .hero-benefits li {
    text-align: left;
    font-size: 16px !important;
    line-height: 1.4;
  }

  .sales-page .btn,
  .section-cta-wrap .btn {
    font-family: "Montserrat", "Neue Montreal", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    padding: 15px 14px;
  }

  .hero-mockup {
    width: min(760px, 96vw);
    max-height: none;
  }

  .checkout-card {
    position: static;
  }

  .checkout-mockup {
    width: min(700px, 100%);
    margin-bottom: 0.75rem;
  }

  .section {
    padding-block: clamp(2.1rem, 6vw, 2.8rem);
  }

  .quick-start {
    padding-block: clamp(2.1rem, 6vw, 2.8rem);
  }

  .value-item {
    flex-direction: column;
    gap: 0.6rem;
  }

  .value-price {
    align-self: flex-start;
  }

  .offer-card {
    padding: 1rem;
  }

  .offer-total {
    font-size: 1.65rem !important;
  }

  .offer-now {
    font-size: 2.35rem !important;
  }

  .site-footer {
    padding: 0.9rem 0 1.1rem;
  }

  .site-footer-inner {
    font-size: 13px;
  }

  .footer-disclaimer p {
    font-size: 12px !important;
  }
}

@media (max-width: 760px) {
  .hero-benefits {
    display: grid;
    grid-template-columns: 1fr;
    width: min(560px, 100%);
    gap: 0.5rem;
  }

  .hero .hero-benefits li {
    text-align: left;
    justify-content: flex-start;
  }

  .sales-currency-field {
    width: 100%;
  }

  .sales-currency-toggle {
    width: 100%;
  }
}
