  /* Superpowers Section */
  section.superpowers {
    background: var(--bg-light);
  }

  .sp-intro {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .sp-intro .section-title {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
  }

  .sp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(12, auto);
    column-gap: 1.25rem;
    row-gap: 0;
  }

  .sp-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 6;
    margin-bottom: 1.25rem;
  }

  .sp-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
  }

  .sp-card-header {
    background: linear-gradient(135deg, #0f4c75 0%, #1e293b 50%, #0f172a 100%);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  }

  .sp-emoji {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .sp-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
  }

  .sp-card-body {
    padding: 1rem 1.5rem;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    row-gap: 0;
    text-align: left;
  }

  .sp-label {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    color: #134e4a;
  }

  .sp-before {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0;
  }

  .sp-after {
    font-size: 0.8rem;
    color: var(--text-dark);
    line-height: 1.55;
    font-weight: 700;
    margin-top: 0;
  }

  .sp-divider {
    width: 100%;
    height: 1px;
    background: var(--border-light);
    margin: 0.5rem 0;
  }

  /* Anti-Course Section – Vergleichsboxen v3 */
  section.antikurs {
    background: var(--bg-light);
  }

  section.antikurs .section-subtitle {
    color: var(--text-muted);
  }

  .ak-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .ak-checklist li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .ak-check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    filter: invert(53%) sepia(98%) saturate(1960%) hue-rotate(187deg) brightness(98%) contrast(95%);
  }

  /* Case Section */
  section.case-teaser {
    background: #ffffff;
  }

  .case-content {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .case-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .case-visual img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
  }



  .case-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
  }

  .case-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }

  .case-highlight {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.55;
  }

  .case-takeaway {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(255,215,0,0.06) 100%);
    border-left: 4px solid var(--accent);
    border-radius: 0 10px 10px 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
  }

  /* Modules/Agenda – Agenda v2 (Two-column with large numbers) */
  section.modules {
    background: #0f172a;
  }

  section.modules .section-label {
    color: var(--accent-blue);
    background: none;
    padding: 0;
  }
  section.modules .section-title {
    color: #f1f5f9;
  }
  section.modules .section-subtitle {
    color: #94a3b8;
  }

  .agenda-v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .agenda-v2 .agenda-module {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    align-items: start;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

  .agenda-v2 .agenda-module:hover {
    border-color: rgba(148, 163, 184, 0.25);
    transform: translateY(-2px);
  }

  .agenda-v2 .agenda-number {
    font-size: 3rem;
    font-weight: 800;
    color: #34d399;
    line-height: 1;
    text-align: right;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .agenda-v2 .agenda-module:hover .agenda-number {
    transform: scale(1.15);
  }

  .agenda-v2 .agenda-content {
    padding-top: 0.25rem;
  }

  .agenda-v2 .agenda-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
  }

  .agenda-v2 .agenda-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 0.65rem;
  }

  .agenda-v2 .agenda-details {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.6;
  }

  .agenda-v2 .agenda-meta {
    font-size: 0.72rem;
    font-family: var(--font-body);
    color: #64748b;
    margin-bottom: 0.4rem;
  }

  /* Audience Section */
  section.audience {
    background: var(--bg-light);
  }

  .aud-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.25rem;
    margin-top: 3rem;
  }

  .aud-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
  }

  .aud-card-header {
    background: linear-gradient(135deg, #0f4c75 0%, #1e293b 50%, #0f172a 100%);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .aud-card .aud-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  .aud-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
  }

  .aud-card-body {
    padding: 1.25rem 1.5rem;
  }

  .aud-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* Trainer Section */
  section.trainer {
    background: #ffffff;
    overflow: hidden;
    padding-bottom: 0;
  }

  .trainer-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
    text-align: left;
    align-items: end;
  }

  .trainer-photo {
    align-self: end;
    margin-left: -3rem;
  }

  .trainer-photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom;
  }

  .trainer-info {
    padding-bottom: 3rem;
  }

  .trainer-name-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.2rem;
  }

  .trainer-linkedin {
    display: inline-flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.2s;
  }

  .trainer-linkedin:hover {
    opacity: 1;
  }

  .trainer-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
  }

  .trainer-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
  }

  .trainer-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }

  .trainer-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.25rem;
  }

  .trainer-stat {
    text-align: center;
  }

  .trainer-stat .num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
  }

  .trainer-stat .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-top: 0.15rem;
  }

  /* Pricing Section */
  section.pricing {
    background: var(--bg-light);
  }

  .ev-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .ev-card {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 1.5rem;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .ev-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.08);
  }

  .ev-date-block {
    text-align: center;
  }

  .ev-month {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-blue);
  }

  .ev-days {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
  }

  .ev-year {
    font-size: 0.7rem;
    color: #94a3b8;
  }

  .ev-info {
    text-align: left;
  }

  .ev-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
  }

  .ev-badge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-blue);
    vertical-align: middle;
  }

  .ev-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  .ev-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    width: fit-content;
  }

  .ev-guarantee-icon {
    font-weight: 800;
    font-size: 0.7rem;
  }

  .ev-right {
    text-align: right;
  }

  .ev-price-area {
    margin-bottom: 0.5rem;
  }

  .ev-price-line {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    justify-content: flex-end;
  }

  .ev-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
  }

  .ev-tax {
    font-size: 0.65rem;
    color: #94a3b8;
  }

  .ev-discount-info {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
  }

  .ev-discount-save {
    color: #059669;
    font-weight: 700;
  }

  .ev-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    align-items: center;
  }

  .ev-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .ev-qty-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
  }

  .ev-qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
  }

  .ev-qty-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: #f8fafc;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    font-family: var(--font-body);
  }

  .ev-qty-btn:hover:not(:disabled) {
    background: #e2e8f0;
  }

  .ev-qty-btn:disabled {
    color: #cbd5e1;
    cursor: default;
  }

  .ev-qty-value {
    width: 32px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    line-height: 34px;
  }

  .btn-ev {
    display: inline-block;
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
  }

  .btn-ev.primary {
    background: var(--accent);
    color: #0f172a;
  }

  .btn-ev.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
  }

  .btn-ev.outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
  }

  .btn-ev.outline:hover {
    border-color: var(--text-muted);
  }

  .ev-card-inhouse {
    display: block;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-color: rgba(148, 163, 184, 0.15);
    margin-top: 1rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  }

  .ev-card-inhouse:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.15);
  }

  .ev-card-inhouse .ev-title {
    color: #f1f5f9;
  }

  .ev-card-inhouse .ev-meta {
    color: #94a3b8;
  }

  .ev-card-inhouse .ev-price {
    color: #f1f5f9;
  }

  .ev-card-inhouse .ev-tax {
    color: #64748b;
  }

  .ev-card-inhouse .ev-days {
    color: #f1f5f9;
  }

  .ev-date-block-inhouse {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .ev-inhouse-svg {
    width: 54px;
    height: 54px;
    filter: brightness(0) invert(1);
    margin-bottom: 0.15rem;
  }

  .ev-badge-inhouse {
    background: rgba(14, 165, 233, 0.2);
    color: #38bdf8;
  }

  .ev-card-inhouse .ev-guarantee {
    background: rgba(5, 150, 105, 0.15);
    color: #34d399;
  }

  .ev-inhouse-top {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }

  .ev-inhouse-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .ev-inhouse-expand.open {
    max-height: 900px;
  }

  .ev-inhouse-expand-inner {
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 1.5rem;
    text-align: left;
  }

  .ev-inhouse-expand-inner h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 0.4rem;
  }

  .ev-inhouse-expand-inner p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }

  .ev-inhouse-expand-inner .kontakt-form-wrap {
    max-width: 480px;
  }

  /* Lernreise Signup */
  .lr-signup {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lr-cta-text {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
  }

  .lr-signup .wpcf7-form p {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
  }

  .lr-signup .wpcf7-form p br {
    display: none;
  }

  .lr-signup input[type="email"] {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #fff;
    width: 260px;
    max-width: 100%;
    outline: none;
    transition: border-color 0.2s;
    height: 2.55rem;
    box-sizing: border-box;
  }

  .lr-signup input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.35);
  }

  .lr-signup input[type="email"]:focus {
    border-color: var(--accent-blue);
  }

  .lr-signup input[type="submit"] {
    background: var(--accent);
    color: #0F172A;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 2.55rem;
  }

  .lr-signup input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  }

  .lr-signup .wpcf7-response-output {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0.4rem 0 0;
    padding: 0;
    border: none;
    width: 100%;
    text-align: center;
  }

  .lr-signup label {
    color: #e2e8f0;
    font-size: 0.85rem;
  }

  /* Badge Section */
  section.badge-section {
    background: #ffffff;
  }

  .badge-container {
    max-width: 900px;
    margin: 2.5rem auto 0;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2.5rem;
    align-items: center;
    background: linear-gradient(135deg, #0f4c75 0%, #1e293b 50%, #0f172a 100%);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 18px;
    padding: 2.5rem;
  }

  .badge-img {
    width: 100%;
    max-width: 180px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.25)) drop-shadow(0 0 80px rgba(255, 255, 255, 0.15));
  }

  .badge-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
  }

  .badge-text p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.7;
  }

  .badge-container--eu {
    margin-top: 1.5rem;
  }

  .badge-container--eu .badge-img {
    filter: drop-shadow(0 0 15px rgba(52, 211, 153, 0.5)) drop-shadow(0 0 40px rgba(52, 211, 153, 0.25)) drop-shadow(0 0 80px rgba(52, 211, 153, 0.15));
  }

  /* Learning Journey */
  section.lernreise {
    background: #0f172a;
  }

  section.lernreise .section-title {
    color: #ffffff;
  }

  .lr-box {
    max-width: 680px;
    margin: 2.5rem auto 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 2.5rem;
    text-align: center;
    overflow: hidden;
  }

  .lr-box h3 {
    color: #34d399;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    text-align: center;
  }

  .lr-icon {
    display: block;
    width: 2.8em;
    height: 2.8em;
    margin: 0 auto 0.5rem;
    filter: brightness(0) invert(1);
  }

  .lr-box p {
    color: #94a3b8;
    margin-bottom: 1.75rem;
    line-height: 1.65;
    font-size: 0.95rem;
  }

  /* FAQ – Card Style */
  section.faq {
    background: var(--bg-light);
  }

  .faq-list {
    max-width: 780px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .faq-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .faq-item:hover {
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.06);
  }

  .faq-q {
    padding: 1.25rem 1.5rem;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
    transition: color 0.2s;
  }

  .faq-q:hover {
    color: var(--accent-blue);
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 300;
    line-height: 1;
  }

  .faq-item.open .faq-icon {
    background: var(--accent-blue);
    color: #ffffff;
    transform: rotate(45deg);
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .faq-item.open .faq-a {
    max-height: 500px;
  }

  .faq-a-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.9rem;
    text-align: left;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
  }

  /* SEO Section */
  article {
    max-width: 780px;
    margin: 0 auto;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
  }

  article h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
  }

  article p {
    margin-bottom: 1rem;
  }


  /* ══ Swipe Dots (shown only ≤1024px via JS) ══ */
  .swipe-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
  }

  .swipe-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .swipe-dot.active {
    background: var(--accent-blue);
    transform: scale(1.3);
  }

  /* Dots auf dunklem Hintergrund (Agenda + Testimonials) */
  section.modules .swipe-dot,
  section.home-testimonials .swipe-dot {
    background: rgba(255, 255, 255, 0.2);
  }

  section.modules .swipe-dot.active,
  section.home-testimonials .swipe-dot.active {
    background: var(--accent-blue);
  }


  /* ══ Responsive ══ */

  /* ── Tablet (≤1024px) ── */
  @media(max-width: 1024px) {

    /* Swipe Dots sichtbar */
    .swipe-dots {
      display: flex;
    }

    /* Alle Swipe-Container */
    .sp-grid,
    .aud-grid,
    .agenda-v2,
    .testimonial-grid {
      display: flex !important;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      gap: 1rem;
      padding-bottom: 0.5rem;
      max-width: none;
    }

    .sp-grid::-webkit-scrollbar,
    .aud-grid::-webkit-scrollbar,
    .agenda-v2::-webkit-scrollbar,
    .testimonial-grid::-webkit-scrollbar {
      display: none;
    }

    /* SP + Audience: 2 Karten nebeneinander sichtbar */
    .sp-card {
      min-width: calc(50% - 0.5rem);
      max-width: calc(50% - 0.5rem);
      scroll-snap-align: start;
      margin-bottom: 0;
      display: flex;
      flex-direction: column;
      grid-row: auto;
      grid-template-rows: none;
      box-shadow: none;
    }

    .sp-card-body {
      display: flex;
      flex-direction: column;
      grid-row: auto;
      grid-template-rows: none;
      flex: 1;
    }

    .aud-card {
      min-width: calc(50% - 0.5rem);
      max-width: calc(50% - 0.5rem);
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
      grid-row: auto;
      grid-template-rows: none;
      box-shadow: none;
    }

    /* Agenda: 1 Karte pro Screen */
    .agenda-v2 .agenda-module {
      min-width: 100%;
      max-width: 100%;
      scroll-snap-align: start;
      flex-shrink: 0;
    }

    /* Trainer: iPad – kleiner neben Text */
    .trainer-layout {
      grid-template-columns: 180px 1fr;
      gap: 1.5rem;
    }

    .trainer-photo {
      margin-left: 0;
      align-self: end;
    }

    .trainer-photo img {
      max-height: 280px;
      object-fit: contain;
      object-position: bottom;
    }

    .trainer-stats {
      justify-content: flex-start;
    }

    /* Case: Stack */
    .case-content {
      grid-template-columns: 1fr;
    }

    /* Event Cards: Tablet-Layout */
    .ev-card {
      grid-template-columns: 100px 1fr;
      gap: 1rem;
    }

    .ev-right {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      text-align: left;
      padding-top: 0.5rem;
      border-top: 1px solid var(--border-light);
    }

    .ev-price-line {
      justify-content: flex-start;
    }

    .ev-actions {
      flex-wrap: wrap;
    }

    /* Badge: Stack */
    .badge-container,
    .badge-container--eu {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .badge-img {
      margin: 0 auto;
    }
  }

  /* ── Mobile (≤768px) ── */
  @media(max-width: 768px) {
    body.nav-top .container {
      margin-left: auto;
    }

    /* Alle Dots sichtbar auf Mobile */
    .swipe-dots {
      display: flex;
    }

    /* SP + Audience + Agenda: Swipe — eine Karte pro Screen */
    .sp-grid,
    .aud-grid {
      display: flex !important;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      gap: 2rem;
      padding-bottom: 0.5rem;
      max-width: none;
    }

    .sp-grid::-webkit-scrollbar,
    .aud-grid::-webkit-scrollbar {
      display: none;
    }

    .sp-card {
      min-width: 100%;
      max-width: 100%;
      scroll-snap-align: start;
      box-shadow: none;
    }

    .aud-card {
      min-width: 100%;
      max-width: 100%;
      scroll-snap-align: start;
      box-shadow: none;
    }

    /* Trainer: Bild komplett weg */
    .trainer-layout {
      grid-template-columns: 1fr;
    }

    .trainer-photo {
      display: none;
    }

    .trainer-stats {
      justify-content: center;
    }

    /* Event Cards: 1 Spalte, zentriert */
    .ev-card {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .ev-right {
      flex-direction: column;
      align-items: center;
      text-align: center;
      border-top: none;
      padding-top: 0;
    }

    .ev-info { text-align: center; }
    .ev-guarantee { margin-left: auto; margin-right: auto; }
    .ev-price-line { justify-content: center; }
    .ev-actions { justify-content: center; flex-wrap: wrap; }

    .ev-inhouse-top {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .ev-card-inhouse .ev-date-block {
      display: flex;
      flex-direction: row;
      gap: 0.5rem;
      justify-content: center;
    }

    .ev-inhouse-expand-inner {
      text-align: center;
    }
  }

  @media(max-width: 600px) {
    section {
      padding: 4rem 1.25rem;
    }

    .hero {
      padding: 5rem 1.25rem 3rem;
    }

    .lr-box {
      padding: 2rem 1.5rem;
    }

    .lr-signup .wpcf7-form p {
      flex-direction: column;
      align-items: stretch;
    }

    .lr-signup input[type="email"] {
      width: 100%;
    }

    .lr-signup input[type="submit"] {
      width: 100%;
    }

    .case-content {
      gap: 2rem;
    }
  }

  /* ══ Footer ══ */
  .site-footer {
    background: #0f172a;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding: 2rem 0;
    margin-top: 0;
  }

  .footer-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 2rem;
  }

  .footer-links {
    position: absolute;
    left: 2rem;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.2s ease;
  }

  .footer-links a:hover {
    color: #ffffff;
  }

  .footer-newsletter {
    text-align: left;
  }

  .footer-nl-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
  }

  .footer-nl-form .wpcf7-form p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* CF7 inserts a <br> between input and submit — hide it */
  .footer-nl-form .wpcf7-form p br {
    display: none;
  }

  .footer-nl-form input[type="email"],
  .footer-nl-form input[type="text"] {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #fff;
    width: 220px;
    outline: none;
    transition: border-color 0.2s;
  }

  .footer-nl-form input[type="email"]::placeholder,
  .footer-nl-form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.35);
  }

  .footer-nl-form input[type="email"]:focus,
  .footer-nl-form input[type="text"]:focus {
    border-color: var(--accent-blue);
  }

  .footer-nl-form input[type="submit"] {
    background: var(--accent-blue);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }

  .footer-nl-form input[type="submit"]:hover {
    background: #0284c7;
  }

  .footer-nl-form .wpcf7-response-output {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0.4rem 0 0;
    padding: 0;
    border: none;
  }

  /* ══ Homepage: Hero variant ══ */
  .hero-home {
    background-image: url('../img/hero.webp');
    background-position: center center;
  }

  /* ══ Homepage: Logo Band ══ */
  section.logos {
    background: #ffffff;
    padding: 2.5rem 2rem;
  }

  section.logos .section-label {
    margin-bottom: 1.5rem;
  }

  .logo-band {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .logo-band img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: all 0.3s ease;
  }

  .logo-band img:hover {
    filter: grayscale(0%);
    opacity: 1;
  }

  /* ══ Homepage: Training Duo ══ */
  section.home-trainings {
    background: var(--bg-light);
  }

  .training-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .training-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
  }

  .training-card:hover {
    border-color: rgba(14, 165, 233, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.1);
  }

  .training-card-header {
    padding: 1.75rem 1.5rem;
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    min-height: 140px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 100%),
                url('../img/digital-user-story-wall.webp') center/cover no-repeat;
  }

  .training-card-header-cspo {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 100%),
                url('../img/cspo-training.webp') center/cover no-repeat;
  }

  .training-header-badge {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    flex-shrink: 0;
  }

  .training-card-header h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
  }

  .training-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .training-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
  }

  .training-meta {
    font-size: 0.72rem;
    color: #94a3b8;
    margin-bottom: 1rem;
  }

  .training-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-blue);
    transition: color 0.2s;
  }

  .training-card:hover .training-link {
    color: #0284c7;
  }

  /* ══ Homepage: Testimonials ══ */
  section.home-testimonials {
    background: #0f172a;
  }

  section.home-testimonials .section-label {
    color: var(--accent-blue);
  }

  section.home-testimonials .section-title {
    color: #f1f5f9;
  }

  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
    min-width: calc(33.333% - 0.84rem);
    max-width: calc(33.333% - 0.84rem);
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
  }

  /* AI card: same style as others */

  .testimonial-body {
    flex: 1;
    margin-bottom: 1.25rem;
  }

  .testimonial-topic {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-blue);
    margin-bottom: 0.75rem;
  }

  .testimonial-quote {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.7;
    font-style: italic;
  }

  .testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .testimonial-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
  }

  .testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f1f5f9;
  }

  .testimonial-role {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.15rem;
  }

  /* Testimonial-Dots immer sichtbar (Karussell auf allen Breakpoints) */
  section.home-testimonials .swipe-dots {
    display: flex;
  }

  /* Testimonial dots on dark bg */
  section.home-testimonials .swipe-dot {
    background: rgba(255, 255, 255, 0.2);
  }

  section.home-testimonials .swipe-dot.active {
    background: var(--accent-blue);
  }

  /* ══ Homepage: Trainer ohne Bild ══ */
  .trainer-layout-noimage {
    display: block;
    max-width: 700px;
  }

  section.trainer:has(.trainer-layout-noimage) .container {
    text-align: left;
  }

  /* ══ Homepage: Kontakt ══ */
  section.home-kontakt {
    padding: 0;
    background: transparent;
  }

  .kontakt-bg {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
  }

  .kontakt-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 90% center;
  }

  .kontakt-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 45%, transparent 100%);
    z-index: 1;
  }

  .kontakt-inner {
    position: relative;
    z-index: 2;
    width: 38%;
    min-width: 340px;
    padding: 3rem 2.5rem;
  }

  .kontakt-title {
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
  }

  .kontakt-form-wrap {
    background: rgba(15, 23, 42, 0.92);
    border-radius: var(--radius);
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .kontakt-form-wrap input[type="text"],
  .kontakt-form-wrap input[type="email"],
  .kontakt-form-wrap textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #f1f5f9;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 0.65rem;
    outline: none;
    transition: border-color 0.2s;
  }

  .kontakt-form-wrap input::placeholder,
  .kontakt-form-wrap textarea::placeholder {
    color: #94a3b8;
  }

  .kontakt-form-wrap input:focus,
  .kontakt-form-wrap textarea:focus {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.1);
  }

  .kontakt-form-wrap textarea {
    min-height: 90px;
    resize: vertical;
  }

  .kontakt-form-wrap input[type="submit"] {
    width: 100%;
    padding: 0.7rem 1rem;
    background: var(--accent);
    color: #0F172A;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .kontakt-form-wrap input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  }

  .kontakt-form-wrap .wpcf7-form p {
    margin: 0;
  }

  .kontakt-form-wrap label {
    color: #e2e8f0;
    font-size: 0.85rem;
  }

  .kontakt-form-wrap .wpcf7 form .wpcf7-response-output {
    font-size: 0.8rem;
    color: #e2e8f0;
    margin: 0.5rem 0 0;
    padding: 0.5rem;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.15);
  }
  .kontakt-form-wrap .wpcf7 form.sent .wpcf7-response-output,
  .lr-signup .wpcf7 form.sent .wpcf7-response-output {
    color: #34d399;
    border-color: #34d399;
    border-radius: 6px;
  }

  /* ══ Homepage: CF7 Placeholder (Preview) ══ */
  .cf7-placeholder {
    background: #f8fafc;
    border: 2px dashed var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
  }

  /* ══ Homepage Responsive ══ */
  @media (max-width: 1024px) {
    .testimonial-card {
      min-width: calc(50% - 0.5rem);
      max-width: calc(50% - 0.5rem);
      scroll-snap-align: start;
    }
  }

  @media (max-width: 768px) {
    .training-duo {
      grid-template-columns: 1fr;
      max-width: 400px;
    }

    .testimonial-card {
      min-width: 100%;
      max-width: 100%;
    }

    .logo-band {
      gap: 1.5rem 2rem;
    }

    .logo-band img {
      height: 22px;
    }

    .kontakt-bg {
      min-height: auto;
      background-position: top right;
    }

    .kontakt-inner {
      width: 100%;
      min-width: 0;
      padding: 2rem 1.25rem;
    }

    .kontakt-text {
      text-align: left;
    }
  }

  /* ══════════════════════════════════════
     CSPO PAGE
     ══════════════════════════════════════ */

  /* ══ CSPO Banner ══ */
  .cspo-banner {
    margin-top: var(--nav-height);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    background: url('../img/header%20certified%20scrum%20product%20owner%20training.webp') left center/cover no-repeat;
  }

  .cspo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.5) 30%,
      rgba(0, 0, 0, 0.55) 70%,
      rgba(0, 0, 0, 0.3) 100%);
  }

  .cspo-banner-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .cspo-banner-text {
    flex: 1;
    text-align: center;
  }

  .cspo-banner-badge {
    width: 120px;
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  }

  .cspo-banner h1 {
    font-family: var(--font-body);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-bottom: 0.75rem;
  }

  .cspo-banner .hero-word {
    display: inline-block;
  }

  .cspo-banner .hero-word.accent {
    color: #2af598;
  }

  .cspo-banner .hero-tagline {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 1.25rem;
    line-height: 1.5;
  }

  .cspo-banner .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  @media (max-width: 768px) {
    .cspo-banner {
      background-position: 25% center;
      padding: 2rem 1.25rem;
    }

    .cspo-banner-inner {
      flex-direction: column;
      position: relative;
    }

    .cspo-banner-badge {
      position: absolute;
      top: 0;
      right: 0;
      width: 52px;
      height: 52px;
    }

    .cspo-banner h1 {
      font-size: 1.8rem;
    }

    .cspo-banner .hero-tagline {
      font-size: 0.9rem;
    }

    .cspo-banner .hero-actions {
      flex-direction: row;
      justify-content: center;
    }

    .cspo-banner .hero-actions .btn {
      font-size: 0.8rem;
      padding: 0.6rem 1rem;
    }
  }

  /* ══ CSPO Rating Bar ══ */
  .cspo-rating-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 1.5rem 1.25rem;
    text-align: center;
  }
  .cspo-rating-bar a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: transform 0.2s;
  }
  .cspo-rating-bar a:hover {
    transform: scale(1.02);
  }
  .cspo-rating-bar-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  .cspo-rating-bar-stars {
    display: flex;
    gap: 3px;
    color: #ffd700;
    font-size: 1.3rem;
    line-height: 1;
  }
  .cspo-rating-bar-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-body);
  }
  .cspo-rating-bar-count {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
  }
  .cspo-rating-bar-quote {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-top: 0.75rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
  }
  .cspo-rating-bar-source {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .cspo-rating-bar {
      padding: 1.25rem 1rem;
    }
    .cspo-rating-bar-top {
      flex-wrap: wrap;
    }
    .cspo-rating-bar-score {
      font-size: 1.25rem;
    }
    .cspo-rating-bar-stars {
      font-size: 1.1rem;
    }
    .cspo-rating-bar-quote {
      font-size: 0.85rem;
    }
  }

  /* ══ Training Subnav (horizontal, sticky below header) ══ */
  /* scroll-padding-top wird jetzt über --header-height in base.css gesteuert */

  .training-subnav {
    position: sticky;
    top: var(--nav-height);
    z-index: 800;
    background: rgba(15, 23, 42, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-top: var(--nav-height); /* Clears fixed nav when subnav is first element (AI page) */
  }

  /* Subnav nach Banner (CSPO) — Banner hat schon margin-top */
  .cspo-banner + .training-subnav {
    margin-top: 0;
  }

  /* Hero nach Subnav (AI) — Subnav hat schon margin-top */
  .training-subnav + .hero {
    margin-top: 0;
  }

  .training-subnav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
  }

  .training-subnav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #34d399;
    transition: width 0.3s;
  }

  .training-subnav a:hover {
    color: #34d399;
  }

  .training-subnav a:hover::after,
  .training-subnav a.active::after {
    width: 70%;
  }

  .training-subnav a.active {
    color: #34d399;
  }

  .training-subnav-cta {
    color: #34d399 !important;
    font-weight: 700 !important;
  }

  @media (max-width: 768px) {
    .training-subnav {
      overflow-x: auto;
      scrollbar-width: none;
      justify-content: flex-start;
      -webkit-overflow-scrolling: touch;
    }

    .training-subnav::-webkit-scrollbar {
      display: none;
    }

    .training-subnav a {
      font-size: 0.78rem;
      padding: 0.65rem 0.75rem;
    }
  }

  /* ══ Highlights ══ */
  section.highlights {
    background: var(--bg-light);
  }

  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .highlight-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s;
  }

  .highlight-card:hover {
    border-color: var(--accent-blue);
  }

  .highlight-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .highlight-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
  }

  .highlight-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ══ CSPO Agenda (3-Block Layout) ══ */
  .section-prose {
    font-size: 1.1rem;
    color: #8a8a9a;
    line-height: 1.6;
    margin-top: 0.75rem;
    margin-bottom: 0;
  }

  .opt3-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .opt3-block {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
  }

  .opt3-header {
    padding: 1rem 1.25rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .opt3-header-1 { background: #34d399; }
  .opt3-header-2 { background: #2fbe8a; }
  .opt3-header-3 { background: #2aa97a; }

  .opt3-num {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    margin-bottom: 0.2rem;
  }

  .opt3-header h3 {
    font-size: 1rem;
    font-weight: 700;
  }

  .opt3-topics {
    padding: 1rem 1.25rem;
  }

  .opt3-topic {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f5;
  }

  .opt3-topic:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .opt3-topic-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
  }

  .opt3-topic-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* ══ CSPO Testimonials (Karussell) ══ */
  section.cspo-testimonials {
    background: var(--bg-light);
  }

  .cspo-testi-grid {
    display: flex;
    gap: 1.25rem;
    margin-top: 2.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }

  .cspo-testi-grid::-webkit-scrollbar {
    display: none;
  }

  .cspo-testi-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem 1.75rem 1.5rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: calc(33.333% - 0.85rem);
    max-width: calc(33.333% - 0.85rem);
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  .cspo-testi-card:hover {
    border-color: #c0c0cc;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }

  .cspo-testi-card::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
    font-size: 4rem;
    line-height: 1;
    color: var(--accent-blue);
    opacity: 0.2;
    font-family: Georgia, serif;
    pointer-events: none;
  }

  .cspo-testi-quote {
    font-size: 0.88rem;
    color: #3a3a4e;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin-bottom: 1.25rem;
    margin-top: 1.5rem;
  }

  .cspo-testi-quote-big {
    font-size: 2rem;
    font-style: normal;
    display: flex;
    align-items: center;
    margin-top: 0;
  }

  .cspo-testi-stars {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    align-self: flex-start;
    margin-top: auto;
  }

  section.cspo-testimonials .swipe-dots {
    display: flex;
  }

  @media (max-width: 1024px) {
    .cspo-testi-card {
      min-width: calc(50% - 0.625rem);
      max-width: calc(50% - 0.625rem);
    }
  }

  @media (max-width: 768px) {
    .cspo-testi-card {
      min-width: 100%;
      max-width: 100%;
    }
  }

  /* ══ Trainingsort ══ */
  section.trainingsort {
    background: var(--bg-light);
  }

  .ort-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .ort-img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }

  /* ══ CSPO Responsive ══ */
  @media (max-width: 1024px) {
    .highlights-grid {
      display: flex !important;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      gap: 1rem;
      padding-bottom: 0.5rem;
    }

    .highlights-grid::-webkit-scrollbar {
      display: none;
    }

    .highlight-card {
      min-width: calc(50% - 0.5rem);
      max-width: calc(50% - 0.5rem);
      flex-shrink: 0;
      scroll-snap-align: start;
    }

    .opt3-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .opt3-header h3 br {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .highlight-card {
      min-width: 100%;
      max-width: 100%;
    }

    .ort-images {
      grid-template-columns: 1fr;
    }
  }

  /* ══ Footer ══ */
  @media (max-width: 768px) {
    .footer-inner {
      flex-direction: column;
      gap: 1.5rem;
      padding: 0 1.25rem;
    }

    .footer-links {
      position: static;
    }

    .footer-links a {
      font-size: 0.85rem;
    }

    .footer-newsletter {
      order: -1;
    }

    .footer-nl-form .wpcf7-form {
      flex-direction: column;
    }

    .footer-nl-form .wpcf7-form p {
      flex-direction: column;
      align-items: stretch;
    }

    .footer-nl-form input[type="email"],
    .footer-nl-form input[type="text"] {
      width: 100%;
    }
  }

  /* ══════════════════════════════════════════════════
     Legal Pages (Impressum, AGB, Datenschutz)
     ══════════════════════════════════════════════════ */

  .legal-banner {
    margin-top: var(--nav-height);
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/panorama-muenchen.webp') center/cover no-repeat;
    overflow: hidden;
  }

  .legal-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.55) 100%);
  }

  .legal-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
  }

  .legal-banner h1 {
    font-family: var(--font-body);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  }

  .legal-content {
    padding: 3rem 2rem 4rem;
  }

  .legal-content .container {
    max-width: 780px;
    text-align: left;
  }

  .legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .legal-content h2:first-child {
    margin-top: 0;
  }

  .legal-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .legal-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
  }

  .legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .legal-content li {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
  }

  .legal-content a {
    color: var(--accent-blue);
    text-decoration: none;
  }

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

  .legal-updated,
  .legal-generator {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
  }

  @media (max-width: 768px) {
    .legal-banner {
      height: 200px;
    }

    .legal-content {
      padding: 2rem 1.25rem 3rem;
    }
  }

  /* ══════════════════════════════════════
     BLOG
     ══════════════════════════════════════ */

  /* ══ Blog Banner ══ */
  .blog-banner {
    margin-top: var(--nav-height);
    position: relative;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }

  .blog-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
  }

  .blog-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.3) 50%, transparent 100%);
  }

  .blog-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-bottom: 2rem;
  }

  .blog-banner-slug {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
  }

  .blog-banner h1 {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
  }

  /* ══ Blog Grid (Übersichtsseite) ══ */
  .blog-listing {
    background: var(--bg-light);
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .blog-listing .container,
  .home-blog .container,
  .about-blog .container {
    max-width: 1300px;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    text-align: left;
  }

  .blog-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
  }

  .blog-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
  }

  .blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b, #0f4c75);
  }

  .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .blog-card-image.blog-card-image-contain {
    background: #f0f2f5;
  }

  .blog-card-image-contain img {
    object-fit: contain;
    padding: 0.5rem;
  }

  .blog-card:hover .blog-card-image img {
    transform: scale(1.04);
  }

  .blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.78rem;
    color: var(--text-muted);
  }

  .blog-card-tag {
    background: rgba(52, 211, 153, 0.12);
    color: #059669;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .blog-card h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 0.6rem;
  }

  .blog-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
  }

  .blog-card-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-top: 1rem;
    transition: color 0.2s;
  }

  .blog-card:hover .blog-card-link {
    color: #2563eb;
  }

  @media (max-width: 768px) {
    .blog-grid {
      grid-template-columns: 1fr;
      max-width: 480px;
      margin: 0 auto;
    }

    .blog-card-image {
      height: 180px;
    }

    .blog-banner {
      height: 220px;
    }

    .blog-banner-slug {
      font-size: 0.75rem;
    }
  }

  /* ══ Blog Post (Einzelartikel) ══ */
  .blog-post-banner {
    margin-top: var(--nav-height);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 3.5rem 2rem 2.5rem;
    min-height: 300px;
    overflow: hidden;
  }

  .blog-post-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
  }

  .blog-post-meta-top {
    margin-bottom: 1.5rem;
  }

  .blog-back-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }

  .blog-back-link:hover {
    color: #34d399;
  }

  .blog-post-banner h1 {
    font-family: var(--font-body);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }

  .blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
  }

  /* ══ Blog Post Layout (TOC fixed links, Body zentriert) ══ */
  article.blog-post {
    padding: 1.5rem 2rem 4rem;
  }

  .blog-post-layout {
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
  }

  /* ══ Blog TOC (fixed am linken Viewport-Rand) ══ */
  .blog-toc {
    position: fixed;
    top: calc(var(--nav-height) + 2rem);
    left: max(1rem, calc((100vw - 680px) / 2 - 240px));
    width: 190px;
    z-index: 100;
    opacity: 0;
    transform: translateX(-8px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .blog-toc.blog-toc-visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .blog-toc-inner {
    display: flex;
    flex-direction: column;
  }

  .blog-toc-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    padding-left: 0.75rem;
  }

  .blog-toc-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-left: 2px solid var(--border-light);
    line-height: 1.4;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
  }

  .blog-toc-link:hover {
    color: var(--text-dark);
  }

  .blog-toc-link.active {
    color: #047857;
    font-weight: 700;
    border-left: 3px solid #34d399;
    background: rgba(52, 211, 153, 0.08);
    border-radius: 0 4px 4px 0;
  }

  /* Sub-Links (eingerückt) */
  .blog-toc-sub {
    display: flex;
    flex-direction: column;
  }

  .blog-toc-sublink {
    padding-left: 1.5rem;
    font-size: 0.74rem;
  }

  /* ══ Blog Post Body ══ */
  .blog-post-body {
    max-width: 680px;
    text-align: left;
  }

  .blog-lead {
    font-size: 1.15rem;
    color: #5c5347;
    font-style: italic;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 2.5rem;
    padding: 0.8rem 1.2rem;
    background: #f5f0eb;
    border-left: 3px solid #c9b99a;
    border-radius: 2px;
  }

  .blog-post-body h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
  }

  .blog-post-body h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }

  .blog-post-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.25rem;
    margin-bottom: 0.6rem;
    padding-left: 0.75rem;
    border-left: 3px solid #34d399;
  }

  .blog-post-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #3a3a4e;
    margin-bottom: 1rem;
  }

  .blog-post-body ul,
  .blog-post-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }

  .blog-post-body li {
    font-size: 1rem;
    line-height: 1.8;
    color: #3a3a4e;
    margin-bottom: 0.35rem;
  }

  .blog-post-body blockquote {
    background: var(--bg-light);
    border-left: 3px solid #34d399;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
  }

  .blog-post-body a {
    color: var(--accent-blue);
    text-decoration: none;
  }

  .blog-post-body a:hover {
    text-decoration: underline;
  }

  /* Blog Figures */
  .blog-figure {
    margin: 1.5rem 0 2rem;
  }

  .blog-figure img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border-light);
  }

  .blog-figure figcaption {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    line-height: 1.5;
  }

  .blog-figure figcaption a {
    color: var(--text-muted);
    border-bottom: 1px dotted var(--border-light);
    text-decoration: none;
  }

  .blog-figure figcaption a:hover {
    color: var(--accent-blue);
    text-decoration: none;
  }

  .blog-post-body strong {
    color: var(--text-dark);
  }

  /* Video (Click-to-Play) */
  .blog-video {
    margin: 2rem 0 0.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0f172a;
    position: relative;
    cursor: pointer;
  }

  .blog-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .blog-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s, filter 0.2s;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  }

  .blog-video:hover .blog-video-play {
    transform: translate(-50%, -50%) scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  }

  .blog-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset: 0;
  }

  .blog-video-fallback {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
  }

  .blog-video-fallback a {
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px dotted var(--border-light);
    transition: color 0.2s;
  }

  .blog-video-fallback a:hover {
    color: var(--accent-blue);
  }

  /* Sources */
  .blog-sources {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
  }

  .blog-sources h2 {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
  }

  .blog-sources ol {
    padding-left: 1.25rem;
  }

  .blog-sources li {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* Author Box */
  .blog-author-box {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .blog-author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
  }

  .blog-author-box p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 0;
  }

  /* Blog Callout Box */
  .blog-callout {
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    background: rgba(52, 211, 153, 0.08);
    border-left: 4px solid #34d399;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
  }
  .blog-callout a {
    display: inline-block;
    margin-top: 0.5rem;
    color: #34d399;
    font-weight: 600;
    text-decoration: none;
  }
  .blog-callout a:hover {
    text-decoration: underline;
  }

  /* Newsletter CTA (lr-box Style) */
  .blog-newsletter-cta {
    margin-top: 3rem;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    overflow: hidden;
  }

  .blog-newsletter-icon {
    display: block;
    width: 2.8em;
    height: 2.8em;
    margin: 0 auto 1rem;
    filter: brightness(0) invert(1);
  }

  .blog-newsletter-cta h3 {
    color: #34d399;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    border-left: none;
    padding-left: 0;
  }

  .blog-newsletter-cta p {
    color: #94a3b8;
    margin-bottom: 1.75rem;
    line-height: 1.65;
    text-align: center;
  }

  .blog-newsletter-form .wpcf7-form p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
  }

  .blog-newsletter-form .wpcf7-form p br {
    display: none;
  }

  .blog-newsletter-form input[type="email"] {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: #ffffff;
    font-size: 0.9rem;
    width: 260px;
    transition: border-color 0.2s;
  }

  .blog-newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.35);
  }

  .blog-newsletter-form input[type="email"]:focus {
    border-color: #34d399;
    outline: none;
  }

  .blog-newsletter-form input[type="submit"] {
    background: var(--accent);
    color: #0F172A;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
  }

  .blog-newsletter-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  }

  .blog-newsletter-form .wpcf7-response-output {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0.4rem 0 0;
    padding: 0;
    border: none;
    text-align: center;
  }

  /* Next Article */
  .blog-next {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: var(--radius);
    text-align: center;
  }

  .blog-next-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
  }

  .blog-next-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: #34d399;
    text-decoration: none;
    transition: color 0.2s;
  }

  .blog-next-link:hover {
    color: #5eeab4;
  }

  @media (max-width: 1200px) {
    .blog-toc {
      display: none;
    }
  }

  @media (max-width: 768px) {

    .blog-post-banner {
      padding: 2.5rem 1.25rem 2rem;
    }

    .blog-post-banner h1 {
      font-size: 1.5rem;
    }

    article.blog-post {
      padding: 2rem 1.25rem 3rem;
    }

    .blog-post-body h2 {
      font-size: 1.2rem;
    }

    .blog-post-body p,
    .blog-post-body li {
      font-size: 0.95rem;
    }

    .blog-author-box {
      flex-direction: column;
      text-align: center;
    }
  }

  /* ══════════════════════════════════════
     NEWSLETTER PAGE
     ══════════════════════════════════════ */

  .newsletter-signup {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    text-align: left;
  }

  .newsletter-pitch h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .newsletter-pitch ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.25rem;
  }

  .newsletter-pitch li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #3a3a4e;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
  }

  .newsletter-pitch li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
  }

  .newsletter-pitch > p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .newsletter-form-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
  }

  .newsletter-form-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #34d399;
    margin-bottom: 0.5rem;
  }

  .newsletter-form-subtitle {
    font-size: 0.88rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
  }

  .newsletter-form-card input[type="email"] {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #f1f5f9;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 1rem;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
  }

  .newsletter-form-card input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.35);
  }

  .newsletter-form-card input[type="email"]:focus {
    border-color: #34d399;
    background: rgba(255, 255, 255, 0.1);
  }

  .newsletter-form-card input[type="submit"] {
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: var(--accent);
    color: #0F172A;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .newsletter-form-card input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  }

  .newsletter-form-card .wpcf7-form p {
    margin: 0;
  }

  .newsletter-form-card .wpcf7 form .wpcf7-response-output {
    font-size: 0.8rem;
    color: #e2e8f0;
    margin: 0.5rem 0 0;
    padding: 0.5rem;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.15);
  }

  .newsletter-form-card .wpcf7 form.sent .wpcf7-response-output {
    color: #34d399;
    border-color: #34d399;
  }

  @media (max-width: 768px) {
    .newsletter-content {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  }

  /* ══ Homepage: Blog-Teaser ══ */
  section.home-blog {
    background: var(--bg-light);
  }

  .home-blog .blog-grid {
    margin-top: 2rem;
  }

  /* ══ Termin-Buchung ══ */

  .termin-section {
    padding: 3rem 0 4rem;
    background: var(--bg-light);
  }

  .termin-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    align-items: start;
  }

  .termin-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .termin-sidebar {
    position: sticky;
    top: 5rem;
  }

  .termin-option {
    display: block;
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    color: var(--text-primary);
  }

  .termin-option:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }

  .termin-option.active {
    border-color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.06);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
  }

  .termin-option-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .termin-option-header svg {
    color: var(--accent-gold);
    flex-shrink: 0;
  }

  .termin-option-title {
    font-weight: 600;
    font-size: 1rem;
  }

  .termin-option-duration {
    margin-left: auto;
    font-size: 0.8rem;
    font-weight: 600;
    color: #92400e;
    background: rgba(255, 215, 0, 0.2);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
  }

  .termin-option p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
  }

  .termin-calendar {
    min-height: 600px;
  }

  .termin-cal-panel {
    display: none;
  }

  .termin-cal-panel.active {
    display: block;
  }

  /* TidyCal-Branding (im Iframe) abschneiden */
  .termin-cal-panel {
    overflow: hidden;
  }

  .termin-cal-panel iframe {
    margin-bottom: -340px;
  }

  @media (max-width: 768px) {
    .termin-layout {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .termin-sidebar {
      position: static;
    }
  }

  /* =============================================
     About Page
     ============================================= */

  /* About Hero */
  .about-hero {
    margin-top: var(--nav-height);
    padding: 5rem 0 2rem;
    background: var(--bg-light);
    text-align: center;
  }

  .about-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-intro-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 1rem auto 0;
    line-height: 1.7;
  }

  /* Hero Avatar Collage */
  .about-hero-avatars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 2rem;
    position: relative;
    height: 120px;
  }

  .about-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0 -10px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .about-avatar:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 10 !important;
  }

  .about-avatar-center {
    width: 110px;
    height: 110px;
    border: 4px solid var(--accent);
    z-index: 5;
    margin: 0 -6px;
  }

  .about-avatar-mid {
    width: 85px;
    height: 85px;
    z-index: 3;
  }

  .about-avatar-back {
    width: 68px;
    height: 68px;
    z-index: 1;
    opacity: 0.9;
  }

  /* Founder Section */
  .about-founder {
    padding: 4rem 0;
    background: #ffffff;
  }

  .about-founder-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
  }

  .about-founder-photo img {
    width: 100%;
    border-radius: var(--radius);
    aspect-ratio: 1;
    object-fit: cover;
  }

  .about-founder-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 0.4rem;
  }

  .about-founder-info {
    position: relative;
    text-align: left;
  }

  .about-founder-info h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
  }

  .about-founder-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
  }

  .about-founder-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }

  .about-founder-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.25rem;
    justify-content: center;
  }

  .about-founder-linkedin {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(10, 102, 194, 0.08);
    transition: background 0.2s, transform 0.2s;
  }

  .about-founder-linkedin:hover {
    background: rgba(10, 102, 194, 0.15);
    transform: translateY(-2px);
  }

  .about-founder-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(10, 102, 194, 0.08);
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
  }

  .about-founder-linkedin:hover {
    background: rgba(10, 102, 194, 0.15);
    transform: translateY(-2px);
  }

  /* Outline button for light backgrounds */
  .about-cta .btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border-light);
  }

  .about-cta .btn-outline:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
  }

  /* Team Grid */
  .about-team {
    padding: 4rem 0;
    background: var(--bg-light);
  }

  .about-team .section-title {
    text-align: center;
  }

  .about-team .section-label {
    text-align: center;
  }

  .about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .about-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }

  .about-card-photo {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f0f0f4;
  }

  .about-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
  }

  .about-card:hover .about-card-photo img {
    transform: scale(1.03);
  }

  .about-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .about-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
  }

  .about-card-role {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 0.6rem;
  }

  .about-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
  }

  /* About CTA */
  .about-cta {
    padding: 4rem 0;
    background: #ffffff;
    text-align: center;
  }

  .about-cta h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
  }

  .about-cta p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }

  .about-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Newsletter pulse highlight — 3x langsam weiß */
  @keyframes newsletter-glow {
    0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    5%   { box-shadow: 0 0 25px 12px rgba(255, 255, 255, 0.45); }
    17%  { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    22%  { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    27%  { box-shadow: 0 0 28px 14px rgba(255, 255, 255, 0.5); }
    44%  { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    50%  { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    55%  { box-shadow: 0 0 30px 16px rgba(255, 255, 255, 0.55); }
    72%  { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
  }

  .newsletter-pulse {
    animation: newsletter-glow 6s ease-in-out;
    border-radius: 12px;
  }

  /* About Blog Teaser */
  .about-blog {
    padding: 4rem 0;
    background: var(--bg-light);
  }

  .about-blog .section-title,
  .about-blog .section-label {
    text-align: center;
  }

  .about-blog .blog-grid {
    margin-top: 2rem;
  }

  /* About Responsive */
  @media (max-width: 1024px) {
    .about-team-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 1rem;
      padding-bottom: 0.5rem;
      margin-top: 2.5rem;
    }

    .about-team-grid .about-card {
      flex: 0 0 calc(50% - 0.5rem);
      scroll-snap-align: start;
    }

    .about-team .swipe-dots {
      margin-top: 1.2rem;
    }
  }

  @media (max-width: 768px) {
    .about-team-grid .about-card {
      flex: 0 0 100%;
    }

    .about-hero {
      padding: 3rem 0 1.5rem;
    }

    .about-hero-avatars {
      height: 90px;
    }

    .about-avatar-center {
      width: 80px;
      height: 80px;
    }

    .about-avatar-mid {
      width: 60px;
      height: 60px;
    }

    .about-avatar-back {
      width: 50px;
      height: 50px;
    }

    .about-founder-layout {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .about-founder-photo {
      max-width: 280px;
      margin: 0 auto;
    }

    .about-founder-info {
      text-align: center;
    }

    .about-founder-linkedin {
      position: static;
      margin: 0 auto 1rem;
    }

    .about-cta-actions {
      flex-direction: column;
      align-items: center;
    }
  }

  /* ═══════════════════════════════════════════
     Team Chat Landing Page
     ═══════════════════════════════════════════ */

  /* Hero */
  .tc-hero {
    margin-top: var(--nav-height);
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f4c75 100%);
    text-align: center;
  }

  .tc-hero .section-label {
    color: #34d399;
  }

  .tc-hero .section-title {
    color: #ffffff;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
  }

  .tc-hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 580px;
    margin: 1rem auto 0;
    line-height: 1.7;
  }

  /* Video */
  .tc-video {
    padding: 3rem 2rem 4rem;
    background: linear-gradient(to bottom, #0f172a 0%, var(--bg-light) 40%);
  }

  .tc-video-wrap {
    position: relative;
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    padding-top: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  .tc-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  .tc-video-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* What Section */
  .tc-what {
    padding: 4rem 0;
    background: var(--bg-light);
  }

  .tc-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
  }

  .tc-feature {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .tc-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }

  .tc-feature-icon {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f4c75;
    margin-bottom: 0.75rem;
    line-height: 1;
  }

  .tc-feature h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .tc-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
  }

  /* Team Grid */
  .tc-team {
    padding: 4rem 0;
    background: #ffffff;
  }

  .tc-team-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .tc-agent {
    text-align: center;
    transition: transform 0.3s;
  }

  .tc-agent:hover {
    transform: translateY(-4px);
  }

  .tc-agent img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    border: 3px solid var(--border-light);
    transition: border-color 0.3s;
  }

  .tc-agent:hover img {
    border-color: var(--accent-blue);
  }

  .tc-agent-info {
    margin-top: 0.6rem;
  }

  .tc-agent-info h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
  }

  .tc-agent-info span {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  /* How it works */
  .tc-how {
    padding: 4rem 0;
    background: var(--bg-light);
  }

  .tc-stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    text-align: left;
  }

  .tc-stack-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .tc-stack-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }

  .tc-stack-num {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #34d399;
    line-height: 1;
    margin-bottom: 0.75rem;
  }

  .tc-stack-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .tc-stack-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
  }

  /* Open Source */
  .tc-opensource {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f4c75 100%);
    text-align: center;
  }

  .tc-opensource .section-title {
    color: #ffffff;
  }

  .tc-opensource .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
  }

  .tc-install {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
  }

  .tc-install-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #34d399;
    margin-bottom: 0.5rem;
  }

  .tc-install-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
  }

  .tc-install-code {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 1.25rem 1.75rem;
    font-size: 1.1rem;
    font-style: italic;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .tc-install-code a {
    color: #34d399;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .tc-install-code a:hover {
    color: #6ee7b7;
  }

  .tc-install-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.75rem;
  }

  .tc-os-actions {
    margin-top: 2rem;
  }

  /* CTA */
  .tc-cta {
    padding: 4rem 0;
    background: #ffffff;
    text-align: center;
  }

  .tc-cta h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
  }

  .tc-cta p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
  }

  .tc-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .tc-cta .btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border-light);
  }

  .tc-cta .btn-outline:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
  }

  /* Team Chat Responsive */
  @media (max-width: 1024px) {
    .tc-feature-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .tc-team-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 1.25rem;
      padding-bottom: 0.5rem;
    }

    .tc-agent {
      flex: 0 0 80px;
      scroll-snap-align: start;
    }
  }

  @media (max-width: 768px) {
    .tc-hero {
      padding: 3.5rem 0 1.5rem;
    }

    .tc-video {
      padding: 0 1rem 3rem;
    }

    .tc-feature-grid {
      grid-template-columns: 1fr;
    }

    .tc-stack-grid {
      grid-template-columns: 1fr;
    }

    .tc-team-grid {
      gap: 1rem;
    }

    .tc-agent {
      flex: 0 0 70px;
    }

    .tc-cta-actions {
      flex-direction: column;
      align-items: center;
    }
  }

  /* ══ Doodle / Terminabstimmung ══ */

  .doodle-section {
    padding: 3rem 0 4rem;
    background: var(--bg-light);
  }

  .doodle-layout {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .doodle-text h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .doodle-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #3a3a4e;
    margin-bottom: 1rem;
  }

  .doodle-hint {
    font-weight: 600;
    color: var(--text-dark) !important;
  }

  .doodle-form-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
  }

  .doodle-form-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #34d399;
    margin-bottom: 0.5rem;
  }

  .doodle-form-subtitle {
    font-size: 0.88rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
  }

  .doodle-form-card input[type="text"],
  .doodle-form-card input[type="email"] {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #f1f5f9;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 1rem;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
  }

  .doodle-form-card input[type="text"]::placeholder,
  .doodle-form-card input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.35);
  }

  .doodle-form-card input[type="text"]:focus,
  .doodle-form-card input[type="email"]:focus {
    border-color: #34d399;
    background: rgba(255, 255, 255, 0.1);
  }

  .doodle-form-card .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
  }

  .doodle-form-card .wpcf7-checkbox .wpcf7-list-item {
    margin: 0;
  }

  .doodle-form-card .wpcf7-checkbox label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #e2e8f0;
    cursor: pointer;
    padding: 0.6rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: border-color 0.2s, background 0.2s;
  }

  .doodle-form-card .wpcf7-checkbox label:hover {
    border-color: rgba(52, 211, 153, 0.4);
    background: rgba(52, 211, 153, 0.05);
  }

  .doodle-form-card .wpcf7-checkbox input[type="checkbox"] {
    accent-color: #34d399;
    width: 18px;
    height: 18px;
    cursor: pointer;
  }

  .doodle-form-card input[type="submit"] {
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: var(--accent);
    color: #0F172A;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .doodle-form-card input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  }

  .doodle-form-card .wpcf7-form p {
    margin: 0;
  }

  .doodle-form-card .wpcf7 form .wpcf7-response-output {
    font-size: 0.8rem;
    color: #e2e8f0;
    margin: 0.5rem 0 0;
    padding: 0.5rem;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.15);
  }

  .doodle-form-card .wpcf7 form.sent .wpcf7-response-output {
    color: #34d399;
    border-color: #34d399;
  }

  @media (max-width: 768px) {
    .doodle-layout {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  }

  /* ══ Survey / Fragebogen ══ */

  .survey-section {
    padding: 3rem 0 4rem;
    background: var(--bg-light);
  }

  .survey-intro {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    text-align: center;
  }

  .survey-intro h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .survey-intro p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #3a3a4e;
    margin-bottom: 0.75rem;
  }

  .survey-hint {
    font-weight: 600;
    color: var(--text-dark) !important;
  }

  .survey-form-card {
    max-width: 680px;
    margin: 0 auto;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2.5rem 2rem;
  }

  .survey-form-card .survey-block {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .survey-form-card .survey-block:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
    padding-bottom: 0;
  }

  .survey-form-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #34d399;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
  }

  .survey-form-card p {
    margin: 0 0 0.75rem;
    color: #e2e8f0;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .survey-form-card strong {
    color: #f1f5f9;
  }

  .survey-form-card label {
    color: #e2e8f0;
    font-size: 0.92rem;
  }

  .survey-form-card input[type="text"],
  .survey-form-card input[type="email"],
  .survey-form-card textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #f1f5f9;
    background: rgba(255, 255, 255, 0.08);
    margin-top: 0.4rem;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
  }

  .survey-form-card textarea {
    min-height: 80px;
    resize: vertical;
  }

  .survey-form-card input[type="text"]::placeholder,
  .survey-form-card input[type="email"]::placeholder,
  .survey-form-card textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
  }

  .survey-form-card input[type="text"]:focus,
  .survey-form-card input[type="email"]:focus,
  .survey-form-card textarea:focus {
    border-color: #34d399;
    background: rgba(255, 255, 255, 0.1);
  }

  .survey-form-card select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #f1f5f9;
    background: rgba(255, 255, 255, 0.08);
    margin-top: 0.4rem;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
  }

  .survey-form-card select:focus {
    border-color: #34d399;
  }

  .survey-form-card .wpcf7-radio,
  .survey-form-card .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .survey-form-card .wpcf7-radio .wpcf7-list-item,
  .survey-form-card .wpcf7-checkbox .wpcf7-list-item {
    margin: 0;
  }

  .survey-form-card .wpcf7-radio label,
  .survey-form-card .wpcf7-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: #e2e8f0;
    cursor: pointer;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: border-color 0.2s, background 0.2s;
    line-height: 1.4;
  }

  .survey-form-card .wpcf7-radio label:hover,
  .survey-form-card .wpcf7-checkbox label:hover {
    border-color: rgba(52, 211, 153, 0.4);
    background: rgba(52, 211, 153, 0.05);
  }

  .survey-form-card .wpcf7-radio input[type="radio"],
  .survey-form-card .wpcf7-checkbox input[type="checkbox"] {
    accent-color: #34d399;
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    margin-top: 1px;
  }

  .survey-form-card input[type="submit"] {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--accent);
    color: #0F172A;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 0.5rem;
  }

  .survey-form-card input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  }

  .survey-form-card .wpcf7 form .wpcf7-response-output {
    font-size: 0.85rem;
    color: #e2e8f0;
    margin: 0.75rem 0 0;
    padding: 0.75rem;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.15);
  }

  .survey-form-card .wpcf7 form.sent .wpcf7-response-output {
    color: #34d399;
    border-color: #34d399;
  }

  /* Thank you card */
  .survey-thankyou-card {
    max-width: 680px;
    margin: 0 auto;
    background: #0f172a;
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
  }

  .survey-thankyou-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #34d399;
    margin-bottom: 0.75rem;
  }

  .survey-thankyou-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }

  .survey-thankyou-card strong {
    color: #f1f5f9;
  }

  .survey-thankyou-card hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
  }

  .survey-thankyou-card .btn-primary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--accent);
    color: #0F172A;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    margin: 1rem 0;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .survey-thankyou-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  }

  .survey-signoff {
    font-size: 0.9rem;
    color: #94a3b8 !important;
    margin-top: 1rem !important;
  }

  /* Progress bar */
  .survey-progress {
    max-width: 680px;
    margin: 0 auto 1.5rem;
  }

  .survey-progress-bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
  }

  .survey-progress-fill {
    height: 100%;
    background: #34d399;
    border-radius: 3px;
    transition: width 0.4s ease;
  }

  .survey-progress-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 0.4rem;
  }

  /* Step header inside form */
  .survey-step-header {
    display: none;
  }

  /* Wizard nav buttons */
  .survey-nav {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 1.5rem !important;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .btn-survey {
    padding: 0.7rem 2rem;
    background: var(--accent);
    color: #0F172A;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .btn-survey:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  }

  .btn-survey-outline {
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: #94a3b8;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-survey-outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #e2e8f0;
  }

  /* Voucher badge */
  .survey-voucher {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0;
    text-align: center;
  }

  .survey-voucher-badge {
    display: inline-block;
    background: #34d399;
    color: #0f172a;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0.4rem 1.2rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
  }

  .survey-voucher p {
    font-size: 0.9rem;
    margin: 0 !important;
  }

  /* Doodle card embedded in thank-you */
  .survey-doodle-card {
    max-width: 680px;
    margin: 2rem auto 0;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
  }

  .survey-doodle-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #34d399;
    margin-bottom: 0.75rem;
  }

  .survey-doodle-card p {
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
  }

  .survey-doodle-card strong {
    color: #f1f5f9;
  }

  .survey-doodle-form {
    text-align: left;
    margin-top: 1rem;
  }

  .survey-doodle-form .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
  }

  .survey-doodle-form .wpcf7-checkbox .wpcf7-list-item {
    margin: 0;
  }

  .survey-doodle-form .wpcf7-checkbox label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #e2e8f0;
    cursor: pointer;
    padding: 0.6rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: border-color 0.2s, background 0.2s;
  }

  .survey-doodle-form .wpcf7-checkbox label:hover {
    border-color: rgba(52, 211, 153, 0.4);
    background: rgba(52, 211, 153, 0.05);
  }

  .survey-doodle-form .wpcf7-checkbox input[type="checkbox"] {
    accent-color: #34d399;
    width: 18px;
    height: 18px;
    cursor: pointer;
  }

  .survey-doodle-form input[type="submit"] {
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: var(--accent);
    color: #0F172A;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .survey-doodle-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  }

  .survey-doodle-form .wpcf7 form .wpcf7-response-output {
    font-size: 0.8rem;
    color: #e2e8f0;
    margin: 0.5rem 0 0;
    padding: 0.5rem;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.15);
  }

  .survey-doodle-form .wpcf7 form.sent .wpcf7-response-output {
    color: #34d399;
    border-color: #34d399;
  }

  @media (max-width: 768px) {
    .survey-form-card {
      padding: 1.5rem 1.25rem;
    }
    .survey-doodle-card {
      padding: 1.5rem 1.25rem;
    }
  }
