/* Extracted from demo.html */
/* === DEMO PAGE – HIGH CONVERTING STYLES === */

      /* Hero Split Layout */
      .demo-hero-wrapper {
        background: #ffffff;
        background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
        background-size: 24px 24px;
      }
      .demo-hero {
        min-height: 92vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 4rem;
        padding: 140px 2rem 80px;
        max-width: 1280px;
        margin: 0 auto;
        position: relative;
      }
      .demo-hero__left {
        max-width: 560px;
      }
      .demo-hero__badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(102,255,126,0.12);
        border: 1px solid rgba(102,255,126,0.3);
        color: #111827;
        font-size: 0.82rem;
        font-weight: 600;
        padding: 6px 16px;
        border-radius: 100px;
        margin-bottom: 1.5rem;
        font-family: 'Manrope', sans-serif;
      }
      .demo-hero__badge-dot {
        width: 8px;
        height: 8px;
        background: #66ff7e;
        border-radius: 50%;
        animation: pulse-dot 2s infinite;
      }
      @keyframes pulse-dot {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.5; transform: scale(1.4); }
      }
      .demo-hero__title {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: clamp(2.2rem, 4vw, 3.2rem);
        font-weight: 700;
        line-height: 1.12;
        color: #111827;
        margin-bottom: 1.25rem;
      }
      .demo-hero__title span {
        color: #111827;
        background: linear-gradient(135deg, #66ff7e 0%, #40e060 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .demo-hero__subtitle {
        font-family: 'Manrope', sans-serif;
        font-size: 1.1rem;
        line-height: 1.7;
        color: #4b5563;
        margin-bottom: 2rem;
      }
      .demo-hero__checks {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
      }
      .demo-hero__check {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-family: 'Manrope', sans-serif;
        font-size: 0.95rem;
        color: #374151;
        font-weight: 500;
      }
      .demo-hero__check-icon {
        width: 24px;
        height: 24px;
        background: #66ff7e;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .demo-hero__check-icon svg {
        width: 14px;
        height: 14px;
        stroke: #111827;
        stroke-width: 3;
        fill: none;
      }
      .demo-hero__trust {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
      }
      .demo-hero__trust-avatars {
        display: flex;
      }
      .demo-hero__trust-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 2px solid #fff;
        margin-left: -8px;
        background: #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        font-weight: 700;
        color: #374151;
        font-family: 'Manrope', sans-serif;
      }
      .demo-hero__trust-avatar:first-child { margin-left: 0; }
      .demo-hero__trust-text {
        font-family: 'Manrope', sans-serif;
        font-size: 0.85rem;
        color: #6b7280;
        line-height: 1.4;
      }
      .demo-hero__trust-text strong {
        color: #111827;
        font-weight: 700;
      }

      /* Form Card */
      .demo-form-card {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
        position: relative;
        overflow: hidden;
      }
      .demo-form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #66ff7e, #40e060, #66ff7e);
        background-size: 200% 100%;
        animation: shimmer-bar 3s ease infinite;
      }
      @keyframes shimmer-bar {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
      }
      .demo-form-card__title {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: #111827;
        margin-bottom: 0.5rem;
      }
      .demo-form-card__desc {
        font-family: 'Manrope', sans-serif;
        font-size: 0.88rem;
        color: #6b7280;
        margin-bottom: 1.75rem;
      }
      .demo-form__group {
        margin-bottom: 1.25rem;
      }
      .demo-form__label {
        display: block;
        font-family: 'Manrope', sans-serif;
        font-size: 0.82rem;
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.4rem;
      }
      .demo-form__input,
      .demo-form__select,
      .demo-form__textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #d1d5db;
        border-radius: 10px;
        font-family: 'Manrope', sans-serif;
        font-size: 0.92rem;
        color: #111827;
        background: #fafafa;
        transition: border-color 0.2s, box-shadow 0.2s;
        outline: none;
        box-sizing: border-box;
      }
      .demo-form__input:focus,
      .demo-form__select:focus,
      .demo-form__textarea:focus {
        border-color: #66ff7e;
        box-shadow: 0 0 0 3px rgba(102,255,126,0.15);
        background: #fff;
      }
      .demo-form__textarea {
        resize: vertical;
        min-height: 80px;
      }
      .demo-form__row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }
      .demo-form__consent {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        margin: 1.25rem 0;
      }
      .demo-form__consent input[type="checkbox"] {
        margin-top: 3px;
        accent-color: #66ff7e;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
      }
      .demo-form__consent-text {
        font-family: 'Manrope', sans-serif;
        font-size: 0.78rem;
        color: #6b7280;
        line-height: 1.5;
      }
      .demo-form__consent-text a {
        color: #111827;
        text-decoration: underline;
      }
      .demo-form__submit {
        width: 100%;
        padding: 14px 24px;
        background: #111827;
        color: #fff;
        border: none;
        border-radius: 12px;
        font-family: 'Manrope', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        position: relative;
        overflow: hidden;
      }
      .demo-form__submit:hover {
        background: #1f2937;
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(17,24,39,0.2);
      }
      .demo-form__submit:active {
        transform: translateY(0);
      }
      .demo-form__submit--loading {
        pointer-events: none;
        opacity: 0.8;
      }
      .demo-form__submit-spinner {
        display: none;
        width: 18px;
        height: 18px;
        border: 2px solid rgba(255,255,255,0.3);
        border-top-color: #fff;
        border-radius: 50%;
        animation: spin 0.6s linear infinite;
      }
      .demo-form__submit--loading .demo-form__submit-spinner {
        display: block;
      }
      @keyframes spin { to { transform: rotate(360deg); } }

      .demo-form__message {
        margin-top: 1rem;
        padding: 12px 16px;
        border-radius: 10px;
        font-family: 'Manrope', sans-serif;
        font-size: 0.88rem;
        display: none;
      }
      .demo-form__message--success {
        display: block;
        background: rgba(102,255,126,0.12);
        border: 1px solid rgba(102,255,126,0.3);
        color: #065f46;
      }
      .demo-form__message--error {
        display: block;
        background: #fef2f2;
        border: 1px solid #fecaca;
        color: #991b1b;
      }

      /* Honeypot */
      .demo-form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

      /* === 30 TAGE KOSTENLOS SEKTION === */
      .demo-trial {
        padding: 100px 2rem;
        background: #111827;
        position: relative;
        overflow: hidden;
      }
      .demo-trial::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 60%;
        height: 200%;
        background: radial-gradient(ellipse, rgba(102,255,126,0.08) 0%, transparent 70%);
        pointer-events: none;
      }
      .demo-trial__container {
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
      }
      .demo-trial__eyebrow {
        font-family: 'Manrope', sans-serif;
        font-size: 0.82rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #66ff7e;
        margin-bottom: 1rem;
      }
      .demo-trial__title {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: #ffffff;
        line-height: 1.15;
        margin-bottom: 1.25rem;
      }
      .demo-trial__title span {
        color: #66ff7e;
      }
      .demo-trial__desc {
        font-family: 'Manrope', sans-serif;
        font-size: 1.1rem;
        color: #9ca3af;
        max-width: 640px;
        margin: 0 auto 3rem;
        line-height: 1.7;
      }
      .demo-trial__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
      }
      .demo-trial__card {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 16px;
        padding: 2rem 1.5rem;
        text-align: left;
        transition: all 0.3s;
      }
      .demo-trial__card:hover {
        background: rgba(255,255,255,0.07);
        border-color: rgba(102,255,126,0.2);
        transform: translateY(-4px);
      }
      .demo-trial__card-icon {
        width: 64px;
        height: 64px;
        background: transparent;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
      }
      .demo-trial__card-icon svg {
        width: 24px;
        height: 24px;
        stroke: #66ff7e;
        fill: none;
        stroke-width: 2;
      }
      .demo-trial__card-icon img {
        width: 64px;
        height: 64px;
        object-fit: contain;
      }
      .demo-trial__card-title {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.5rem;
      }
      .demo-trial__card-desc {
        font-family: 'Manrope', sans-serif;
        font-size: 0.88rem;
        color: #9ca3af;
        line-height: 1.6;
      }
      .demo-trial__cta {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 16px 40px;
        background: #66ff7e;
        color: #111827;
        border-radius: 12px;
        font-family: 'Manrope', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s;
      }
      .demo-trial__cta:hover {
        background: #52e86a;
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(102,255,126,0.25);
      }

      /* === SOCIAL PROOF === */
      .demo-proof {
        padding: 80px 2rem;
        background: #f9fafb;
      }
      .demo-proof__container {
        max-width: 1100px;
        margin: 0 auto;
      }
      .demo-proof__title {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: #111827;
        text-align: center;
        margin-bottom: 3rem;
      }
      .demo-proof__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
      .demo-proof__card {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        padding: 2rem;
        transition: all 0.3s;
      }
      .demo-proof__card:hover {
        box-shadow: 0 8px 32px rgba(0,0,0,0.06);
        transform: translateY(-2px);
      }
      .demo-proof__stars {
        display: flex;
        gap: 2px;
        margin-bottom: 1rem;
      }
      .demo-proof__star {
        width: 18px;
        height: 18px;
        fill: #f59e0b;
      }
      .demo-proof__quote {
        font-family: 'Manrope', sans-serif;
        font-size: 0.92rem;
        color: #374151;
        line-height: 1.7;
        margin-bottom: 1.25rem;
        font-style: italic;
      }
      .demo-proof__author {
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }
      .demo-proof__author-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Manrope', sans-serif;
        font-size: 0.82rem;
        font-weight: 700;
        color: #374151;
      }
      .demo-proof__author-name {
        font-family: 'Manrope', sans-serif;
        font-size: 0.88rem;
        font-weight: 700;
        color: #111827;
      }
      .demo-proof__author-role {
        font-family: 'Manrope', sans-serif;
        font-size: 0.78rem;
        color: #6b7280;
      }

      /* === STATS BAR === */
      .demo-stats {
        padding: 60px 2rem;
        background: #fff;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
      }
      .demo-stats__container {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        text-align: center;
      }
      .demo-stats__item-number {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 2.5rem;
        font-weight: 800;
        color: #111827;
        line-height: 1;
        margin-bottom: 0.5rem;
      }
      .demo-stats__item-number span {
        color: #66ff7e;
      }
      .demo-stats__item-label {
        font-family: 'Manrope', sans-serif;
        font-size: 0.88rem;
        color: #6b7280;
        font-weight: 500;
      }

      /* === FAQ === */
      .demo-faq {
        padding: 80px 2rem;
        background: #fff;
      }
      .demo-faq__container {
        max-width: 720px;
        margin: 0 auto;
      }
      .demo-faq__title {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: #111827;
        text-align: center;
        margin-bottom: 2.5rem;
      }
      .demo-faq__item {
        border-bottom: 1px solid #e5e7eb;
      }
      .demo-faq__question {
        width: 100%;
        background: none;
        border: none;
        padding: 1.25rem 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        font-family: 'Manrope', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: #111827;
        text-align: left;
      }
      .demo-faq__question svg {
        width: 20px;
        height: 20px;
        stroke: #6b7280;
        fill: none;
        stroke-width: 2;
        transition: transform 0.3s;
        flex-shrink: 0;
      }
      .demo-faq__item.active .demo-faq__question svg {
        transform: rotate(180deg);
      }
      .demo-faq__answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }
      .demo-faq__answer-inner {
        padding: 0 0 1.25rem;
        font-family: 'Manrope', sans-serif;
        font-size: 0.92rem;
        color: #4b5563;
        line-height: 1.7;
      }
      .demo-faq__item.active .demo-faq__answer {
        max-height: 300px;
      }

      /* === FINAL CTA === */
      .demo-final {
        padding: 80px 2rem;
        background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf4 100%);
        text-align: center;
      }
      .demo-final__container {
        max-width: 640px;
        margin: 0 auto;
      }
      .demo-final__title {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        font-weight: 700;
        color: #111827;
        margin-bottom: 1rem;
      }
      .demo-final__desc {
        font-family: 'Manrope', sans-serif;
        font-size: 1.05rem;
        color: #4b5563;
        margin-bottom: 2rem;
        line-height: 1.7;
      }
      .demo-final__btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 16px 40px;
        background: #111827;
        color: #fff;
        border-radius: 12px;
        font-family: 'Manrope', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s;
      }
      .demo-final__btn:hover {
        background: #1f2937;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(17,24,39,0.2);
      }

      /* === RESPONSIVE === */
      @media (max-width: 968px) {
        .demo-hero {
          grid-template-columns: 1fr;
          min-height: auto;
          padding: 120px 1.5rem 60px;
          gap: 2.5rem;
        }
        .demo-hero__left { max-width: 100%; }
        .demo-trial__grid { grid-template-columns: 1fr; }
        .demo-proof__grid { grid-template-columns: 1fr; }
        .demo-stats__container { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
      }
      @media (max-width: 600px) {
        .demo-form__row { grid-template-columns: 1fr; }
        .demo-form-card { padding: 1.5rem; }
        .demo-stats__container { grid-template-columns: 1fr; }
        .demo-hero { padding: 110px 1rem 80px; }
        .demo-hero__title {
          font-size: clamp(1.8rem, 7vw, 2.4rem);
          overflow-wrap: break-word;
          word-break: break-word;
          hyphens: auto;
          -webkit-hyphens: auto;
        }
        .demo-hero__trust {
          flex-direction: column;
          align-items: flex-start;
          gap: 0.75rem;
        }
        .demo-hero__trust-avatars {
          flex-shrink: 0;
        }
        .demo-hero__trust-text {
          font-size: 0.8rem;
        }
      }

.demo-rotating-word{display:inline-block;transition:opacity 0.3s ease,transform 0.3s ease;}

