
    :root {
      --blue: #c8952e;
      --blue-dark: #171717;
      --bg: #f8f7f4;
      --text: #171717;
      --muted: #6f6a61;
      --radius-lg: 18px;
      --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.15);
    }




    .page {
      max-width: 1100px;
      margin: 0 auto;
      padding: 30px 18px 50px;
    }

    /* NEUE Struktur-Klassen */
    .page-container {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .prices-hero {
      background: linear-gradient(145deg, #ffffff 0, #f8f4ea 100%);
      border-radius: 26px;
      padding: 26px 24px;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148, 163, 184, 0.4);
      margin-top: 15px;
      margin-bottom: 16px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;
      max-width: none;
    }

    .prices-hero h1 {
      font-size: clamp(26px, 3vw, 32px);
      color: var(--blue-dark) !important;
      margin-bottom: 2px;
    }

    .hero-subtitle {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .price-promise {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) minmax(210px, 0.58fr);
      gap: 18px;
      align-items: center;
      width: 100%;
      padding: 14px 18px;
      color: #ffffff;
      background: linear-gradient(120deg, #111111 0%, #29251e 100%);
      border: 0;
      border-radius: 14px;
      box-shadow: 0 10px 24px rgba(2, 64, 141, 0.18);
    }

    .price-promise-badge {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 12px;
      border-radius: 9px;
      color: #171717;
      background: #d9ad4d;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.04em;
      white-space: nowrap;
    }

    .price-promise-title {
      display: block;
      margin-bottom: 2px;
      font-size: 16px;
      line-height: 1.3;
    }

    .price-promise-text {
      color: rgba(255, 255, 255, 0.88);
      font-size: 14px;
      line-height: 1.4;
    }

    .price-promise-terms {
      padding-left: 18px;
      color: rgba(255, 255, 255, 0.72);
      border-left: 1px solid rgba(255, 255, 255, 0.28);
      font-size: 12px;
      line-height: 1.45;
    }

    /* Verbesserte Suchfunktion */
    .search-container {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .search-box {
      position: relative;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .search-input {
      flex: 1;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: white;
      font-size: 15px;
      outline: none;
      box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
      padding-right: 45px;
      /* Platz für Clear-Button */
    }

    .search-input:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(11, 99, 209, 0.15);
    }

    .ghost-wrap {
      position: relative;
      flex: 1;
      min-width: 220px;
    }

    .ghost-text {
      position: absolute;
      inset: 0;
      padding: 10px 12px;
      border-radius: 999px;
      font-size: 15px;
      color: rgba(31, 41, 51, 0.35);
      pointer-events: none;
      white-space: pre;
      overflow: hidden;
      z-index: 1;
    }

    .ghost-prefix {
      color: transparent;
    }

    .ghost-tail {
      color: rgba(31, 41, 51, 0.35);
    }

    .ghost-input {
      position: relative;
      background: transparent;
      width: 100%;
    }

    .search-clear {
      position: absolute;
      right: 12px;
      background: none;
      border: none;
      padding: 4px 8px;
      cursor: pointer;
      color: var(--muted);
      font-size: 18px;
      transition: color 0.12s ease;
      z-index: 3;
    }

    .search-clear:hover {
      color: var(--text);
    }

    .search-meta {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .search-hint {
      font-size: 14px;
      color: var(--muted);
      min-height: 20px;
    }

    .search-examples {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .example-tag {
      font-size: 13px;
      padding: 4px 10px;
      background: rgba(148, 163, 184, 0.1);
      border-radius: 12px;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.12s ease;
    }

    .example-tag:hover {
      background: rgba(200, 149, 46, 0.14);
      color: var(--blue);
    }

    /* Info-Bereich */
    .search-info {
      background: rgba(255, 255, 255, 0.9);
      border: 1px dashed rgba(148, 163, 184, 0.65);
      border-radius: 22px;
      padding: 32px 24px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      margin-top: 8px;
      box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    }

    .search-info.hidden {
      display: none;
    }

    .info-icon {
      font-size: 40px;
      margin-bottom: 4px;
      opacity: 0.8;
    }

    .search-info h2 {
      font-size: clamp(18px, 2vw, 22px);
      color: var(--blue-dark);
      margin: 0;
    }

    .search-info p {
      color: var(--muted);
      line-height: 1.6;
      max-width: 500px;
    }

    .info-actions {
      display: flex;
      gap: 12px;
      margin-top: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .action-btn {
      padding: 10px 20px;
      background: var(--blue);
      color: white;
      border: none;
      border-radius: 999px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.15s ease;
      font-size: 14px;
    }

    .action-btn:hover {
      background: var(--blue-dark);
      transform: translateY(-1px);
    }

    .action-btn.secondary {
      background: transparent;
      color: var(--blue);
      border: 1px solid var(--blue);
    }

    .action-btn.secondary:hover {
      background: rgba(200, 149, 46, 0.14);
    }

    /* GRID CARDS */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 14px;
    }

    @media (max-width: 980px) {
      .cards-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 720px) {
      .cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 460px) {
      .cards-grid {
        grid-template-columns: 1fr;
      }
    }

    .device-card {
      background: rgba(255, 255, 255, 0.98);
      border-radius: 20px;
      border: 1px solid rgba(148, 163, 184, 0.35);
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
      overflow: hidden;
      transition: transform .12s ease, box-shadow .12s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .device-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
    }

    .card-top {
      padding: 16px 14px 10px;
      display: grid;
      place-items: center;
      gap: 8px;
      cursor: pointer;
      user-select: none;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .device-image {
      width: 100%;
      height: 170px;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at top, #f8fbff 0, #edf4ff 45%, #ffffff 100%);
      border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    }

    .device-image svg {
      width: 70%;
      height: 70%;
      opacity: .95;
    }

    .device-name {
      font-weight: 800;
      font-size: 15px;
      text-align: center;
      padding: 0 8px 6px;
      color: var(--text);
      min-height: 40px;
      display: grid;
      place-items: center;
    }

    .tap-hint {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 8px;
    }

    /* Details (Accordion) */
    .card-details {
      display: none;
      padding: 10px 12px 12px;
      border-top: 1px dashed rgba(148, 163, 184, 0.55);
      background: #fff;
      animation: fadeIn .15s ease;
    }

    .device-card.open .card-details {
      display: block;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-3px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .category-title {
      font-size: 0.92rem;
      font-weight: 800;
      color: var(--blue);
      margin: 10px 0 6px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 6px;
    }

    tbody tr:nth-child(odd) {
      background: #f3f4f6;
    }

    td {
      padding: 7px 8px;
      font-size: 0.92rem;
    }

    td.price {
      text-align: right;
      white-space: nowrap;
      font-weight: 700;
      color: var(--blue-dark);
    }

    /* Service-Grid (Variante 1 mit Icons) */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      margin-bottom: 8px;
    }

    @media (min-width: 900px) {
      .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .service-card {
      background: #f8fafc;
      border: 1px solid rgba(148, 163, 184, .35);
      border-radius: 12px;
      padding: 8px 9px;
      display: grid;
      grid-template-columns: 28px 1fr auto;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
    }

    .service-icon {
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: #f7f0df;
      color: var(--blue-dark);
      font-weight: 800;
      font-size: 14px;
    }

    .service-name {
      font-weight: 600;
      color: var(--text);
    }

    .service-price {
      font-weight: 800;
      color: var(--blue-dark);
      white-space: nowrap;
    }


    .no-services {
      font-size: 0.9rem;
      color: var(--muted);
      padding: 8px 10px;
      background: #f9fafb;
      border-radius: 10px;
      margin-bottom: 8px;
    }

    /* Services Layout wie Beispiel (zweispaltig mit Tabellen) */
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px 20px;
      margin-top: 8px;
    }

    @media (max-width: 900px) {
      .categories-grid {
        grid-template-columns: 1fr;
      }
    }

    .category-block {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .category-block .category-title {
      margin: 0 0 6px 0;
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--blue);
    }

    .services-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.92rem;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .services-table tr {
      border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    }

    .services-table tr:last-child {
      border-bottom: none;
    }

    .services-table td {
      padding: 8px 10px;
      vertical-align: middle;
    }

    .services-table td.name {
      color: var(--text);
      font-weight: 500;
    }

    .services-table td.price {
      text-align: right;
      white-space: nowrap;
      font-weight: 800;
      color: var(--blue-dark);
    }

    .services-table tr:nth-child(odd) {
      background: #f3f4f6;
    }

    .model-head {
      font-weight: 800;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: .04em;
      color: #111827;
      margin: 2px 0 8px;
      text-align: center;
    }

    /* Wenn nur ein Modell offen ist: volle Breite nutzen */
    .device-card.expanded {
      grid-column: 1 / -1;
      width: 100%;
      max-width: 100%;
    }

    .device-card.expanded .card-top {
      grid-template-columns: 1fr;
    }

    .device-card.expanded .card-details {
      padding: 14px 18px 18px;
    }

    /* Page Footer */
    .page-footer {
      margin-top: 32px;
      padding-top: 20px;
      border-top: 1px solid rgba(148, 163, 184, 0.3);
    }

    .status-message {
      font-size: 14px;
      color: var(--muted);
      text-align: center;
      padding: 8px;
      min-height: 24px;
    }

    .disclaimer {
      margin-top: 16px;
      padding: 12px 16px;
      background: rgba(148, 163, 184, 0.08);
      border-radius: 12px;
      font-size: 13px;
      color: var(--muted);
      text-align: center;
    }

    .disclaimer a {
      color: var(--blue);
      text-decoration: underline;
    }

    .disclaimer a:hover {
      color: var(--blue-dark);
    }

    /* Bessere Accessibility für interaktive Elemente */
    [role="button"]:focus,
    .search-input:focus,
    .action-btn:focus {
      outline: 2px solid var(--blue);
      outline-offset: 2px;
    }

    /* Responsive Verbesserungen */
    @media (max-width: 768px) {
      .price-promise {
        grid-template-columns: 1fr;
        gap: 9px;
        padding: 15px;
      }

      .price-promise-badge {
        width: fit-content;
        min-height: 32px;
        font-size: 12px;
      }

      .price-promise-title {
        font-size: 15px;
      }

      .price-promise-text {
        font-size: 13px;
      }

      .price-promise-terms {
        padding: 9px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.24);
        border-left: 0;
        font-size: 12px;
      }

      .search-box {
        flex-direction: column;
        align-items: stretch;
      }

      .search-box .search-clear {
        position: static;
        margin-top: 8px;
        align-self: flex-end;
      }

      .info-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .action-btn {
        width: 100%;
      }

      .search-examples {
        justify-content: center;
      }
    }

    /* Loading State */
    .loading {
      opacity: 0.7;
      pointer-events: none;
    }

    /* Close All Button */
    .close-all-btn {
      margin: 20px auto 0;
      display: block;
    }
  