    /* ================================================================
       Page Title — erbt h1-Default aus shared.css.
       ================================================================ */
    .page-title {
      text-align: center;
      background-color: var(--bg-white);
      padding: 1rem 1.5rem 1.5rem;
      margin: 0;
    }

    /* Sections: halber Abstand nach oben + unten zur Wave */
    .section {
      padding: 0.9rem 0 2.5rem;
    }

    /* ================================================================
       Channel-Cards (Meet / Write / Chat)
       ================================================================ */
    .channels {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
      max-width: 960px;
      margin: 0 auto;
    }
    .channel-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 1rem;
      padding: 2rem 1.25rem;
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 16px;
      cursor: pointer;
      text-align: center;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .channel-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(15, 23, 42, 0.10);
      border-color: rgba(59, 130, 246, 0.35);
    }
    .channel-card.active {
      border-color: var(--accent);
      box-shadow: 0 12px 32px rgba(59, 130, 246, 0.18);
    }
    .channel-card__icon {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 110px;
    }
    .channel-card__icon img {
      width: 96px;
      height: auto;
    }
    .channel-card h2 {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--text-primary);
      margin: 0;
    }
    .channel-card p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.5;
      margin: 0;
    }

    /* ================================================================
       Shared Content (Toggle-Sections)
       ================================================================ */
    .shared-content {
      max-width: 1000px;
      margin: 0 auto;
    }
    .toggle-section {
      display: none;
      animation: fxFadeIn 0.4s ease-out;
    }
    .toggle-section.active { display: block; }
    @keyframes fxFadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* TidyCal Embed */
    .tidycal-embed {
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 16px;
      overflow: hidden;
    }
    .tidycal-embed iframe {
      width: 100%;
      height: 700px;
      border: 0;
      display: block;
    }

    /* Contact Form */
    #kontakt-section {
      max-width: 760px;
      margin: 0 auto;
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 16px;
      padding: 2.25rem;
    }
    .form-title {
      text-align: center;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 1.5rem;
    }
    .form-group { margin-bottom: 1.25rem; }
    .form-group label {
      display: block;
      font-size: 0.9375rem;
      font-weight: 500;
      margin-bottom: 0.4rem;
      color: var(--text-primary);
    }
    .form-group label .required { color: #ef4444; margin-left: 2px; }
    .form-row-2col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
      width: 100%;
      padding: 0.7rem 0.85rem;
      border: 1px solid rgba(15, 23, 42, 0.18);
      border-radius: 8px;
      font-family: inherit;
      font-size: 1rem;
      line-height: 1.5;
      color: var(--text-primary);
      background: #fff;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
    }
    .form-group textarea {
      resize: vertical;
      min-height: 160px;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(15, 23, 42, 0.42); }

    .form-checkbox {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      margin-bottom: 1.5rem;
    }
    .form-checkbox input[type="checkbox"] {
      margin-top: 4px;
      flex-shrink: 0;
      accent-color: var(--accent);
    }
    .form-checkbox label {
      font-size: 0.875rem;
      line-height: 1.5;
      color: var(--text-secondary);
    }

    .form-submit {
      display: inline-block;
      background: var(--accent);
      color: #fff;
      border: 0;
      border-radius: 8px;
      padding: 0.75rem 1.75rem;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }
    .form-submit:hover { background: #2563eb; }
    .form-submit:active { background: #1d4ed8; }

    /* Chat-Hint Card */
    #chat-section .chat-hint {
      max-width: 640px;
      margin: 0 auto;
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 16px;
      padding: 2.25rem;
      text-align: center;
    }
    #chat-section .chat-hint h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      color: var(--text-primary);
    }
    #chat-section .chat-hint p {
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* ================================================================
       Responsive
       ================================================================ */
    @media (max-width: 1024px) {
      .page-title { padding: 0.75rem 1.5rem 1rem; }
      .channels { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
      .channel-card { padding: 1.5rem 1rem; }
      .channel-card__icon { height: 90px; }
      .channel-card__icon img { width: 80px; }
    }
    @media (max-width: 640px) {
      .channels { grid-template-columns: 1fr; max-width: 360px; }
      #kontakt-section { padding: 1.5rem; }
      .form-row-2col { grid-template-columns: 1fr; gap: 0; }
      .tidycal-embed iframe { height: 560px; }
    }

    /* ================================================================
       WPT-11: Gravity Form 29 (Kontaktformular) — match the former .form-* design 1:1
       ================================================================ */
    #gform_wrapper_29 .gform_fields { grid-column-gap: 1.25rem; grid-row-gap: 1.25rem; }
    #gform_wrapper_29 .gfield_label {
      font-family: inherit;
      font-size: 0.9375rem !important;
      font-weight: 500 !important;
      color: var(--text-primary);
      margin-bottom: 0.4rem !important;
    }
    #gform_wrapper_29 .gfield_required { color: #ef4444 !important; }
    /* Pflicht-Marker als rotes "*" statt "(erforderlich)"-Text — 1:1 wie die frühere .required */
    #gform_wrapper_29 .gfield_label .gfield_required_text { display: none !important; }
    #gform_wrapper_29 .gfield_label > .gfield_required::after { content: "*"; color: #ef4444; margin-left: 2px; }
    #gform_wrapper_29 .ginput_container input[type="text"],
    #gform_wrapper_29 .ginput_container input[type="email"],
    #gform_wrapper_29 .ginput_container textarea {
      width: 100% !important;
      padding: 0.7rem 0.85rem !important;
      border: 1px solid rgba(15, 23, 42, 0.18) !important;
      border-radius: 8px !important;
      font-family: inherit !important;
      font-size: 1rem !important;
      line-height: 1.5 !important;
      color: var(--text-primary) !important;
      background: #fff !important;
      box-shadow: none !important;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    #gform_wrapper_29 .ginput_container input:focus,
    #gform_wrapper_29 .ginput_container textarea:focus {
      outline: none;
      border-color: var(--accent) !important;
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18) !important;
    }
    #gform_wrapper_29 .ginput_container textarea { resize: vertical; min-height: 160px !important; }
    #gform_wrapper_29 input::placeholder,
    #gform_wrapper_29 textarea::placeholder { color: rgba(15, 23, 42, 0.42) !important; }

    /* Consent — match .form-checkbox */
    #gform_wrapper_29 .gfield--type-consent .ginput_container_consent {
      display: flex; align-items: flex-start; gap: 0.6rem;
    }
    #gform_wrapper_29 .gfield--type-consent input[type="checkbox"] {
      margin-top: 4px; flex-shrink: 0; accent-color: var(--accent); width: 13px; height: 13px;
    }
    #gform_wrapper_29 .gfield--type-consent label {
      font-size: 0.875rem !important; font-weight: 400 !important; line-height: 1.5; color: var(--text-secondary) !important;
    }
    #gform_wrapper_29 .gfield--type-consent a { color: var(--accent); text-decoration: underline; }

    /* Submit button — match .form-submit */
    #gform_wrapper_29 .gform_footer { margin: 1.5rem 0 0 0 !important; padding-top: 0 !important; }
    #gform_wrapper_29 .gform_footer input[type="submit"] {
      display: inline-block;
      background: var(--accent) !important;
      color: #fff !important;
      border: 0 !important;
      border-radius: 8px !important;
      padding: 0.75rem 1.75rem !important;
      font-family: inherit !important;
      font-size: 1rem !important;
      font-weight: 500 !important;
      width: auto !important;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }
    #gform_wrapper_29 .gform_footer input[type="submit"]:hover { background: #2563eb !important; }
