* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --body-color: #fff;
  --primary-bg: #f5f7f9;
  --primary-text: #525760;
  --secondary-bg: #f5f5f5;
  --secondary-text: #9b9b9b;
  --font-family: "Inter", sans-serif;
  --rounded-full: 9999px;
  --transition: all ease 0.5s;
  --error-color: #cc2b52;
  --sticky-cta-height: 0px;
}
.theme-default {
  --theme-color: #399949;
  --border-radius: 5px;
}
.theme-ios {
  --theme-color: #007aff;
  --border-radius: var(--rounded-full);
}
body {
  background-color: var(--body-color);
  font-family: var(--font-family);
  color: var(--primary-text);
}
/* base styles */
.container {
  max-width: 1140px;
  padding: 0 1rem;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
img {
  max-width: 100%;
}
.hidden {
  display: none;
}
.error {
  color: var(--error-color);
  padding-top: 8px;
  font-size: 16px;
}
.text-secondary {
  color: var(--secondary-text) !important;
}
.font-normal {
  font-weight: 400 !important;
}
/* btn */
.btn {
  width: 100%;
  color: var(--body-color);
  background-color: var(--theme-color);
  border-radius: var(--border-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 24px;
  border: none;
  cursor: pointer;
  font-size: 28px;
  font-weight: 500;
  line-height: 42px;
  text-decoration: none;
  transition: var(--transition);
}
.btn:hover {
  opacity: 0.8;
}
/* sticky cta */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px;
  background-color: var(--body-color);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  text-align: center;
}
.sticky-cta.visible {
  transform: translateY(0);
  box-shadow: 0px -2px 10px 0px #00000033;
}
.sticky-cta .btn,
.sticky-cta p {
  max-width: 70%;
  margin: 0 auto;
}
.sticky-cta .btn {
  padding: 9px 14px;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
}
.sticky-cta p {
  margin-top: 10px;
  font-size: 11px;
  line-height: 15px;
}
.sticky-cta p .disclaimer {
  display: none;
}
/* section */
.section {
  background-color: var(--primary-bg);
  padding: 40px 16px;
  border-radius: 4px;
  text-align: center;
}
.section > * {
  margin-bottom: 26px;
}
.section > *:last-child {
  margin-bottom: 0;
}

/* title */
.title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  text-align: center;
}

/* app install */
.app-install {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.app-install p {
  font-size: 16px;
  line-height: 18px;
}
.gr-ball {
  height: 12px;
  width: 12px;
  border-radius: var(--rounded-full);
  background-color: var(--theme-color);
}
/* header */
.header {
  padding: 16px 0px;
  background-color: transparent;
  max-width: none;
}
.logo {
  height: 32px;
}
.logo img {
  max-height: 32px;
}

/* hero-section */
.hero-section {
  padding: 70px 0 40px;
  text-align: center;
}
.hero-section .title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  font-weight: 300;
  font-size: 35.2px;
  line-height: 49.28px;
}
.hero-section .title .mobile {
  display: none;
}
.hero-section .title .icon {
  flex-shrink: 0;
}
.hero-section .disclaimer-box {
  max-width: 646px;
  margin: 32px auto 22px;
  padding: 11px 30px;
  background-color: var(--secondary-bg);
  border-radius: 8px;
  font-size: 11px;
  line-height: 15px;
}
.download-section .btn,
.feature-section .btn,
.hero-section .btn {
  max-width: 480px;
}
.store-content-wrapper {
  max-width: 330px;
  margin: 0 auto 24px;
  background-color: var(--body-color);
  padding: 34px 20px;
  border-radius: 14px;
}
.store-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.store-img-wrapper {
  height: 80px;
  width: 80px;
  border-radius: 6px;
  box-shadow: 0px 8px 16px 0px #07183026;
}
.store-img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.store-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
}

/* icons section */
.icons-section {
  padding: 40px 0;
  text-align: center;
}
.icons-section .icons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
.icons-section .single-icon {
  height: 50px;
}
.icons-section .single-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* form store content */
.form-store-content-wrapper {
  max-width: 408px;
  margin: 0 auto 34px;
  background-color: var(--body-color);
  padding: 20px;
  border-radius: 14px;
}
.form-store-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.form-store-top p {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}
.form-store-top svg {
  color: var(--theme-color);
  flex-shrink: 0;
}
.form-store-content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.form-store-img-wrapper {
  flex-shrink: 0;
  height: 72px;
  width: 72px;
  border-radius: 6px;
  box-shadow: 0px 8px 16px 0px #07183026;
}
.form-store-img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.form-store-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 24.2px;
  text-align: left;
}

/* steps section */
.steps-section {
  padding: 46px 0;
}
.steps-wrapper {
  max-width: 200px;
  margin: 0 auto;
  padding-top: 10px;
}
.steps-wrapper > * {
  margin-bottom: 22px;
}
.steps-wrapper > *:last-child {
  margin-bottom: 0px;
}
.single-step {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single-step .step-icon {
  position: relative;
  color: var(--theme-color);
  border: 3px solid var(--theme-color);
  height: 40px;
  width: 40px;
  border-radius: var(--rounded-full);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
}
.single-step .step-icon::after {
  content: "";
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  height: 14px;
  width: 2px;
  border-radius: var(--rounded-full);
  background-color: #717f8c66;
}
.single-step:last-child .step-icon::after {
  display: none;
}
.single-step .step-text {
  text-align: start;
  margin-bottom: 0;
}
.single-step .step-text p {
  font-size: 10px;
  line-height: 15px;
  text-align: start;
}
.single-step .step-text h5 {
  font-size: 15px;
  font-weight: 600;
  line-height: 22.5px;
  text-align: start;
  margin-bottom: 0;
}

/* middle section */
.middle-section {
  margin-bottom: 16px;
  padding-left: 24px;
  padding-right: 24px;
}
.middle-section .img-wrapper {
  max-width: 345px;
  margin: 0 auto;
}

/* privacy section */
.privacy-section {
  padding: 30px 0;
}
.privacy-section p {
  max-width: 876px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
}

/* price section */
.price-section {
  max-width: 933px;
  margin: 16px auto;
  padding: 20px 16px;
  border: 1px solid var(--secondary-text);
  border-radius: 5px;
}
.price-section p {
  color: var(--secondary-text);
  max-width: 876px;
  margin: 0 auto;
  font-size: 10px;
  line-height: 13px;
  text-align: center;
}
/* feature section */
.feature-section {
  padding: 48px 16px;
}
.feature-section .title {
  padding: 0 16px;
}
.feature-section .feature-wrapper {
  max-width: 953px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.single-feature {
  min-height: 246px;
  color: var(--secondary-text);
}
.single-feature .icon {
  height: 100px;
  width: 100px;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-feature .icon img {
  max-width: 100px;
}
.single-feature .title {
  color: var(--secondary-text);
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.single-feature .description {
  font-size: 12px;
}
/* step one section */
.step-one-section {
  padding: 60px 16px;
  margin-bottom: 35px;
}
.step-one-section .title {
  font-size: 40px;
  line-height: 33px;
}
.step-one-section .wrapper {
  padding-top: 42px;
  max-width: 408px;
  margin: 0 auto;
}
.step-one-section .wrapper > * {
  margin-bottom: 20px;
}
.step-one-section .wrapper > *:last-child {
  margin-bottom: 0;
}
.step-one-section .wrapper .steps-wrapper {
  max-width: 317px;
}
.form > * {
  margin-bottom: 18px;
}
.form > *:last-child {
  margin-bottom: 0;
}
.form-input-wrapper {
  position: relative;
}
.form-input-wrapper svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 18px;
  color: var(--secondary-text);
}
.form-info {
  font-size: 12px;
  line-height: 18px;
}
/* form input */
.form-input {
  color: var(--secondary-text);
  width: 100%;
  border-radius: var(--border-radius);
  border: 1px solid var(--theme-color);
  background-color: var(--body-color);
  padding: 18px 20px 18px 55px;
  font-size: 20px;
  line-height: 24px;
  transition: var(--transition);
}
.form-input::placeholder {
  line-height: 24px;
  font-size: 20px;
  color: var(--secondary-text);
}
.form-input:focus {
  border: 1px solid var(--theme-color);
  outline: var(--theme-color) solid 1px;
  box-shadow: 0 1px 5px var(--theme-color);
}
/* footer */
footer {
  padding: 32px 0 calc(25px + var(--sticky-cta-height));
  transition: padding 0.3s ease;
}
.footer-wrapper {
  max-width: 666px;
  margin: 0 auto;
}
.footer-wrapper p {
  color: var(--secondary-text);
  font-size: 10px;
  line-height: 11px;
  text-align: center;
}
.footer-wrapper .disclaimer-text {
  background-color: #f8fbff;
  padding: 10px 20px;
  border-radius: 7px;
  margin: 0 1rem;
}
.footer-bottom {
  max-width: 200px;
  margin: 0 auto;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  color: var(--secondary-text);
}
.privacy-policy {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
}
.privacy-policy a {
  display: inline-block;
  color: var(--primary-text) !important;
  text-decoration: underline;
  font-size: 12px;
  line-height: 24px;
  transition: 0.3s ease-in-out;
  margin-right: 8px;
}
.privacy-policy a:last-child {
  margin-right: 0px;
}
.privacy-policy a:hover {
  opacity: 0.8;
}

/* imprint section */
.imprint-section .wrapper {
  max-width: 234px;
  margin: 0 auto;
  text-align: left;
}
.imprint-section .title {
  text-align: left;
  margin-bottom: 6px;
}
.imprint-section p {
  font-size: 15px;
  font-weight: 500;
  line-height: 22.5px;
}
.imprint-section .btn-wrapper {
  position: relative;
  margin-top: 27px;
}
.imprint-section svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.imprint-section .btn {
  width: fit-content;
  min-width: 182px;
  padding: 12px 42px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

/* terms and privacy css */
.sub-page .sub-page-container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-size: 14px;
}
.page-content-wrapper {
  padding-left: 0;
}
.sub-page h1 {
  color: var(--primary-text) !important;
  font-size: 24px;
  margin-bottom: 1rem;
}
.sub-page h2 {
  color: var(--secondary-text);
  font-size: 18px;
  margin-bottom: 1rem;
}
.sub-page p {
  color: var(--secondary-text);
  margin-bottom: 12px;
}
.sub-page ul {
  padding-left: 1rem;
  color: var(--secondary-text);
  margin-bottom: 12px;
}
.sub-page li {
  color: var(--secondary-text);
  margin-bottom: 12px;
}
.sub-page li ul {
  margin-top: 12px;
}
.sub-page a {
  color: #0537da;
  text-decoration: underline;
  transition: 0.3s ease-in-out;
}
.sub-page a:hover {
  opacity: 0.8;
}

/* contact us page */
.contact-card {
  display: flex;
  gap: 24px;
}
.contact-card .contact-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card .contact-icon img {
  max-width: 32px;
}
.contact-card .contact-content p {
  margin-bottom: 4px;
}
.contact-card .contact-content a {
  color: var(--secondary-text) !important;
}
.font-normal {
  font-weight: normal !important;
}

/* media queries */
@media screen and (max-width: 540px) {
  .header {
    padding: 20px 0px;
    background-color: var(--secondary-bg);
  }
  body.step-one-active .header {
    background-color: transparent;
  }
  .logo {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
  /* hero section */
  .hero-section {
    padding: 150px 0 40px;
  }
  .hero-section .title {
    gap: 5px;
    font-size: 25.6px;
    line-height: 35.84px;
  }
  .hero-section .title .desktop {
    display: none;
  }
  .hero-section .title .mobile {
    display: block;
  }
  .hero-section .btn {
    margin-bottom: 32px;
  }
  .hero-section .disclaimer-box {
    display: none;
  }
  .store-name {
    font-size: 16px;
    line-height: 20px;
  }

  /* icons section */
  .icons-section {
    display: none;
  }

  /* form store content */
  .form-store-content-wrapper {
    padding: 14px;
  }
  .form-store-top {
    margin-bottom: 16px;
  }
  .form-store-img-wrapper {
    height: 60px;
    width: 60px;
  }
  .form-store-name {
    font-size: 15px;
    line-height: 18px;
  }
  .feature-section .feature-wrapper {
    padding-top: 10px !important;
    max-width: 220px !important;
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
@media screen and (max-width: 768px) {
  .sticky-cta .btn,
  .sticky-cta p {
    max-width: 100%;
  }
  .step-one-section {
    padding: 40px 16px;
  }
  .step-one-section .wrapper {
    padding-top: 6px;
  }
  .step-one-section .title {
    font-size: 32px;
    line-height: 38px;
  }
  .imprint-section .btn {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .feature-section .feature-wrapper {
    padding-top: 20px;
    max-width: 553px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 640px) {
  .sub-page .sub-page-container {
    font-size: 16px !important;
  }
  .page-content-wrapper {
    padding-left: 3rem !important;
  }
  .sub-page h1 {
    font-size: 32px !important;
  }
  .sub-page h2 {
    font-size: 24px !important;
  }
}
/* animation */
.animate-in {
  animation: fadeIn 0.3s forwards;
}

.animate-out {
  animation: fadeOut 0.3s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
