/* components.css - Shared component styles (superpowers, anti-course, case, modules, audience, trainer, pricing, lernreise, badge, learning-journey, FAQ, SEO, swipe-dots) */

  /* 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;
  }


  /* ══ Carousel (horizontal scroll + snap) ══ */
  .carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1.25rem;
  }

  .carousel::-webkit-scrollbar { display: none; }

  .carousel > * {
    min-width: calc(33.333% - 0.84rem);
    max-width: calc(33.333% - 0.84rem);
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  /* Desktop-off: normales Layout auf Desktop, Carousel erst ab Tablet */
  .carousel--desktop-off {
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .carousel--desktop-off > * {
    min-width: unset;
    max-width: unset;
    scroll-snap-align: unset;
    flex-shrink: unset;
  }


  /* ══ Swipe Dots ══ */
  .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);
  }

