  :root {
    --tydra-green: var(--color-primary);
    --bubble-size: 120px;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
  }

  body::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--bg-glow);
    z-index: -2;
  }

  body::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
      linear-gradient(var(--card-bg) 1px, transparent 1px),
      linear-gradient(90deg, var(--card-bg) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
    z-index: -1;
    top: 0;
  }

  h1 {
    font-size: 2.6em;
    margin-bottom: 10px;
  }

  h2,
  h4 {
    text-align: center;
  }

  p {
    font-size: 1.1em;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
  }

  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
  }

  .divider {
    border-bottom: 1px solid var(--text-light);
  }

  .logo {
    font-size: 1.4em;
    font-weight: bold;
    color: var(--color-primary);
  }

  .logo a {
    text-decoration: none;
  }

  img.logo {
    width: 120px;
  }

  .space-holder {
    height: 50px;
    display: block;
  }

  nav {
    display: flex;
    gap: 24px;
    align-items: center;
    position: relative;
  }

  nav a {
    color: #eaeaea;
    text-decoration: none;
  }

  .dropdown,
  .dropdown-sub {
    position: relative;
  }

  .dropdown-content,
  .dropdown-sub-content {
    display: none;
    position: absolute;
    background-color: #1f1f1f;
    min-width: 220px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    flex-direction: column;
  }

  .dropdown-content a,
  .dropdown-sub-content a {
    padding: 12px 16px;
    color: #eaeaea;
    display: block;
  }

  .dropdown-content a:hover,
  .dropdown-sub-content a:hover {
    background-color: #2a2a2a;
  }

  .dropdown:hover>.dropdown-content {
    display: flex;
  }

  .dropdown-sub:hover>.dropdown-sub-content {
    display: flex;
    left: 100%;
    top: 0;
  }

  .hamburger {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
  }

  .theme-toggle {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 1.2em;
  }

  @media (max-width: 768px) {
    nav {
      display: none;
      flex-direction: column;
      background-color: #1a1a1a;
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      padding: 20px;
      gap: 12px;
      z-index: 9999999;
    }

    nav.active {
      display: flex;
    }

    .dropdown:hover .dropdown-content,
    .dropdown-sub:hover .dropdown-sub-content {
      display: none;
    }

    .dropdown-content,
    .dropdown-sub-content {
      position: static;
      box-shadow: none;
      background-color: #1a1a1a;
      margin-left: 10px;
      padding-left: 10px;
      border-left: 2px solid #00c853;
    }

    .dropdown.open>.dropdown-content,
    .dropdown-sub.open>.dropdown-sub-content {
      display: flex;
    }

    .hamburger {
      display: block;
    }
  }

  .header {
    text-align: center;
    padding: 80px 20px 40px;
  }

  .flex {
    display: flex;
  }

  .bubble-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 60px auto;
  }

  .bubble {
    position: absolute;
    width: var(--bubble-size);
    height: var(--bubble-size);
    border-radius: 50%;
    background-color: #1e1e1e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    text-align: center;
    padding: 10px;
    box-shadow: 0 0 8px rgba(0, 200, 83, 0.2);
  }

  .bubble:hover {
    background-color: var(--tydra-green);
    transform: scale(1.08);
  }

  .bubble-logo {
    max-width: 100px;
    margin: 0 auto;
  }

  .c0 {
    top: 5%;
    left: calc(50% - 60px);
    z-index: 2;
  }

  .c1 {
    top: 30%;
    left: calc(80% - 80px);
  }

  .c2 {
    top: 57%;
    left: calc(65% - 80px);
  }

  .c3 {
    top: 57%;
    left: calc(35% - 60px);
  }

  .c4 {
    top: 30%;
    left: calc(20% - 60px);
  }

  .center-text {
    margin: 0 auto;
    padding-top: 30%;
    font-size: 1.2em;
    color: var(--text-light);
    width: var(--bubble-size);
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .glow-circle {
    position: absolute;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.08), transparent 70%);
    z-index: 0;
    animation: pulse 3s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.7;
    }

    50% {
      transform: scale(1.1);
      opacity: 1;
    }

    100% {
      transform: scale(1);
      opacity: 0.7;
    }
  }

  footer {
    padding: 40px;
    font-size: 0.8em;
    color: #555;
  }

  body {
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
  }

  .rubrik-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
  }

  .rubrik-section h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 40px;
  }

  .rubrik-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .rubrik-card {
    width: 260px;
    min-height: 180px;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s ease;
    position: relative;
  }

  .rubrik-filled {
    background: var(--gradient-soft);
    border: 1px solid var(--border-strong);
  }

  .rubrik-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .rubrik-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.15);
  }

  .rubrik-card h3 {
    margin-top: 0;
    color: var(--color-primary);
    font-size: 1.3em;
  }

  .rubrik-card p {
    font-size: 0.95em;
    color: var(--text-light);
    line-height: 1.4;
  }

  .testimonial-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
  }

  .testimonial-section h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
  }

  .testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .testimonial {
    background: var(--gradient-subtle);
    border: 1px solid var(--border-highlight);
    border-radius: 16px;
    padding: 30px;
    width: 300px;
    text-align: left;
    position: relative;
    transition: 0.3s ease;
  }

  .testimonial:hover {
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.15);
    transform: translateY(-4px);
  }

  .testimonial p {
    font-size: 0.95em;
    line-height: 1.6;
    color: var(--text-light);
  }

  .testimonial .author {
    margin-top: 20px;
    font-weight: bold;
    color: var(--color-primary);
  }

  .testimonial .role {
    font-size: 0.85em;
    color: var(--text-light);
  }

  .fuerwen-section-private {
    border-right: 1px solid white;
  }

  .fuerwen-section {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
  }

  .fuerwen-section h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
  }

  .target-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }


  .target-card {
    background: var(--gradient-subtle);
    border: 1px solid var(--border-highlight);
    border-radius: 16px;
    padding: 30px;
    width: 300px;
    text-align: center;
    transition: 0.3s ease;
  }

  .target-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.15);
  }

  .target-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--color-primary);
  }

  .target-card h3 {
    margin-top: 0;
    color: var(--color-primary);
    font-size: 1.3em;
  }

  .target-card p {
    font-size: 0.95em;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .target-card a {
    display: inline-block;
    color: var(--color-primary);
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
  }

  .target-card a:hover {
    border-color: var(--color-primary);
  }

  .features-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
  }

  .features-section h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
  }

  .feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 16px;
    width: 280px;
    padding: 20px;
    text-align: center;
    transition: 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.12);
  }

  .feature-card .icon {
    font-size: 2em;
    margin-bottom: 12px;
    color: var(--color-primary);
  }

  .feature-card h3 {
    margin: 10px 0 8px;
    font-size: 1.2em;
    color: var(--color-primary);
  }

  .feature-card p {
    font-size: 0.95em;
    color: var(--text-light);
  }

  .feature-card img {
    margin: 15px 0;
    border-radius: 8px;
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    background-color: var(--text-color);
    padding: 5px;
  }

  .steps-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
  }

  .steps-section h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
  }

  .step-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
  }

  .step {
    flex: 1 1 260px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    transition: 0.3s ease;
  }

  .step:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.12);
  }

  .step-number {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 20px;
    font-size: 1.1em;
  }

  .step h3 {
    margin: 10px 0 8px;
    font-size: 1.3em;
    color: var(--color-primary);
  }

  .step p {
    font-size: 0.95em;
    color: var(--text-light);
  }

  .arrow-down {
    font-size: 2em;
    margin: 40px 0 20px;
    color: var(--color-primary);
    animation: bounce 2s infinite;
  }

  @keyframes bounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(6px);
    }
  }

  .cta-split {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 80px 20px;
    background: var(--gradient-cta);
  }

  .cta-box {
    flex: 1 1 320px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-highlight);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s ease;
  }

  .cta-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.15);
  }

  .cta-box h3 {
    color: var(--color-primary);
    font-size: 1.6em;
    margin-bottom: 10px;
  }

  .cta-box p {
    color: var(--text-light);
    font-size: 1em;
    margin-bottom: 30px;
  }

  .cta-box button {
    background: var(--color-primary);
    color: var(--text-color);
    border: none;
    border-radius: 30px;
    padding: 14px 32px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 16px rgba(0, 200, 83, 0.3);
  }

  .cta-box button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 24px rgba(0, 200, 83, 0.5);
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .modal-content {
    background-color: var(--card-bg);
    margin: 10% auto;
    padding: 30px;
    border: 1px solid var(--color-primary)33;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    text-align: center;
  }

  .modal-content h3 {
    color: var(--color-primary);
    margin-bottom: 20px;
  }

  .modal-content a {
    display: block;
    margin: 10px 0;
    color: var(--color-primary);
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
  }

  .modal-content a:hover {
    text-decoration: underline;
  }

  .close {
    color: var(--text-light);
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
  }

  .vergleich-section {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
  }

  .vergleich-section h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
  }

  .vergleich-table {
    width: 100%;
    border-collapse: collapse;
  }

  .vergleich-table th,
  .vergleich-table td {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .vergleich-table th {
    background-color: var(--card-bg);
    color: var(--color-primary);
    font-size: 1.1em;
  }

  .vergleich-table tr:nth-child(even) {
    background-color: var(--card-bg);
  }

  .vergleich-table tr:nth-child(odd) {
    background-color: var(--card-bg);
  }

  .vergleich-table td span {
    font-size: 1.4em;
  }

  .true {
    color: var(--color-primary);
  }

  .false {
    color: var(--text-light);
  }

  .scrolling-banner {
    background: var(--card-bg);
    border-top: 1px solid rgba(0, 200, 83, 0.1);
    border-bottom: 1px solid rgba(0, 200, 83, 0.1);
    padding: 40px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }

  .scrolling-track {
    display: inline-block;
    animation: scroll 20s linear infinite;
  }

  .scrolling-track img {
    height: 50px;
    margin: 0 40px;
    transition: 0.3s ease;
  }

  .scrolling-track img:hover {
    filter: none;
    transform: scale(1.05);
  }

  .focus-slider {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
  }

  .slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
  }

  .slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }

  .slide img {
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.15);
    margin-right: 20px;
  }

  .slide-text {
    flex: 1;
    min-width: 280px;
    padding-left: 30px;
  }

  .slide-text h3 {
    color: var(--color-primary);
    font-size: 1.8em;
    margin-bottom: 10px;
  }

  .slide-text p {
    font-size: 1em;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .slide-text a {
    color: var(--color-primary);
    font-weight: bold;
    text-decoration: none;
    font-size: 0.95em;
  }

  .slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    left: 0;
  }

  .slider-controls button {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--color-primary)44;
    color: var(--color-primary);
    font-size: 1.5em;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s ease;
  }

  .slider-controls button:hover {
    background: rgba(0, 200, 83, 0.2);
  }

  .mission-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
  }

  .mission-section h2 {
    font-size: 2em;
    color: var(--color-primary);
    margin-bottom: 20px;
  }

  .mission-section p {
    font-size: 1.15em;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
  }

  #featureLink {
    text-decoration: none;
  }

  .no-text-decoration {
    text-decoration: none;
  }

  .newsletter-section {
    padding: 60px 20px;
    text-align: center;
  }

  .newsletter-section h3 {
    font-size: 1.6em;
    color: var(--color-primary);
    margin-bottom: 20px;
  }

  .newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
  }

  .newsletter-form input[type="email"] {
    padding: 12px 18px;
    font-size: 1em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background-color: #1b1b1b;
    color: var(--text-color);
    flex: 1 1 300px;
  }

  .newsletter-form button {
    padding: 12px 24px;
    font-size: 1em;
    background-color: var(--color-primary);
    color: var(--bg-color);
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 200, 83, 0.25);
  }

  .newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.4);
  }

  .newsletter-note {
    margin-top: 15px;
    font-size: 0.85em;
    color: var(--text-light);
  }

  footer {
    background-color: var(--card-bg);
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }

  .footer-column {
    flex: 1 1 200px;
  }

  .footer-column h4 {
    font-size: 1em;
    text-align: left;
    margin-bottom: 10px;
    color: var(--color-primary);
  }

  .footer-column p,
  .footer-column a {
    font-size: 0.9em;
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    text-align: left;
  }

  .footer-column a:hover {
    color: var(--color-primary);
  }

  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.75em;
    color: var(--text-light);
  }

  .scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent);
    color: var(--bg-color);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.2em;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
  }

  .scroll-top:hover {
    box-shadow: 0 0 16px var(--accent);
  }

  /**
  * sup page feature-box
  **/

  .feature-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
  }

  .feature-box {
    background-color: #1c1c1c;
    border: 1px solid rgba(0, 200, 83, 0.2);
    padding: 24px;
    border-radius: 12px;
    transition: 0.3s ease;
  }

  .feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 18px rgba(0, 200, 83, 0.1);
  }

  .feature-box h3 {
    color: #00c853;
    margin-bottom: 10px;
    font-size: 1.2em;
  }

  .feature-box p {
    font-size: 0.95em;
    color: #aaa;
  }

  /*
  * sub page intro
  */

  .intro {
    margin-top: 200px;
    padding-bottom: 50px;
  }

  .intro h2 {
    text-align: center;
  }


  /*
  * sub page features
  */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }

  .card {
    background-color: #1a1a1a;
    border: 1px solid rgba(0, 200, 83, 0.15);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s;
  }

  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 16px rgba(0, 200, 83, 0.15);
  }

  .card h3 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 1.1em;
  }

  .card p {
    font-size: 0.95em;
    color: #bbb;
    line-height: 1.5;
  }

  /*
  sub page testimonial 
  */
  section.testimonial {
    max-width: 600px;
    width: 100%;
    margin: 100px auto;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  section.testimonial:hover {
    background: none !important;
  }

  .quote {
    font-size: 1.3em;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 20px;
  }

  .author {
    font-size: 0.95em;
    color: var(--color-primary);
    font-style: italic;
  }

  /**
  * FAQ
  */
  .faq {
    margin-top: 40px;
  }

  .faq-item {
    margin-bottom: 30px;
  }

  .faq-item h4 {
    font-size: 1.1em;
    color: var(--color-primary);
    margin-bottom: 8px;
  }

  .faq-item p {
    font-size: 0.95em;
    color: var(--text-color);
    line-height: 1.5;
    text-align: center;
  }

  .micro-mission {
    text-align: center;
    font-size: 1.2em;
    color: #bbb;
    margin: 80px auto 60px;
    max-width: 720px;
    font-style: italic;
  }

  .footer-cta {
    text-align: center;
    padding: 0px 0 60px;
  }

  .footer-cta button {
    padding: 14px 32px;
    font-size: 1em;
    background-color: #00c853;
    color: #0e0f0f;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 14px rgba(0, 200, 83, 0.3);
  }

  .footer-cta button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 22px rgba(0, 200, 83, 0.6);
  }


  /**
  * hightlight box
  */
  .highlight-box {
    margin: 0 auto;
    background-color: #1a1a1a;
    border: 2px solid var(--accent);
    padding: 40px 30px;
    border-radius: 16px;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.2);
    transition: 0.5s ease;
  }

  .highlight-box h2 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 1.6em;
  }

  .highlight-box p {
    font-size: 1em;
    color: #ccc;
    line-height: 1.5;
  }

  .highlight-box .label {
    font-size: 0.85em;
    color: #888;
    margin-top: 20px;
  }


  @keyframes scroll {
    from {
      transform: translateX(0%);
    }

    to {
      transform: translateX(-50%);
    }
  }

  @media (max-width: 768px) {

    :root {
      --bubble-size: 80px;
    }

    img.logo {
      text-align: center;
      margin-left: -10px;
      margin-top: 79px;
    }

    .c0 {
      left: calc(54% - 60px);
    }

    .c1 {
      left: calc(90% - 80px);
    }

    .c2 {
      left: calc(80% - 80px);
    }

    .c3 {
      left: calc(30% - 60px);
    }

    .vergleich-table-wrapper {
      max-width: 100%;
      overflow-x: scroll;
    }

    .flex {
      display: block;
    }

    nav {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 55px;
      right: 0px;
      background-color: var(--card-bg);
      border: 1px solid rgba(255, 255, 255, 0.05);
      padding: 15px;
      border-radius: 8px;
      width: 100%;
      left: 0;
    }

    nav.show {
      display: flex;
    }

    .hamburger {
      display: block;
    }

    .slide {
      flex-direction: column-reverse;
      text-align: center;
      padding: 0;
    }

    .slide-text {
      padding-left: 10px;
      max-width: 80%;
      margin: 0 auto;
    }

    .slide img {
      max-width: 100%;
    }
  }

  @media (max-width: 600px) {
    .scrolling-track img {
      height: 40px;
      margin: 0 25px;
    }
  }

  .system-origin {
    max-width: 1000px;
    margin: 0 auto;
  }

  /**
  * Preise
  */
  .pricing-section {
    margin-bottom: 100px;
  }

  .tydra-price-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
  }

  .tydra-price-card {
    position: relative;
    width: 300px;
    background: #202020;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    padding-bottom: 30px;
    color: #fff;
    font-family: inherit;
  }

  .tydra-price-card .ribbon {
    width: 100%;
    height: 80px;
    background: #007be5;
  }

  .tydra-price-card.standard .ribbon {
    background: #9d4edd;
  }

  .tydra-price-card.premium .ribbon {
    background: #ff1493;
  }

  .tydra-price-circle {
    width: 100px;
    height: 100px;
    background: #007be5;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 10px;
    border: 6px solid #111;
    z-index: 2;
    position: relative;
  }

  .tydra-price-card.standard .tydra-price-circle {
    background: #9d4edd;
  }

  .tydra-price-card.premium .tydra-price-circle {
    background: #ff1493;
  }

  .tydra-price-card h3 {
    font-size: 1rem;
    margin: 10px 0 5px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .tydra-price-features {
    list-style: none;
    padding: 0 30px;
    margin: 20px 0;
    text-align: left;
    color: #333;
  }

  .tydra-price-features li {
    font-size: 0.9rem;
    margin: 10px 0;
    position: relative;
    padding-left: 22px;
    color: #fff;
  }

  .tydra-price-features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
  }

  .tydra-price-features li.no::before {
    content: '✘';
    color: #dc3545;
  }

  .tydra-price-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    background: #00bfff;
    color: #fff;
    transition: all 0.3s ease;
  }

  .tydra-price-button:hover {
    background: #0099ff;
  }

  .pricing-section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
  }

  .pricing-section h3 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 40px;
  }

  .section-subtitle {
    margin-top: 100px;
  }

  /**
  * Für wen
  */

  /* Grundstruktur */
  section.section-intro,
  section.target-group,
  section.not-for-everyone,
  section.cta {
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    background: #111;
  }

  .section-intro h1,
  .target-group h2,
  .not-for-everyone h2,
  .cta h3 {
    font-size: 2rem;
    color: #00cfff;
    margin-bottom: 1rem;
  }

  .section-intro p,
  .target-group p,
  .not-for-everyone p,
  .cta p {
    max-width: 720px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
  }

  /* Grid für Icon-Boxen */
  .icon-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .icon-box {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
  }

  .icon-box:hover {
    transform: translateY(-4px);
  }

  .icon-box i {
    font-size: 2.5rem;
    color: #00cfff;
    margin-bottom: 1rem;
    display: block;
  }

  /* Step-Cards für Coaches */
  .step-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
  }

  .step-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    max-width: 300px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
  }

  .step-number {
    width: 36px;
    height: 36px;
    background: #00cfff;
    border-radius: 50%;
    color: #000;
    font-weight: bold;
    line-height: 36px;
    margin: 0 auto 1rem auto;
    font-size: 1rem;
  }

  /* Unternehmensliste */
  .benefit-list,
  .no-match-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .no-match-list {
    max-width: 600px;
  }

  .benefit-list li,
  .no-match-list li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    padding-left: 1.5rem;
    position: relative;
  }

  .benefit-list li strong,
  .no-match-list li strong {
    position: absolute;
    left: 0;
    color: #00cfff;
  }

  /* Nicht für alle */
  .not-for-everyone .quote-box {
    background: #1a1a1a;
    padding: 1.5rem;
    border-left: 4px solid #00cfff;
    font-style: italic;
    margin: 1rem auto;
    max-width: 600px;
  }

  .no-match-list {
    list-style: none;
    padding-left: 0;
    margin-top: 2rem;
  }

  .no-match-list li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }

  /* CTA Button */
  .cta .btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    background: #00cfff;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .cta .btn:hover {
    background: #00b0e0;
  }

  .section-cta h3,
  .section-cta p,
  .section-cta a,
  .intro p {
    text-align: center;
  }

  .section-cta a.btn {
    text-align: center;
    margin: 0 auto;
    display: block;
    position: relative;
    width: 200px;
  }