:root {
  /* Colors */
  --color-primary: #4e2473;
  --color-secondary: #784380;
  --color-accent: #a363b1;
  --color-text: #24123b;
  --color-light-gray: #d8d4e3;
  --color-gray: #8b7c8d;
  --color-white: #f5f5fc;
  --color-white-true: #fff;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 6rem;

  /* Typography */
  --font-base: "Roboto", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: "Montserrat", sans-serif;
  --font-alt: "Roboto Condensed", sans-serif;

  /* Font Size */
  --font-size-xs: 14px;
  --font-size-sm: 16px;
  --font-size-md: 18px;
  --font-size-lg: 24px;
  --font-size-xl: 28px;
  --font-size-xxl: 32px;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: 0.15s ease;
  --transition-slow: 0.5s ease;

  /* Gradients */
  --gradient-primary: linear-gradient(
    to left,
    var(--color-secondary),
    var(--color-primary)
  );

  /* Shadows */
  --shadow-sm: 2px 2px 8px rgba(78, 36, 115, 0.2);
  --shadow-md: 0px 5px 15px rgba(78, 36, 115, 0.35);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.pb-sm{
  padding-bottom: var(--space-sm);
}

.pt-sm{
  padding-top: var(--space-sm);
}

.pt-lg{
  padding-top: var(--space-lg);
}

.pb-lg{
  padding-bottom: var(--space-lg);
}

.mb-sm{
  margin-bottom: var(--space-sm);
}

.mb-lg{
  margin-bottom: var(--space-lg);
}


.glass{
  opacity: 0.8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*border: 1px solid green;*/
}

/*{
  border: 1px solid red;
}*/

html{
  overflow-x: hidden;
}

body {
  font-family: "Roboto", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--color-white);
  letter-spacing: 0.28pt;
  overflow-x: hidden;
}

h1,
h3 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-transform: capitalize;
  font-weight: 700;
}

h2 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}




.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: bold;
}

p.lead {
  color: var(--color-secondary);
  padding-bottom: var(--space-xs);
}

.title {
  font-size: var(--font-size-lg);
  line-height: var(--font-size-xxl);
  text-transform: capitalize;
}

.subtitle {
  text-transform: uppercase;
  color: var(--color-gray);
  /*text-align: center;*/
  font-size: var(--font-size-xs);
}



.headline {
  font-size: calc(40px + (12 * ((50vw - 320px) / (810))));
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.description {
  font-size: var(--font-size-md);
  line-height: var(--font-size-xl);
  color: var(--text-color);
  font-weight: 300;
}

.description-small {
  font-size: var(--font-size-sm);
  line-height: var(--font-size-lg);
  color: var(--grey);
  font-weight: 300;
}

.description-extra-small {
  font-size: var(--font-size-xs);
  line-height: 20px;
  color: var(--grey);
  font-weight: 300;
}

.section-headline-wrap {
  /*padding-top: var(--space-md);*/
  padding-bottom: var(--space-xs);
  /*margin-top: var(--space-xl);*/
}

.section-headline-wrap.centered {
  margin: 0 auto;
  text-align: center;
  max-width: 800px;
}

.section-headline-wrap.left {
  text-align: left;
  max-width: 800px;
}

.section-headline-wrap.right {
  text-align: right;
  max-width: 800px;
}

.section-headline-wrap.right,
.section-headline-wrap.left {
  display: flex;
  align-content: center;
  justify-content: space-between;
  max-width: 100%;
}

@media (max-width: 480px) {
  .section-headline-wrap.left {
    flex-direction: column;
  }
  .section-headline-wrap.left h3 {
    margin-bottom: 32px;
    text-align: center;
  }
}

.section-headline {
  padding-top: 16px;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  font-size: var(--font-size-xl);
}

.wide-section {
  background: var(--gradient-primary);
  padding: var(--space-md) 0;
  width: 100%;
}

.wide-section.white {
  background: none;
}

/* Buttons */

button {
  /* Basic styling */
  display: inline-block;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  max-height: 64px;
}

.btn-filled {
  /* Filled style */
  background-color: var(--color-secondary);
  color: var(--color-white);
  border: none;
}

/* Hover state */
.btn-filled:hover {
  background-color: var(--color-primary);
}

/* Active/focus state */
.btn-filled:active,
.btn-filled:focus {
  border-color: var(--color-primary);
  outline: none;
}

.btn-outlined {
  /* Outlined style */
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--color-secondary);
}

/* Hover state */
.btn-outlined:hover {
  background-color: rgba(173, 66, 244, 0.1); /* Slight tint */
  color: var(--color-primary); /* Darker shade */
  border-color: var(--color-primary);
}

/* Active/focus state */
.btn-outlined:active,
.btn-outlined:focus {
  background-color: rgba(66, 133, 244, 0.2);
}

.button-group {
  display: flex;
  gap: 16px;
  margin: var(--space-md) 0;
}

/* Common */

.container {
  max-width: 1376px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-sm);
}

@media (max-width: 480px) {
  .container {
    min-width: 320px;
    padding: 24px var(--space-sm);
  }
}

.hero-container {
  display: grid;
  grid-template-rows: 1fr auto auto 10em;
  max-width: 810px;
  margin-top: var(--space-xl);
}

.hero-container.grid-centered {
  justify-items: center;
  align-items: center;
  text-align: center;
}

.hero-container.grid-left {
  justify-items: left;
  align-items: center;
  text-align: left;
}

.hero-container.short {
  grid-template-rows: 1fr auto auto;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.section-split {
  display: grid;
  grid-template-columns: auto minmax(340px, 600px);
  /* margin: 0 auto; */
  justify-content: center;
  align-items: center;
  gap: 64px;
}

@media (max-width: 976px) {
  .hero-split {
    display: grid;
    grid-template-columns: unset;
  }

  .hero-container.grid-left {
    justify-items: center;
    text-align: center;
  }

  .section-split {
    display: grid;
    grid-template-columns: unset;
    justify-items: center;
  }
}

.hero-split img {
  max-width: 460px;
  min-width: 250px;
  width: 100%;
  align-self: center;
  justify-self: center;
}

/* Parts */

.hidden {
  display: none;
}

.img-centered {
  margin: 0px auto;
  display: flex;
}

.text-centered {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.card-grid--rows-2 {
  display: grid;
  justify-items: center;
  align-items: center;
  grid-template-rows: auto 1fr;
}

/* Layouts */

.grid-col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

/******/

/* Particles Animation */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(100, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(1px);
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-500px) translateX(200px);
    opacity: 0;
  }
}

/* Wave Animation */
.waves {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
}

.wave {
  fill: rgba(70, 130, 255, 0.2);
  animation: wave 12s linear infinite;
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.checkmark-icon {
  width: 64px;
  height: 64px;
  fill: currentColor;
}

/* TERMS */

.terms-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-sm);
  margin-bottom: var(--space-xl);
}

.terms-section {
  margin-bottom: 30px;
}

.highlight {
  margin: 20px 0;
  background: var(--color-white-true);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--color-light-gray);
}

.terms-paragraph {
  font-size: var(--font-size-md);
  line-height: 28px;
  color: var(--text-color);
  font-weight: 300;
  font-size: 16px;
  padding-left: 14px;
}

.terms-headline {
  color: var(--color-primary);
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 24px;
}

.terms-title {
  color: var(--color-secondary);
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 18px;
  padding-left: 14px;
}

.terms-subtitle {
  color: var(--color-secondary);
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 18px;
  padding-left: 14px;
}


.terms-list{
  font-weight: 300;
  line-height: 150%;
  list-style-position: outside;
  margin-left: 5%;
  margin-top: var(--space-sm);
}

.terms-list li{
  margin-bottom: 8px;
  padding-left: 0.5em;
  list-style-type: disc;
}



/* PoS */

.pos-wrapper {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  width: 100%;

  margin: 0 auto;
}

.hero-img {
  position: sticky;
  position: -webkit-sticky;
  right: 0;
  opacity: 1;
  top: 200px;
  max-width: 35%;
  margin-top: 6.5rem;
  margin-bottom: 64px;
  transition: top 0.5s ease-out;
  min-width: 295px;
  height: 100%;
}

.hero-list {
  margin-top: 24px;
  margin-bottom: 40px;
  text-align: left;
}

ul.hero-list {
  list-style: none;
  padding-left: 8px;
  font-weight: 400;
  margin-top: 34px;
  line-height: 24px;
}

ul.hero-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 4px;
}

ul.hero-list li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.15em;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-image: url(../img/icons/ic-bullet-check.svg);
}

@media (max-width: 1140px) {
  ul.hero-list li::before {
    left: 0;
    top: 0.2em;
  }
}

/*
.hero-list.cardish li{
background: var(--color-white-true);
  border-radius: 12px;
  padding: 1.5rem;
  align-content: center;
}*/

video {
  width: 80%;
  background-color: var(--black);
  padding: 1px;
  border-radius: 8px;
  opacity: 1;
}

.hero-video-mobile {
  visibility: hidden;
  height: 0;
}

@media (max-width: 768) {
  .hero-video-mobile {
    visibility: visible;
    height: 100%;
  }

  .hero-img {
    height: 0;
    margin-bottom: 4px;
    visibility: collapse;
  }
}

.steps-text {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 14px;
}

.steps-wrapper {
  position: relative;
  width: 100%;
  padding-top: 300px;
}

.steps-list {
  position: relative;
  margin-top: var(--space-xl);
  padding-left: var(--space-md);
  max-width: 400px;
}

.steps-list p {
  margin-bottom: 14px;
}

.steps-list h2 {
  margin-bottom: 12px;
}

@property --line-gradient {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 10%;
}

/*
.steps-list::before {
  content: "";
  position: absolute;
  height: 85%;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.01) 0%,
    rgba(255, 255, 255, 0.01) 10%,
    var(--defVioletLight-alpha) var(--line-gradient),
    rgba(255, 255, 255, 0.01) 90%,
    rgba(255, 255, 255, 0.01) 100%
  );
  left: -49px;
  transition: --line-gradient 0.5s;
  -webkit-animation: Animation 5s ease infinite;
  animation: Animation 5s ease infinite;
}

.step-one::after,
.step-two::after,
.step-three::after {
  content: "";
  position: absolute;
  left: -110px;
  top: -45px;
  width: 124px;
  height: 124px;
  transform: scale(50%);
  background-repeat: no-repeat;
}

.step-one::after {
  background-image: url(../img/pos/img_webbrowser.png);
}

.step-two::after {
  background-image: url(../img/pos/img_issueorder.png);
}

.step-three::after {
  background-image: url(../img/pos/img_grphone.png);
}

@-webkit-keyframes Animation {
  0% {
    --line-gradient: 20%;
  }
  50% {
    --line-gradient: 80%;
  }
  100% {
    --line-gradient: 20%;
  }
}

@keyframes Animation {
  0% {
    --line-gradient: 20%;
  }
  50% {
    --line-gradient: 80%;
  }
  100% {
    --line-gradient: 20%;
  }
}*/

.step-one,
.step-two,
.step-three {
  position: relative;
  margin-top: var(--space-md);
}

.step-one::before,
.step-two::before,
.step-three::before {
  content: "";
  position: absolute;
  height: 72px;
  width: 72px;
  background: conic-gradient(
    from 200deg at 99% 100%,
    var(--defPinkBright) 0deg,
    var(--defBlueDark) 150deg,
    var(--defVioletDark) 360deg
  );
  left: -84px;
  top: -20px;
  border-radius: 50%;
  opacity: 0.3;
}

.scroll-margin {
  scroll-margin-top: 64px;
}

.pos-block {
  padding-right: 15%;
}

.posmethods-wrap {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .posmethods-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ani */

/* Animation base classes */
.animate {
  opacity: 0;
  transition: all 1s ease-out;
}

/* Animation types */
.fade-up {
  transform: translateY(50px);
}

.fade-left {
  transform: translateX(-50px);
}

.fade-right {
  transform: translateX(50px);
}

.scale-in {
  transform: scale(0.8);
}

/* Visible state */
.animate.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/**/

.card-list {
  margin-top: 4px;
  margin-bottom: 4px;
  text-align: left;
}

ul.card-list {
  list-style: none;
  padding-left: 8px;
  font-weight: 300;
  margin-top: 4px;
  line-height: 24px;
}

ul.card-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 4px;
}

ul.card-list li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.18em;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-image: url(../img/icons/ic-bullet-check-2.svg);
}

ul.card-list.white li::before {
  background-image: url(../img/icons/ic-bullet-check-2-white.svg);
}

@media (max-width: 1140px) {
  ul.card-list li::before {
    left: 0;
    top: 0.2em;
  }
}

/* FAQ */

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: var(--space-xl);
}

.faq-section{
  padding: 1.5rem;
  font-weight: 600;
  border: 1px solid rgba(239, 230, 243, 0.1);
  border-radius: 8px;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
  transition: color 0.2s ease;
}

.faq-item:hover .card-title {
  color: var(--color-secondary);
}

.faq-question::after {
  content: "\002B";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-light);
}

.faq-question.active::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  border-top: 1px solid transparent;
}

.faq-answer.show {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  max-height: 1000px;
}

.faq-answer p {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 1.25rem;
    font-size: 1rem;
  }
}




/* Animated Backgound */



.blob {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  background: radial-gradient(circle, hsl(271, 81%, 44%), hsl(257, 79%, 39%));
  animation: float 5s infinite alternate ease-in-out;
  z-index: -1;
  overflow: hidden;
}

.blob.one {
  left: 0;
  top: 10%;
}

.blob.underone {
  left: 4px;
  top: 25%;
  filter: blur(60px);
  opacity: 0.25;
  background: radial-gradient(circle, hsl(35, 100%, 50%), hsl(48, 100%, 50%));
}

.blob.two {
  left: 60%;
  top: 35%;
}

.blob.undertwo {
  left: 56%;
  top: 30%;
  filter: blur(60px);
  opacity: 0.25;
  background: radial-gradient(circle, hsl(35, 100%, 50%), hsl(48, 100%, 50%));
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100px, 100px);
  }
}
