/* Base styles */
:root {
  --primary-color: #8A70D6;
  --primary-light: #E6E1F9;
  --primary-dark: #7A60C6;
  --black: #000000;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-gray: #999999;
  --super-light-gray: #f5f5f5;
  --white: #ffffff;
  --success: #3ECF8E;
  --warning: #F6C000;
  --error: #CF3E3E;
  --border-radius: 8px;
  --shadow: 0 4px 12px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--dark-gray);
  background-color: var(--white);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header styles */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--black);
}

.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}

.auth-buttons {
  display: flex;
  gap: 16px;
}

.btn-sign-in {
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 500;
  cursor: pointer;
}

.btn-register {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 8px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
}



/* Mobile Menü versteckt und rausgeschoben */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 280px;
  background-color: #121212;
  padding-top: 10px;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: 10001;
  color: #eee;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  margin: 1.2rem 0;
}

.mobile-nav a {
  color: #eee;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.5rem 1.5rem;
  transition: background-color 0.2s ease;
  border-radius: 4px;
}

.mobile-nav a:hover, 
.mobile-nav a:focus {
  background-color: #333;
  outline: none;
}

/* Hamburger Button */
.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  padding: 0;
  box-sizing: border-box;
  z-index: 10010;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: #222;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger animiert zum X */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #eee;
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: #eee;
}

/* Overlay (dunkler Hintergrund) */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10000;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Hide Desktop nav and auth buttons on mobile */
@media (max-width: 768px) {
  .main-nav,
  .auth-buttons {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}




/* Hero Section */
.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 5.6rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 2rem;
  color: var(--medium-gray);
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 1.6rem;
  color: var(--medium-gray);
}

.hero-cta {
  display: flex;
  gap: 24px;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.get-started-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.get-started-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.learn-more-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.learn-more-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  animation: fadeInRight 0.8s ease 0.4s backwards;
}

.hero-image img {
  width: 100%;
  height: auto;
  
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



/* Form Section */
.purchase-form-section {
  padding: 48px 0;
  background-color: var(--primary-light);
}

.purchase-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px var(--primary-light);
}

.input-with-icon {
  position: relative;
}

.input-with-icon .form-control {
  padding-right: 48px;
}

.scan-qr-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.crypto-amount {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--medium-gray);
  font-size: 1.4rem;
}
.input-with-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.crypto-amount {
  display: inline-flex;
  align-items: center;
  font-family: monospace;
}

#cryptoIcon {
  width: 20px;
  height: 20px;
  display: inline-block; /* statt none, wenn sichtbar */
  vertical-align: middle;
  margin-left: 5px;
}
/* Select2 Custom Styling */
.select2-container {
  width: 100% !important;
}

.select2-selection {
  height: 48px !important;
  border: 2px solid var(--light-gray) !important;
  border-radius: var(--border-radius) !important;
}

.select2-selection__rendered {
  line-height: 44px !important;
  padding-left: 12px !important;
}

.select2-selection__arrow {
  height: 46px !important;
}

.select2-results__option {
  padding: 8px 12px !important;
}

.select2-results__option--highlighted {
  background-color: var(--primary-light) !important;
  color: var(--dark-gray) !important;
}

.crypto-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

.crypto-option img {
  width: 24px;
  height: 24px;
}

/* QR Poster Code Neu */





  #qr-code-info {
    /* max-width: 320px; */
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
    text-align: center;
    user-select: none;
    margin-bottom: 35px;
  }

  #qrCode {
    margin: 0 auto 20px;
    width: 200px;
    /*height: 200px;*/
    border: 8px solid #8a70d6;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.5);
    overflow: hidden;
    display: inline-block;
  }

  #qrCode img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }

  #paymentInfo {
    font-size: 19px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #555;
    word-break: break-all;
    /* text-decoration: underline; */
  }

  #paymentInfo strong {
    color: #7a60c6;
    font-size: 21px;
    /* text-decoration: none; */
  }

.copy-on-click {
  cursor: pointer;
  color: #007bff;
}
.copy-on-click:hover {
  text-decoration: underline;
}

  .download-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .download-btn {
    background: #8a70d6;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgb(124 74 226 / 40%);
  }

  .download-btn img {
    filter: brightness(1) invert(1);
  }

  .download-btn:hover {
    background: #7a60c6;
    box-shadow: 0 6px 12px rgb(78 53 189 / 60%);
  }




/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
  padding: 64px 0;
  background-color: var(--white);
}

.trust-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-feature {
  text-align: center;
  padding: 24px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.trust-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.trust-feature h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.trust-feature p {
  font-size: 1.4rem;
  color: var(--medium-gray);
}

/* Why Use Section */
.why-use-section {
  padding: 80px 0;
  background-color: var(--white);
}

.why-use-section h2 {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 48px;
  color: var(--dark-gray);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.benefit-card h3 {
  font-size: 2rem;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.benefit-card p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background-color: var(--primary-light);
}

.how-it-works h2 {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 48px;
  color: var(--dark-gray);
}

.steps-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background-color: var(--primary-color);
  z-index: 0;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 auto 24px;
}

.step-content {
  background-color: var(--white);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.step-content h3 {
  font-size: 1.8rem;
  color: var(--dark-gray);
  margin-bottom: 12px;
}

.step-content p {
  color: var(--medium-gray);
  line-height: 1.6;
}

.target-groups-section {
  padding: 60px 0;
  background-color: #8a70d6;
}

.split-layout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.group-tabs {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.group-tab {
  padding: 12px 20px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: left;
}

.group-tab.active {
  background-color: #111827;
  color: white;
  border-color: #111827;
}

.group-content {
  flex: 2;
  min-width: 300px;
  position: relative;
}

.group-panel {
  display: none;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out; /* sanfte Animation für das Einblenden */
}

.group-panel.active {
  display: flex;
  opacity: 1; /* Sichtbar machen */
}

.group-panel img {
  max-width: 50%;

}

.faq_7 .responsive-cell-block {
  min-height: 75px;
}

.faq_7 .text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
}

.faq_7 .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.faq_7 .faq-head-bg {
	background: #8A70D6;
background: linear-gradient(180deg, rgba(138, 112, 214, 1) 10%, rgba(255, 255, 255, 1) 100%);
  color: white;
  padding-top: 80px;
  padding-right: 60px;
  padding-bottom: 80px;
  padding-left: 60px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: auto;
}

.faq_7 .text-blk.faq-heading1 {
  font-size: 40px;
  line-height: 55px;
  font-weight: 900;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.faq_7 .text-blk.faq-subheading {
  font-size: 18px;
  line-height: 26px;
}

.faq_7 .faq-dropdown-bg {
  padding-top: 80px;
  padding-right: 60px;
  padding-bottom: 80px;
  padding-left: 60px;
}

.faq_7 .faq {
  display: block;
  flex-direction: column;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #aaaaaa;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
}

.faq_7 .faq-question-container {
  display: flex;
  justify-content: space-between;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.faq_7 .faq-question-container:hover {
  cursor: pointer;
}

.faq_7 .text-blk.faq-questions {
  color: #525252;
  font-size: 20px;
}

.faq_7 .text-blk.faq-answer {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 20px;
  color: #9c9c9c;
  font-size: 18px;
  line-height: 26px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.faq_7 .text-blk.faq-subheading {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  max-width: 590px;
  font-size: 18px;
}

.faq_7 .answer-box {
  max-height: 0px;
  overflow-x: hidden;
  overflow-y: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* sanfter Verlauf */
  overflow: hidden;
  transition-delay: 0s;
  transition-property: max-height;
}

.faq_7 .faq.active .openimg {
  transform: rotate(180deg);
}

.faq_7 .openimg {
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
  transition-delay: 0s;
  transition-property: transform;
}

.faq_7 .faq.active .answer-box {
  max-height: 550px;
}

.faq_7 .faq-head-content {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: auto;
  max-width: 450px;
}

.faq_7 .container-block {
  max-width: 800px;
}

@media (max-width: 1024px) {
  .faq_7 .text-blk.faq-answer {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .faq_7 .text-blk.faq-heading1 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
  }

  .faq_7 .faq-head-content {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    max-width: 500px;
    text-align: center;
  }

  .faq_7 .faq-head-bg {
    padding-top: 50px;
    padding-right: 60px;
    padding-bottom: 30px;
    padding-left: 60px;
  }

  .faq_7 .faq-dropdown-bg {
    padding-top: 50px;
    padding-right: 60px;
    padding-bottom: 50px;
    padding-left: 60px;
  }

  .faq_7 .text-blk.faq-questions {
    font-size: 18px;
  }

  .faq_7 .text-blk.faq-answer {
    font-size: 16px;
  }

  .faq_7 .text-blk.faq-subheading {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }
}

@media (max-width: 500px) {
  .faq_7 .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-5.faq-head-bg {
    padding-top: 80px;
    padding-right: 30px;
    padding-bottom: 80px;
    padding-left: 30px;
  }

  .faq_7 .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-7.wk-ipadp-7.faq-dropdown-bg {
    padding-top: 80px;
    padding-right: 30px;
    padding-bottom: 80px;
    padding-left: 30px;
  }

  .faq_7 .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-5.faq-head-bg {
    padding-top: 50px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
  }

  .faq_7 .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-7.wk-ipadp-7.faq-dropdown-bg {
    padding-top: 50px;
    padding-right: 30px;
    padding-bottom: 50px;
    padding-left: 30px;
  }

  .faq_7 .text-blk.faq-answer {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 22px;
    font-size: 16px;
  }

  .faq_7 .text-blk.faq-questions {
    font-size: 18px;
  }

  .faq_7 .text-blk.faq-heading1 {
    font-size: 26px;
  }

  .faq_7 .text-blk.faq-subheading {
    font-size: 17px;
    line-height: 24px;
  }
}

#wallet-validation-message{
	
	text-align: center;
}

.crypto-prices{
	
	    margin-top: 60px;
	    margin-bottom: 60px;
}
/*Coinsearch input*/

/* Container für Input und Button, damit sie nebeneinander bleiben */
  .search-container {
    display: flex;
    width: 100%;
    margin: 0px 0;
    gap: 10px; /* Abstand zwischen Input und Button */
  }

  /* Inputfeld nimmt den gesamten verfügbaren Platz ein */
  #coinSearch {
    flex: 1;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #7a60c6;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
    margin: 0px 0;
  }
  #coinSearch:focus {
    border-color: #0056b3;
  }

  /* Button mit gleichem Höhenmaß, primäre Farbe, abgerundet */
  #coinSearchBtn {
    padding: 12px 20px;
    font-size: 16px;
    background-color: #8a70d6;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap; /* verhindert, dass Text umbricht */
  }
  #coinSearchBtn:hover {
    background-color: #7a60c6;
  }

  /* Auf kleinen Bildschirmen (unter 480px) Input und Button untereinander */
  @media (max-width: 480px) {
    .search-container {
      flex-direction: column;
    }
    #coinSearchBtn {
      width: 100%;
    }
  }

/*//////////////////////////////////////////////////////////////////
[ Table ]*/



.container-table100 {
  width: 100%;
  min-height: 100vh;
  background: #c850c0;
  background: -webkit-linear-gradient(45deg, #4158d0, #c850c0);
  background: -o-linear-gradient(45deg, #4158d0, #c850c0);
  background: -moz-linear-gradient(45deg, #4158d0, #c850c0);
  background: linear-gradient(45deg, #4158d0, #c850c0);

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 33px 30px;
}

.wrap-table100 {
  width: 1170px;
}

table {
  border-spacing: 1;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
table * {
  position: relative;
}
table td, table th {
  padding-left: 8px;
}
table thead tr {
  height: 60px;
  background: #7a60c6;
}
table tbody tr {
  height: 50px;
}
table tbody tr:last-child {
  border: 0;
}
table td, table th {
  text-align: left;
}
table td.l, table th.l {
  text-align: right;
}
table td.c, table th.c {
  text-align: center;
}
table td.r, table th.r {
  text-align: center;
}


.table100-head th{
  font-family: OpenSans-Regular;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
  font-weight: unset;
}

tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}

tbody tr {
  font-family: OpenSans-Regular;
  font-size: 15px;
  color: #808080;
  line-height: 1.2;
  font-weight: unset;
}

tbody tr:hover {
  color: #555555;
  background-color: #f5f5f5;
  cursor: pointer;
}

.column1 {
  width: 260px;
  padding-left: 40px;
}

.column2 {
  width: 160px;
}

.column3 {
  width: 245px;
}

.column4 {
  width: 110px;
  text-align: right;
}

.column5 {
  width: 170px;
  text-align: right;
}

.column6 {
  width: 222px;
  text-align: right;
  padding-right: 62px;
}
.column7 {
  width: 100px;
  text-align: center;
}

td.copied {
  background-color: #d4edda !important;
  transition: background-color 0.3s ease;
}

/* Dropdown in jeder Zeile */
.dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  background: #7a60c6;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  list-style: none;
  padding: 0;
  z-index: 10;
  min-width: 120px;
}

.dropdown-menu li {
  padding: 8px 12px;
  cursor: pointer;
}

.dropdown-menu li:hover {
  background-color: #f0f0f0;
}

@media screen and (max-width: 992px) {
  table {
    display: block;
  }
  table > *, table tr, table td, table th {
    display: block;
  }
  table thead {
    display: none;
  }
  table tbody tr {
    height: auto;
    padding: 37px 0;
  }
  table tbody tr td {
    padding-left: 40% !important;
    margin-bottom: 24px;
  }
  table tbody tr td:last-child {
    margin-bottom: 0;
  }
  table tbody tr td:before {
    font-family: OpenSans-Regular;
    font-size: 14px;
    color: #999999;
    line-height: 1.2;
    font-weight: unset;
    position: absolute;
    width: 40%;
    left: 30px;
    top: 0;
  }
  table tbody tr td:nth-child(1):before {
    content: "Date";
  }
  table tbody tr td:nth-child(2):before {
    content: "Order ID";
  }
  table tbody tr td:nth-child(3):before {
    content: "Name";
  }
  table tbody tr td:nth-child(4):before {
    content: "Price";
  }
  table tbody tr td:nth-child(5):before {
    content: "Quantity";
  }
  table tbody tr td:nth-child(6):before {
    content: "Total";
  }

  .column4,
  .column5,
  .column6 {
    text-align: left;
  }

  .column4,
  .column5,
  .column6,
  .column1,
  .column2,
  .column3 {
    width: 100%;
  }

  tbody tr {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .container-table100 {
    padding-left: 15px;
    padding-right: 15px;
  }
}


/* Footer */
.footer {
    background-color: #8a70d6;
    color: #fff;
}
.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}
.footer-wave-path {
    fill: #fffff2;
}

.footer-wave-path-white {
    fill: #fff;
}

.footer-wave-path-documents {
    fill: #f6f4fd;
}

.footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 450px;
    position: relative;
}

.footer-content-column {
    box-sizing: border-box;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    color: #fff;
}

.footer-content-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-logo-link {
    display: inline-block;
}
.footer-menu {
    margin-top: 30px;
}

.footer-menu-name {
    color: #fffff2;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-menu-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 10px;
    padding-left: 0;
}
.footer-menu-list li {
    margin-top: 5px;
}

.footer-call-to-action-description {
    color: #fffff2;
    margin-top: 10px;
    margin-bottom: 20px;
}
.footer-call-to-action-button:hover {
    background-color: #fffff2;
    color: #7a60c6;
}
.button:last-of-type {
    margin-right: 0;
}
.footer-call-to-action-button {
    background-color: #7a60c6;
    border-radius: 21px;
    color: #fffff2;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    cursor: pointer;
    position: relative;
}
.footer-call-to-action {
    margin-top: 30px;
}
.footer-call-to-action-title {
    color: #fffff2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-call-to-action-link-wrapper {
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
}
.footer-call-to-action-link-wrapper a {
    color: #fff;
    text-decoration: none;
}





.footer-social-links {
    bottom: 0;
    height: 54px;
    position: absolute;
    right: 0;
    width: 236px;
}

.footer-social-amoeba-svg {
    height: 54px;
    left: 0;
    display: block;
    position: absolute;
    top: 0;
    width: 236px;
}

.footer-social-amoeba-path {
    fill: #027b9a;
}

.footer-social-link.linkedin {
    height: 45px;
    left: 3px;
    top: 11px;
    width: 45px;
}

.footer-social-link {
    display: block;
    padding: 10px;
    position: absolute;
}

.hidden-link-text {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    top: 50%;
}

.footer-social-icon-svg {
    display: block;
}

.footer-social-icon-path {
    fill: #fffff2;
    transition: fill .2s;
}

.footer-social-link.twitter {
    height: 50px;
    left: 62px;
    top: 3px;
    width: 50px;
}

.footer-social-link.youtube {
    height: 45px;
    left: 123px;
    top: 12px;
    width: 45px;
}

.footer-social-link.github {
    height: 55px;
    left: 172px;
    top: 7px;
    width: 55px;
}

.footer-copyright {
    background-color: #7a60c6;
    color: #fff;
    padding: 15px 30px;
    text-align: center;
}

.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer-copyright-text {
  color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #fff;
    text-decoration: none;
}







/* Media Query For different screens */
@media (min-width:320px) and (max-width:479px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}
@media (min-width:480px) and (max-width:599px)  { /* smartphones, Android phones, landscape iPhone */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}
@media (min-width:600px) and (max-width: 800px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}
@media (min-width:801px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */

}
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */

}
@media (min-width:1281px) { /* hi-res laptops and desktops */

}




@media (min-width: 760px) {
  .footer-content {
      margin-left: auto;
      margin-right: auto;
      max-width: 1230px;
      padding: 40px 15px 450px;
      position: relative;
  }

  .footer-wave-svg {
      height: 50px;
  }

  .footer-content-column {
      width: 24.99%;
  }
}
@media (min-width: 568px) {
  /* .footer-content-column {
      width: 49.99%;
  } */
}

/* Styling für den Tooltip */
/* Tooltip Styling */
.tooltip {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: pre-wrap;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

/* Tooltip Positionierung */
.tooltip-icon {
  cursor: pointer;
}


/* Modal-Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.language-item {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
}

.language-item img {
  margin-right: 10px;
  width: 20px;
}

.language-item:hover {
  background-color: #f1f1f1;
}


/* Responsive Design */
@media (max-width: 768px) {
  .main-nav, .auth-buttons {
    display: none;
  }
  
  
  .trust-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .purchase-form {
    padding: 24px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .steps-container {
    flex-direction: column;
    gap: 24px;
  }

  .steps-container::before {
    display: none;
  }

  .step {
    max-width: 100%;
  }

  .hero-section {
    padding: 40px 0;
  }

  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.8rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .trust-features {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 3.2rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .get-started-btn,
  .learn-more-btn {
    width: 100%;
    justify-content: center;
  }
}