/** Shopify CDN: Minification failed

Line 191:0 All "@import" rules must come first
Line 208:14 Expected identifier but found whitespace
Line 208:16 Unexpected "{"
Line 208:26 Expected ":"
Line 208:68 Expected identifier but found ","

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:map-plus-text (INDEX:88) */
.eneto-split {
    width: 100%;
  }

  .eneto-split__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
  }

  .eneto-split--right .eneto-split__media {
    order: 2;
  }

  .eneto-split--right .eneto-split__content {
    order: 1;
  }

  .eneto-split__media {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
  }

  .eneto-split__media > img,
  .eneto-split__media > svg,
  .eneto-split__media > iframe,
  .eneto-split__media > video {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
  }

  .eneto-split__media > iframe {
    aspect-ratio: 4 / 3;
  }

  .eneto-split__placeholder {
    width: 100%;
    min-height: 400px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .eneto-split__placeholder svg {
    width: 50%;
    max-width: 300px;
    opacity: 0.5;
  }

  .eneto-split__content {
    padding: 32px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--eneto-split-text);
  }

  .eneto-split__kicker {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 16px;
    line-height: 1.4;
  }

  .eneto-split__heading {
    margin: 0 0 20px;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .eneto-split__body {
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 28px;
  }

  .eneto-split__body p {
    margin: 0 0 12px;
  }

  .eneto-split__body p:last-child {
    margin-bottom: 0;
  }

  .eneto-split__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .eneto-split__bullet {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    line-height: 1.5;
  }

  .eneto-split__check {
    flex-shrink: 0;
    margin-top: 1px;
    display: inline-flex;
    color: var(--eneto-split-check);
  }

  .eneto-split__bullet-text {
    flex: 1;
  }

  .eneto-split__button-wrap {
    margin-top: 8px;
  }

  .eneto-split__button {
    display: inline-block;
  }

  @media screen and (max-width: 990px) {
    .eneto-split__content {
      padding: 24px 32px;
    }
  }

  @media screen and (max-width: 749px) {
    .eneto-split__inner {
      grid-template-columns: 1fr;
    }

    .eneto-split--right .eneto-split__media,
    .eneto-split--left .eneto-split__media {
      order: 1;
    }

    .eneto-split--right .eneto-split__content,
    .eneto-split--left .eneto-split__content {
      order: 2;
    }

    .eneto-split__media {
      padding: 16px 20px 0;
    }

    .eneto-split__content {
      padding: 24px 20px 28px;
    }

    .eneto-split__body {
      font-size: 16px;
    }

    .eneto-split__button-wrap .eneto-split__button {
      display: block;
      text-align: center;
      width: 100%;
    }
  }
/* END_SECTION:map-plus-text */

/* START_SECTION:ustom-pricing-section (INDEX:128) */
/* Using CSS variables defined inline based on section settings */
/* Font Import bleibt, falls Inter nicht die Theme-Schrift ist */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Globaler Body Font für alle Textelemente, wo keine spezielle Schrift gesetzt ist */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-background-light);
}

.page-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

/* Anpassung der Hauptüberschrift an die System-Schriftart */
.exclusive-text {
  text-align: center;
  /* Verwendung der globalen Theme-Schriftart für Überschriften */
  font-family: {{ settings.heading_font.family | default: 'Inter' }}, sans-serif;
}

/* NEU: CSS Grid für gleichmäßige Kachelbreite */
.pricing-container {
  display: grid;
  /* Erzeugt gleich breite Spalten, die mindestens 280px breit sind, bevor sie in eine Reihe umbrechen */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;
  width: 100%;
}

.pricing-plan {
  background-color: var(--color-white);
  /* min-width entfernt, da Grid die Breite steuert */
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  /* Gap wird vom Grid gesteuert, nicht vom Plan */
}

@media (max-width: 768px) {
  .pricing-container {
    /* Bei kleinen Bildschirmen eine Spalte */
    grid-template-columns: 1fr;
    /* Zentrieren ist bei 1fr nicht nötig, aber schadet nicht */
    align-items: center;
  }
  .pricing-plan {
    width: 100%; /* Füllt die Spalte aus */
  }
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: -33px;
  background-color: var(--color-accent-blue);
  color: var(--color-white);
  padding: 6px 30px;
  transform: rotate(45deg);
}

.plan-header h2 {
  margin: 0 0 8px 0; /* 0.5rem -> 8px */
  color: var(--color-primary-dark);
}

.plan-header p {
  color: var(--color-text-dark);
  min-height: 60px;
  margin: 0;
}

.plan-price .price {
  font-weight: 700;
  color: var(--color-primary-dark);
  display: inline-flex;
  align-items: baseline;
  gap: 20px; /* 1.25rem -> 20px */
}

.original-price {
  font-weight: 400;
  text-decoration: line-through;
  color: var(--color-strikethrough);
}

.price .price-for-customer {
  display: inline-flex;
  align-items: baseline;
  gap: 20px; /* 1.25rem -> 20px */
}

.plan-price .period, .plan-price .ab-text {
  color: var(--color-text-dark);
}

.cta-button {
  width: 100%;
  padding: 16px; /* 1rem -> 16px */
  border-radius: 8px;
  font-size: 18pt; /* 1.1rem -> 18pt (ca.) */
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-button.primary {
  background-color: var(--color-accent-orange);
  color: var(--color-white);
  border: 2px solid var(--color-accent-orange);
}

.cta-button.secondary {
  background-color: var(--color-white);
  color: var(--color-accent-orange);
  border: 2px solid var(--color-accent-orange);
}

.plan-note {
  color: var(--color-text-dark);
  text-align: center;
  margin-top: 12px; /* 0.75rem -> 12px */
}

.features {
  list-style: none;
  padding: 0;
  margin-top: 32px; /* 2rem -> 32px */
  flex-grow: 1;
}

.features h3 {
  margin-bottom: 16px; /* 1rem -> 16px */
  color: var(--color-primary-dark);
}

.features li {
  margin-bottom: 12px; /* 0.75rem -> 12px */
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
}

.features li::before {
  content: '✓';
  color: var(--color-success-check);
  font-weight: 700;
  margin-right: 12px; /* 0.75rem -> 12px */
  font-size: 20pt; /* 1.2rem -> 20pt (ca.) */
}
/* END_SECTION:ustom-pricing-section */