/* -------------------------------------------------------------------
  Microtip

  Modern, lightweight css-only tooltips
  Just 1kb minified and gzipped

  @author Ghosh
  @package Microtip

----------------------------------------------------------------------
  1. Base Styles
  2. Direction Modifiers
  3. Position Modifiers
--------------------------------------------------------------------*/
:root {
  --microtip-transition-duration: 0.6s;
  --microtip-transition-delay: 0s;
  --microtip-transition-easing: ease;
  --microtip-font-size: 14px;
  --microtip-font-weight: normal;
  --microtip-text-transform: none;
}

/* ------------------------------------------------
  [1] Base Styles
-------------------------------------------------*/
[aria-label][role~=tooltip] {
  position: relative;
}

[aria-label][role~=tooltip]::before,
[aria-label][role~=tooltip]::after {
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  transition: all var(--microtip-transition-duration, 0.18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);
  position: absolute;
  box-sizing: border-box;
  z-index: 10;
  transform-origin: top;
}

[aria-label][role~=tooltip]::before {
  background-size: 100% auto !important;
  content: "";
}

[aria-label][role~=tooltip]::after {
  background: #ffffff; /*rgba(20, 63, 139, 0.9);*/ /*rgba(17, 17, 17, .9);*/
  border-radius: 12px;
  color: #000000;
  content: attr(aria-label);
  font-size: var(--microtip-font-size, 13px);
  font-weight: var(--microtip-font-weight, normal);
  text-transform: var(--microtip-text-transform, none);
  padding: 0.5em 1em;
  white-space: nowrap;
  box-sizing: content-box;
}

[aria-label][role~=tooltip]:hover::before,
[aria-label][role~=tooltip]:hover::after,
[aria-label][role~=tooltip]:focus::before,
[aria-label][role~=tooltip]:focus::after {
  opacity: 1;
  pointer-events: auto;
}

/* ------------------------------------------------
  [2] Position Modifiers
-------------------------------------------------*/
[role~=tooltip][data-microtip-position|=top]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2820,%2063,%20139,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-bottom: 5px;
}

[role~=tooltip][data-microtip-position|=top]::after {
  margin-bottom: 11px;
}

[role~=tooltip][data-microtip-position|=top]::before {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

[role~=tooltip][data-microtip-position|=top]:hover::before {
  transform: translate3d(-50%, -5px, 0);
}

[role~=tooltip][data-microtip-position|=top]::after {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

[role~=tooltip][data-microtip-position=top]:hover::after {
  transform: translate3d(-50%, -5px, 0);
}

/* ------------------------------------------------
  [2.1] Top Left
-------------------------------------------------*/
[role~=tooltip][data-microtip-position=top-left]::after {
  transform: translate3d(calc(-100% + 16px), 0, 0);
  bottom: 100%;
}

[role~=tooltip][data-microtip-position=top-left]:hover::after {
  transform: translate3d(calc(-100% + 16px), -5px, 0);
}

/* ------------------------------------------------
  [2.2] Top Right
-------------------------------------------------*/
[role~=tooltip][data-microtip-position=top-right]::after {
  transform: translate3d(calc(0% - 16px), 0, 0);
  bottom: 100%;
}

[role~=tooltip][data-microtip-position=top-right]:hover::after {
  transform: translate3d(calc(0% - 16px), -5px, 0);
}

/* ------------------------------------------------
  [2.3] Bottom
-------------------------------------------------*/
[role~=tooltip][data-microtip-position|=bottom]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2820,%2063,%20139,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}

[role~=tooltip][data-microtip-position|=bottom]::after {
  margin-top: 11px;
}

[role~=tooltip][data-microtip-position|=bottom]::before {
  transform: translate3d(-50%, -10px, 0);
  bottom: auto;
  left: 50%;
  top: 100%;
}

[role~=tooltip][data-microtip-position|=bottom]:hover::before {
  transform: translate3d(-50%, 0, 0);
}

[role~=tooltip][data-microtip-position|=bottom]::after {
  transform: translate3d(-50%, -10px, 0);
  top: 100%;
  left: 50%;
}

[role~=tooltip][data-microtip-position=bottom]:hover::after {
  transform: translate3d(-50%, 0, 0);
}

/* ------------------------------------------------
  [2.4] Bottom Left
-------------------------------------------------*/
[role~=tooltip][data-microtip-position=bottom-left]::after {
  transform: translate3d(calc(-100% + 16px), -10px, 0);
  top: 100%;
}

[role~=tooltip][data-microtip-position=bottom-left]:hover::after {
  transform: translate3d(calc(-100% + 16px), 0, 0);
}

/* ------------------------------------------------
  [2.5] Bottom Right
-------------------------------------------------*/
[role~=tooltip][data-microtip-position=bottom-right]::after {
  transform: translate3d(calc(0% - 16px), -10px, 0);
  top: 100%;
}

[role~=tooltip][data-microtip-position=bottom-right]:hover::after {
  transform: translate3d(calc(0% - 16px), 0, 0);
}

/* ------------------------------------------------
  [2.6] Left
-------------------------------------------------*/
[role~=tooltip][data-microtip-position=left]::before,
[role~=tooltip][data-microtip-position=left]::after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  transform: translate3d(10px, -50%, 0);
}

[role~=tooltip][data-microtip-position=left]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2820,%2063,%20139,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-bottom: 0;
}

[role~=tooltip][data-microtip-position=left]::after {
  margin-right: 11px;
}

[role~=tooltip][data-microtip-position=left]:hover::before,
[role~=tooltip][data-microtip-position=left]:hover::after {
  transform: translate3d(0, -50%, 0);
}

/* ------------------------------------------------
  [2.7] Right
-------------------------------------------------*/
[role~=tooltip][data-microtip-position=right]::before,
[role~=tooltip][data-microtip-position=right]::after {
  bottom: auto;
  left: 100%;
  top: 50%;
  transform: translate3d(-10px, -50%, 0);
}

[role~=tooltip][data-microtip-position=right]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2820,%2063,%20139,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
}

[role~=tooltip][data-microtip-position=right]::after {
  margin-left: 11px;
}

[role~=tooltip][data-microtip-position=right]:hover::before,
[role~=tooltip][data-microtip-position=right]:hover::after {
  transform: translate3d(0, -50%, 0);
}

/* ------------------------------------------------
  [3] Size
-------------------------------------------------*/
[role~=tooltip][data-microtip-size=small]::after {
  white-space: initial;
  width: 80px;
}

[role~=tooltip][data-microtip-size=medium]::after {
  white-space: initial;
  width: 150px;
}

[role~=tooltip][data-microtip-size=large]::after {
  white-space: initial;
  width: 260px;
}

:root {
  --dosh-purple: #8f0bff;
  --dosh-black: #000;
  --dosh-white: #fff;
  --dosh-green: #4cf100;
  --dosh-gray-medium: #bababa;
  --dosh-gray-super-light: #f8f8f8;
  --dosh-gray-text: #787878;
  --dosh-footer-text-dim: #2b2b2b;
}

* {
  box-sizing: border-box;
}

body.dosh {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dosh-black);
  background: var(--dosh-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body.dosh a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

body.dosh p {
  margin: 0;
}

body.dosh ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dosh-display {
  font-family: "Chivo", "Inter", sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.dosh-section-wrap {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========== Promo banner ========== */
.dosh-promo-banner {
  background: var(--dosh-purple);
  color: var(--dosh-white);
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.dosh-promo-banner__track {
  display: inline-flex;
  gap: 80px;
  animation: dosh-marquee 40s linear infinite;
  padding-left: 80px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

@keyframes dosh-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ========== Site header ========== */
.dosh-header {
  background: var(--dosh-white);
  padding: 19px 40px;
  border-bottom: 1px solid transparent;
}

.dosh-header__inner {
  max-width: 1840px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dosh-header__logo img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.dosh-header__cta {
  display: flex;
  align-items: center;
  gap: 0;
}

/* ========== CTA button ========== */
.dosh-cta {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s;
}

.dosh-cta:hover {
  opacity: 0.85;
}

.dosh-cta__label {
  background: var(--dosh-black);
  color: var(--dosh-white);
  padding: 0 24px;
  border-radius: 18px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 171px;
}

.dosh-cta__icon {
  background: var(--dosh-black);
  width: 36px;
  height: 36px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dosh-cta__icon img {
  width: 16px !important;
  height: 16px !important;
}

.dosh-cta--green .dosh-cta__label {
  background: var(--dosh-green);
  color: var(--dosh-black);
}

.dosh-cta--green .dosh-cta__icon {
  background: var(--dosh-green);
}

/* ========== Hero ========== */
.dosh-hero {
  background: var(--dosh-white);
  padding: 40px 0 100px;
  overflow: hidden;
}

.dosh-hero__inner {
  max-width: 1460px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.dosh-hero__image {
  position: relative;
  width: 100%;
  max-width: 1460px;
  aspect-ratio: 1460/714;
  overflow: hidden;
  background: #eee;
}
.dosh-hero__image:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url("../img/dosh/hero-overlay.png") no-repeat left top;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 3;
}

.dosh-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dosh-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(139deg, rgba(143, 11, 255, 0.4) 19%, rgba(85, 74, 94, 0) 83%);
  pointer-events: none;
}

.dosh-hero__card {
  position: absolute;
  left: 9.5%;
  top: 0;
  width: 41%;
  padding: 16px 40px 40px 40px;
  background-color: #fff;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  background-size: 100% 100%;
  z-index: 5;
}

.dosh-hero__card-head {
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.dosh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
}

.dosh-eyebrow__mark {
  width: 14px;
  height: 14px;
  display: inline-block;
}

.dosh-eyebrow__mark img {
  width: 100%;
  height: 100%;
}

.dosh-hero__title {
  font-family: "Chivo", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 115%;
  color: var(--dosh-black);
  margin: 0;
  max-width: 540px;
}

.dosh-hero__checks {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
}

.dosh-hero__checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 125%;
}

.dosh-hero__checks img {
  width: 20px;
  height: 20px;
}

.dosh-hero__accent {
  position: absolute;
  left: 7%;
  bottom: 80px;
  width: 4px;
  height: 300px;
  max-height: 50vh;
  background: var(--dosh-green);
  pointer-events: none;
  z-index: 3;
}

.dosh-hero__accent-btn {
  position: absolute;
  left: calc(7% - 16px);
  bottom: 20px;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: var(--dosh-green);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transform: scaleY(-1);
}

.dosh-hero__accent-btn img {
  width: 16px;
  height: 16px;
}

/* ========== About ========== */
.dosh-about {
  background: var(--dosh-white);
  padding: 0 0 100px;
}

.dosh-about__inner {
  max-width: 1472px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.dosh-about__photo {
  width: 396px;
  flex-shrink: 0;
}

.dosh-about__photo img {
  width: 100%;
  height: 276px;
  object-fit: cover;
  border-radius: 12px;
}

.dosh-about__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.dosh-about__title {
  font-family: "Chivo", sans-serif;
  font-weight: 900;
  font-size: 46px;
  line-height: 50px;
  color: var(--dosh-black);
  margin: 0;
  max-width: 920px;
  position: relative;
}

.dosh-about__title::before {
  content: "";
  margin-right: 25px;
  display: inline-block;
  position: relative;
  top: -15px;
  width: 10%;
  height: 4px;
  background: var(--dosh-green);
}

/* ========== Products ========== */
.dosh-products {
  background: var(--dosh-white);
  padding: 0 0 100px;
}

.dosh-products__inner {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 40px;
}

.dosh-products__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.dosh-products__title-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.dosh-products__title {
  font-family: "Chivo", sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 60px;
  color: var(--dosh-black);
  margin: 0;
}

.dosh-products__subtitle {
  font-size: 16px;
  line-height: 24px;
  color: var(--dosh-black);
}

.dosh-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.dosh-product-card {
  position: relative;
  border-radius: 15px;
  padding: 40px 26px 60px;
  min-height: 552px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../img/dosh/product-corner-overlay.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 60px 60px;
  overflow: hidden;
}

.dosh-product-card--mint {
  background-color: #f1f5fa;
}

.dosh-product-card--spearmint {
  background-color: #f6ffef;
}

.dosh-product-card--citrus {
  background-color: #fafaea;
}

.logo-geco {
  position: relative;
  display: inline-block;
  max-width: 157px !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.dosh-product-card__image {
  padding: 10px 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dosh-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dosh-product-card__name {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  text-align: center;
  margin: 30px 0 10px;
  color: var(--dosh-black);
}

.dosh-product-card__avail-label {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 8px !important;
  color: var(--dosh-black);
  text-align: center;
}

.dosh-product-card__strengths {
  display: flex;
  gap: 3px;
  margin-bottom: 32px;
}

.dosh-product-card__strength {
  border: 1px solid var(--dosh-gray-medium);
  border-radius: 4px;
  padding: 2px 6px;
  min-width: 43px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 22px;
  color: var(--dosh-black);
}

.dosh-product-card .dosh-cta {
  margin-top: auto;
}

/* ========== How to use ========== */
.dosh-howto {
  background: var(--dosh-white);
  padding: 100px 0 100px;
}

.dosh-howto__head {
  text-align: center;
  margin-bottom: 64px;
}

.dosh-howto__eyebrow {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 18px;
}

.dosh-howto__title {
  font-family: "Chivo", sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 60px;
  color: var(--dosh-black);
  margin: 0 0 18px;
}

.dosh-howto__subtitle {
  font-size: 16px;
  line-height: 24px;
  color: var(--dosh-black);
}

.dosh-howto__grid {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.dosh-howto__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.dosh-howto__step-img {
  width: 100%;
  max-width: 469px;
  aspect-ratio: 469/424;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dosh-howto__step-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dosh-howto__step-title {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: var(--dosh-black);
}

.dosh-howto__step-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--dosh-black);
  max-width: 393px;
}

/* ========== FAQ ========== */
.dosh-faq {
  background: var(--dosh-white);
  padding: 100px 0;
}

.dosh-faq__inner {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 186px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.dosh-faq__head {
  flex: 0 1 520px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dosh-faq__title {
  font-family: "Chivo", sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 60px;
  color: var(--dosh-black);
  margin: 0;
}

.dosh-faq__subtitle {
  font-size: 16px;
  line-height: 24px;
  color: var(--dosh-black);
}

.dosh-faq__list {
  flex: 1 1 600px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 756px;
}

.dosh-faq-item {
  background: var(--dosh-gray-super-light);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.dosh-faq-item__head {
  border: none;
  padding: 0;
  background: none;
  outline: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 36px;
}

.dosh-faq-item__q {
  flex: 1;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: var(--dosh-black);
}

.dosh-faq-item__toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: var(--dosh-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
  transition: transform 0.2s;
}

.dosh-faq-item__toggle img {
  width: 16px;
  height: 16px;
}

.dosh-faq-item.is-open .dosh-faq-item__toggle {
  transform: rotate(0deg);
}

.dosh-faq-item__a {
  padding: 16px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--dosh-black);
  max-width: 640px;
}

/* ========== Footer ========== */
.dosh-footer {
  background: var(--dosh-black);
  color: var(--dosh-white);
  position: relative;
  overflow: hidden;
  padding: 100px 0 50px;
}

.dosh-footer__curve {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50px;
  display: flex;
  align-items: center;
}

.dosh-footer__curve-left,
.dosh-footer__curve-right {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: #fff url("../img/dosh/footer-corner-left-top.png") no-repeat left top;
  background-size: 50px 50px;
}

.dosh-footer__curve-right {
  background-image: url("../img/dosh/footer-corner-right-top.png");
}

.dosh-footer__curve-fill {
  flex: 1;
  height: 50px;
  background: var(--dosh-black);
}

.dosh-footer__inner {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.dosh-footer__columns {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;
}

.dosh-footer__contact {
  flex: 0 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dosh-footer__contact-title {
  font-family: "Chivo", sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 40px;
  color: var(--dosh-white);
  margin: 0;
}

.dosh-footer__contact-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--dosh-white);
  max-width: 280px;
}

.dosh-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}

.dosh-footer__nav-head {
  color: var(--dosh-gray-text);
  font-size: 16px;
  line-height: 24px;
}

.dosh-footer__nav a {
  color: var(--dosh-white);
  font-size: 16px;
  line-height: 24px;
}

.dosh-footer__nav a:hover {
  color: var(--dosh-green);
}

.dosh-footer__social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dosh-footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 18px;
  background: var(--dosh-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.dosh-footer__social a:hover {
  transform: scale(1.1);
}

.dosh-footer__social img {
  width: 18px;
  height: 18px;
}

.dosh-footer__bigtext {
  text-align: center;
  font-family: "Chivo", sans-serif;
  font-weight: 900;
  font-size: 151px;
  line-height: 152px;
  color: var(--dosh-footer-text-dim);
  margin: 80px 0 0;
  letter-spacing: -0.02em;
  user-select: none;
}

.dosh-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 60px;
  flex-wrap: wrap;
}

.dosh-footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 52px;
}

.dosh-footer__logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.dosh-footer__copy {
  font-size: 14px;
  line-height: 22px;
  color: var(--dosh-gray-text);
}

.dosh-footer__bottom a {
  font-size: 14px;
  line-height: 22px;
  color: var(--dosh-gray-text) !important;
}

.dosh-footer__bottom a:hover {
  color: var(--dosh-white) !important;
}

/* ========== Responsive ========== */
@media (max-width: 1280px) {
  .dosh-hero__card { /*left: 60px; width: 540px; padding: 24px 32px 32px;*/ }
  .dosh-hero__title {
    font-size: 44px;
    line-height: 52px;
  }
  .dosh-products__grid {
    gap: 24px;
  }
  .dosh-faq__inner {
    gap: 80px;
  }
  .dosh-footer__bigtext {
    font-size: 120px;
    line-height: 120px;
  }
}
@media (max-width: 960px) {
  .dosh-header {
    padding: 16px 20px;
  }
  .dosh-header__logo img {
    width: 52px;
    height: 52px;
  }
  .dosh-hero {
    padding: 24px 0 60px;
  }
  .dosh-hero__inner {
    padding: 0 20px;
  }
  .dosh-hero__image {
    aspect-ratio: unset;
  }
  .dosh-hero__image {
    background-color: #fff;
  }
  .dosh-hero__image:before {
    display: none;
  }
  .dosh-hero__image:after {
    display: none;
  }
  .dosh-hero__card {
    position: static;
    width: 100%;
    max-width: 100%;
    padding: 24px;
  }
  .dosh-hero__title {
    font-size: 36px;
    line-height: 44px;
  }
  .dosh-hero__accent,
  .dosh-hero__accent-btn {
    display: none;
  }
  .dosh-about__inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 24px;
  }
  .dosh-about__photo {
    width: 100%;
  }
  .dosh-about__title {
    font-size: 30px;
    line-height: 36px; /*padding-left: 50px;*/
  }
  .dosh-products__inner {
    padding: 0 20px;
  }
  .dosh-products__title {
    font-size: 40px;
    line-height: 46px;
  }
  .dosh-products__grid {
    grid-template-columns: 1fr;
  }
  .dosh-howto {
    padding: 60px 0;
  }
  .dosh-howto__title {
    font-size: 40px;
    line-height: 46px;
  }
  .dosh-howto__grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .dosh-faq {
    padding: 60px 0;
  }
  .dosh-faq__inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
  .dosh-faq__head {
    flex: 1;
  }
  .dosh-faq__title {
    font-size: 40px;
    line-height: 46px;
  }
  .dosh-footer {
    padding: 60px 0;
  }
  .dosh-footer__inner {
    padding: 0 20px;
  }
  .dosh-footer__columns {
    gap: 40px;
  }
  .dosh-footer__social {
    margin-left: 0;
    flex-direction: row;
  }
  .dosh-footer__bigtext {
    font-size: 56px;
    line-height: 60px;
    margin: 30px 0 30px !important;
  }
  .dosh-footer__bottom {
    padding-top: 40px;
    text-align: center;
    justify-content: center;
  }
  .dosh-about-intro {
    padding: 60px 0 60px;
  }
  .dosh-about-intro__inner {
    padding: 0 20px;
  }
  .dosh-about-intro__title {
    font-size: 28px;
    line-height: 34px;
    padding-left: 50px;
  }
  .dosh-stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .dosh-stat__value {
    font-size: 56px;
    line-height: 62px;
  }
  .dosh-compare {
    padding: 60px 0;
  }
  .dosh-compare__inner {
    padding: 0 20px;
  }
  .dosh-compare__title {
    font-size: 36px;
    line-height: 42px;
  }
  .dosh-compare__row {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .dosh-compare__cell {
    font-size: 14px;
    padding: 14px 12px;
  }
}
/* ========== About intro (green) ========== */
.dosh-about-intro {
  background: var(--dosh-white);
  position: relative;
  padding: 0 0 100px;
}

.dosh-about-intro__curve {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  background: var(--dosh-white);
  transform: scaleY(-1);
}

.dosh-about-intro__curve-left,
.dosh-about-intro__curve-right {
  width: 48.95px;
  height: 50px;
  flex-shrink: 0;
  display: block;
}

.dosh-about-intro__curve-right {
  transform: scaleX(-1);
}

.dosh-about-intro__curve-fill {
  flex: 1;
  height: 50px;
  background: #eff7f2;
}

.dosh-about-intro__inner {
  background: #eff7f2;
  padding: 90px 40px 90px;
  margin: 0;
}

.dosh-about-intro__inner > * {
  max-width: 946px;
  margin-left: auto;
  margin-right: auto;
}

.dosh-about-intro__title {
  font-family: "Chivo", sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 40px;
  color: var(--dosh-black);
  margin: 0 auto 46px;
  position: relative;
}

.dosh-about-intro__title::before {
  content: "";
  margin-right: 25px;
  display: inline-block;
  position: relative;
  top: -15px;
  width: 10%;
  height: 4px;
  background: var(--dosh-green);
}

.dosh-checks-list {
  margin: 35px auto 50px !important;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dosh-checks-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  line-height: 26px;
  color: var(--dosh-black);
}

.dosh-checks-list li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.dosh-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px 40px;
  margin: 0 auto;
}

.dosh-stat {
  display: flex;
  align-items: center;
  gap: 18px;
}

.dosh-stat__value {
  font-family: "Chivo", sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 82px;
  color: var(--dosh-black);
  margin: 0;
  min-width: 160px;
  flex-basis: 50%;
  text-align: right;
}

.dosh-stat__divider {
  width: 4px;
  height: 86px;
  background: var(--dosh-green);
  flex-shrink: 1;
}

.dosh-stat__label {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: var(--dosh-black);
  flex-basis: 50%;
}

/* ========== Compare table ========== */
.dosh-compare {
  background: var(--dosh-white);
  padding: 0 0 100px 0;
}

.dosh-compare__inner {
  max-width: 1008px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
}

.dosh-compare__head {
  width: 100%;
  max-width: 948px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dosh-compare__title {
  font-family: "Chivo", sans-serif;
  font-weight: 900;
  font-size: 42px;
  line-height: 46px;
  color: var(--dosh-black);
  margin: 0;
}

.dosh-compare__subtitle {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: var(--dosh-black);
}

.dosh-compare__head .dosh-checks-list {
  margin: 0;
}

.dosh-compare__table {
  width: 100%;
  max-width: 948px;
  display: flex;
  flex-direction: column;
}

.dosh-compare__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  align-items: center;
  background: var(--dosh-gray-super-light);
}

.dosh-compare__row:nth-child(even) {
  background: #eee;
}

.dosh-compare__row:first-child {
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.dosh-compare__row:last-child {
  border-radius: 0 0 15px 15px;
  overflow: hidden;
}

.dosh-compare__row--head {
  background: var(--dosh-black);
  color: var(--dosh-white);
  border-radius: 15px 15px 0 0;
}

.dosh-compare__cell {
  padding: 20px 30px;
  font-size: 16px;
  line-height: 24px;
  color: var(--dosh-black);
  min-height: 76px;
  display: flex;
  align-items: center;
}

.dosh-compare__cell--feature {
  justify-content: flex-start;
}

.dosh-compare__cell--dosh,
.dosh-compare__cell--other {
  justify-content: center;
  text-align: center;
}

.dosh-compare__row--head .dosh-compare__cell {
  font-size: 20px;
  font-weight: 600;
  color: var(--dosh-white);
}

.dosh-compare__mark {
  width: 20px;
  height: 20px;
}

.dosh-compare__cta {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ========== Legal / text pages ========== */
.dosh-legal {
  background: var(--dosh-white);
  padding: 80px 0 120px;
}

.dosh-legal__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
  color: var(--dosh-black);
}

.dosh-legal__title {
  font-family: "Chivo", sans-serif;
  font-weight: 900;
  font-size: 52px;
  line-height: 60px;
  margin: 0 0 12px;
}

.dosh-legal__meta {
  font-size: 14px;
  color: var(--dosh-gray-text);
  margin-bottom: 28px;
}

.dosh-legal__lead {
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 18px;
}

.dosh-legal__heading {
  font-family: "Chivo", sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 16px;
  padding-left: 18px;
  border-left: 4px solid var(--dosh-green);
}

.dosh-legal__inner p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 16px;
}

.dosh-legal__inner a {
  text-decoration: underline;
}

.dosh-legal__list {
  margin: 0 0 18px;
  padding-left: 22px;
  list-style: disc;
}

.dosh-legal__list li {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 6px;
}

.dosh-legal__sep {
  border: 0;
  border-top: 1px solid var(--dosh-gray-super-light);
  margin: 36px 0;
}

@media (max-width: 720px) {
  .dosh-legal {
    padding: 48px 0 80px;
  }
  .dosh-legal__inner {
    padding: 0 20px;
  }
  .dosh-legal__title {
    font-size: 36px;
    line-height: 42px;
  }
  .dosh-legal__heading {
    font-size: 20px;
    line-height: 28px;
  }
}

/*# sourceMappingURL=dosh.css.map */
