/* [project]/app/hvordan-funker-det/howItWorks.module.css [app-client] (css) */
.howItWorks-module__nS3RQG__pageContainer {
  max-width: 1100px;
  color: var(--text-heading);
  margin: 0 auto;
  padding: 40px 24px;
}

.howItWorks-module__nS3RQG__hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 0 100px;
  animation: .8s ease-out howItWorks-module__nS3RQG__fadeIn;
}

.howItWorks-module__nS3RQG__badge {
  color: var(--accent);
  background: #ef444426;
  border: 1px solid #ef44444d;
  border-radius: 20px;
  margin-bottom: 24px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.howItWorks-module__nS3RQG__headline {
  margin-bottom: 24px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.howItWorks-module__nS3RQG__gradientText {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, #fff, #fcc);
  -webkit-background-clip: text;
  background-clip: text;
}

.howItWorks-module__nS3RQG__subHeadline {
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.6;
}

.howItWorks-module__nS3RQG__stepsWrapper {
  flex-direction: column;
  gap: 120px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.howItWorks-module__nS3RQG__stepsWrapper:before {
  content: "";
  z-index: -1;
  background: linear-gradient(#0000, #333, #0000);
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.howItWorks-module__nS3RQG__stepSection {
  align-items: center;
  gap: 60px;
  display: flex;
}

@media (max-width: 768px) {
  .howItWorks-module__nS3RQG__stepSection {
    text-align: left;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .howItWorks-module__nS3RQG__stepsWrapper:before {
    display: none;
  }
}

@media (min-width: 769px) {
  .howItWorks-module__nS3RQG__stepSection.howItWorks-module__nS3RQG__reverse {
    flex-direction: row-reverse;
  }
}

.howItWorks-module__nS3RQG__textColumn {
  flex: 1;
  position: relative;
}

.howItWorks-module__nS3RQG__stepNumber {
  color: #ffffff08;
  z-index: -1;
  -webkit-user-select: none;
  user-select: none;
  font-size: 80px;
  font-weight: 900;
  position: absolute;
  top: -60px;
  left: -20px;
}

.howItWorks-module__nS3RQG__stepTitle {
  color: var(--text-heading);
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 700;
}

.howItWorks-module__nS3RQG__stepDescription {
  color: var(--text-body);
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.6;
}

.howItWorks-module__nS3RQG__checkList {
  flex-direction: column;
  gap: 16px;
  padding: 0;
  list-style: none;
  display: flex;
}

.howItWorks-module__nS3RQG__checkList li {
  color: var(--text-heading);
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.howItWorks-module__nS3RQG__checkIcon {
  color: var(--accent);
  flex-shrink: 0;
}

.howItWorks-module__nS3RQG__imageColumn {
  flex: 1;
  justify-content: center;
  display: flex;
}

.howItWorks-module__nS3RQG__imageCard {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #1e1e1e99;
  border: 1px solid #ffffff1a;
  border-radius: 24px;
  width: 100%;
  max-width: 400px;
  padding: 32px;
  transition: transform .3s;
  transform: perspective(1000px)rotateY(-5deg)rotateX(5deg);
  box-shadow: 0 20px 40px #0000004d;
}

.howItWorks-module__nS3RQG__stepSection.howItWorks-module__nS3RQG__reverse .howItWorks-module__nS3RQG__imageCard {
  transform: perspective(1000px)rotateY(5deg)rotateX(5deg);
}

.howItWorks-module__nS3RQG__imageCard:hover {
  border-color: var(--accent);
  transform: perspective(1000px)rotateY(0)rotateX(0)scale(1.02);
}

.howItWorks-module__nS3RQG__placeholderUi {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.howItWorks-module__nS3RQG__uiHeader {
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #333;
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
}

.howItWorks-module__nS3RQG__uiBalance {
  text-align: center;
  margin: 20px 0;
  font-size: 42px;
  font-weight: 800;
}

.howItWorks-module__nS3RQG__textRed {
  color: #ef4444;
}

.howItWorks-module__nS3RQG__textGreen {
  color: #22c55e;
}

.howItWorks-module__nS3RQG__uiButton {
  background: var(--accent);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
}

.howItWorks-module__nS3RQG__uiButtonOutline {
  border: 1px solid var(--accent);
  color: var(--accent);
  text-align: center;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
}

.howItWorks-module__nS3RQG__uiRow, .howItWorks-module__nS3RQG__uiUserRow {
  background: #ffffff0d;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  display: flex;
}

.howItWorks-module__nS3RQG__uiNote {
  color: #666;
  text-align: center;
  font-size: 12px;
}

.howItWorks-module__nS3RQG__avatar {
  background: #444;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin-right: 12px;
}

.howItWorks-module__nS3RQG__uiUserRow {
  justify-content: flex-start;
}

.howItWorks-module__nS3RQG__bold {
  font-weight: 700;
}

.howItWorks-module__nS3RQG__subText {
  color: #888;
  font-size: 12px;
}

.howItWorks-module__nS3RQG__uiInputLike {
  color: #fff;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  justify-content: space-between;
  padding: 16px;
  display: flex;
}

.howItWorks-module__nS3RQG__bottomCta {
  text-align: center;
  background: radial-gradient(circle, #ef44441a, #0000 70%);
  border-top: 1px solid #ffffff0d;
  border-radius: 24px;
  margin-top: 40px;
  padding: 80px 24px;
}

.howItWorks-module__nS3RQG__bottomCta h2 {
  color: var(--text-heading);
  margin-bottom: 16px;
  font-size: 32px;
}

.howItWorks-module__nS3RQG__bottomCta p {
  color: var(--text-body);
  margin-bottom: 32px;
  font-size: 18px;
}

.howItWorks-module__nS3RQG__ctaButton {
  background-color: var(--accent);
  color: #fff;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
  box-shadow: 0 4px 20px #ef444466;
}

.howItWorks-module__nS3RQG__ctaButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #ef444499;
}

@keyframes howItWorks-module__nS3RQG__fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=app_hvordan-funker-det_howItWorks_module_b093494f.css.map*/