/* sigeAssist · Produktseite — Paketwahl, Kauf-Karte, Leistungsumfang */

/* ── Hero ── */
.product-hero {
  padding: 48px 0 72px;
  background: linear-gradient(180deg, var(--accent-faint) 0%, var(--surface) 42%);
}
@media (max-width: 700px) { .product-hero { padding: 32px 0 56px; } }

.crumbs {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--t4); margin-bottom: 28px;
}
.crumbs a { color: var(--t3); transition: color .15s; }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { opacity: .45; }
.crumbs .cur { color: var(--t1); font-weight: 600; }

.pkg-switch {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px;
  padding: 6px; background: var(--surface); border: 1px solid var(--bd);
  border-radius: 14px; box-shadow: var(--sh1); width: fit-content; max-width: 100%;
}
.pkg-switch button,
.pkg-switch .pkg-tab {
  position: relative; border: none; background: transparent; color: var(--t3);
  font-size: 14.5px; font-weight: 700; padding: 10px 18px; border-radius: 10px;
  transition: background .15s, color .15s, box-shadow .15s;
  text-decoration: none; display: inline-flex; align-items: center; cursor: pointer;
}
.pkg-switch button:hover,
.pkg-switch .pkg-tab:hover { color: var(--t1); background: var(--surface-2); }
.pkg-switch button.active,
.pkg-switch .pkg-tab.active {
  background: var(--grad); color: #fff; box-shadow: 0 4px 12px var(--accent-shadow);
}
.pkg-switch .dot {
  position: absolute; top: 6px; right: 6px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 2px #fff;
}

.product-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start;
}
@media (max-width: 960px) {
  .product-grid { grid-template-columns: 1fr; }
  .buy-card { order: -1; }
}

.product-info h1 {
  font-size: clamp(32px, 4.5vw, 48px); font-weight: 800; margin-top: 14px;
}
.product-info .target {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 10px;
  font-size: 14.5px; font-weight: 600; color: var(--t3);
}
.product-info .desc {
  font-size: 18px; color: var(--t3); margin-top: 18px; line-height: 1.65; max-width: 620px;
}

.includes {
  margin-top: 32px; padding: 24px; background: var(--surface);
  border: 1px solid var(--bd); border-radius: 18px; box-shadow: var(--sh1);
}
.includes .k { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--t4); margin-bottom: 14px; }
.includes ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.includes li { display: flex; gap: 11px; font-size: 15px; color: var(--t2); line-height: 1.45; }
.includes .ck {
  width: 24px; height: 24px; border-radius: 8px; background: var(--accent-2-faint);
  border: 1px solid var(--accent-2-pale); display: flex; align-items: center; justify-content: center;
  color: var(--accent-2-dk); font-size: 14px; flex-shrink: 0;
}
.includes .foot { font-size: 13px; color: var(--t4); margin-top: 16px; line-height: 1.55; }

.product-micro {
  display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 28px;
  font-size: 13.5px; font-weight: 600; color: var(--t3);
}
.product-micro span { display: inline-flex; align-items: center; gap: 7px; }
.product-micro .ic { color: var(--accent-2-dk); font-size: 17px; }

/* ── Kauf-Karte ── */
.buy-card {
  background: var(--surface); border: 1px solid var(--bd); border-radius: 22px;
  padding: 28px 26px; box-shadow: var(--sh2); position: sticky; top: 24px;
}
.buy-card.pop { border: 2px solid var(--accent); box-shadow: var(--sh3); }
.buy-card .pop-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 11.5px; font-weight: 800;
  padding: 4px 12px; border-radius: 999px; letter-spacing: .03em;
  box-shadow: 0 4px 10px var(--accent-shadow); white-space: nowrap;
}
.buy-card .head .pname { font-size: 20px; font-weight: 800; color: var(--t1); }
.buy-card .head .ptarget { font-size: 13px; color: var(--t4); margin-top: 3px; }

.bill-toggle {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin: 22px 0 18px;
  padding: 5px; background: var(--surface-2); border: 1px solid var(--bd); border-radius: 12px;
}
.bill-toggle button {
  border: none; background: transparent; font-size: 13.5px; font-weight: 700;
  color: var(--t3); padding: 10px 8px; border-radius: 9px; transition: background .15s, color .15s;
}
.bill-toggle button.active { background: var(--surface); color: var(--t1); box-shadow: var(--sh1); }
.bill-toggle .save {
  display: inline-block; margin-left: 4px; font-size: 10.5px; font-weight: 800;
  color: var(--accent-2-dk); background: var(--accent-2-faint); border: 1px solid var(--accent-2-pale);
  padding: 1px 6px; border-radius: 6px; vertical-align: middle;
}

.buy-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.buy-price .amt { font-size: 42px; font-weight: 800; color: var(--t1); letter-spacing: -0.03em; }
.buy-price .per { font-size: 15px; color: var(--t4); font-weight: 600; }
.buy-note { font-size: 13px; color: var(--t4); margin-top: 6px; }

.buy-card hr { border: none; border-top: 1px solid var(--bd); margin: 20px 0; }

.buy-feats { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; }
.buy-feats li { display: flex; gap: 9px; font-size: 14px; color: var(--t2); line-height: 1.4; }
.buy-feats .ic { color: var(--accent-2-dk); font-size: 17px; flex-shrink: 0; margin-top: 1px; }

.buy-cta { display: flex; flex-direction: column; gap: 10px; }
.buy-cta .btn { width: 100%; }
.buy-micro { text-align: center; font-size: 12.5px; color: var(--t4); margin-top: 12px; font-weight: 600; }

.pay-row {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 18px;
  font-size: 12.5px; color: var(--t4); font-weight: 600;
}
.pay-row span { display: inline-flex; align-items: center; gap: 5px; }

.guarantee {
  display: flex; gap: 12px; margin-top: 20px; padding: 14px;
  background: var(--accent-faint); border: 1px solid var(--accent-pale); border-radius: 14px;
}
.guarantee .ic { color: var(--accent); font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.guarantee .tx { font-size: 13px; color: var(--t3); line-height: 1.5; }
.guarantee .tx b { color: var(--t1); }

/* ── Leistungsumfang ── */
.scope-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 920px) { .scope-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .scope-grid { grid-template-columns: 1fr; } }

.scope {
  position: relative; background: var(--surface); border: 1px solid var(--bd);
  border-radius: 18px; padding: 24px 22px; box-shadow: var(--sh1);
  transition: opacity .2s, border-color .2s, transform .18s, box-shadow .18s;
}
.scope .ico {
  width: 46px; height: 46px; border-radius: 13px; background: var(--grad);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-size: 22px; box-shadow: 0 5px 14px var(--accent-shadow); margin-bottom: 14px;
}
.scope h3 { font-size: 17px; font-weight: 700; }
.scope p { font-size: 14px; color: var(--t3); margin-top: 8px; line-height: 1.55; }
.scope .state { display: none; }

.scope.included { border-color: var(--accent-2-pale); }
.scope.included .state {
  display: block; position: absolute; top: 14px; right: 14px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--green-bg);
  border: 1px solid var(--green-bd);
}
.scope.included .state::after {
  content: ''; position: absolute; inset: 5px;
  border: solid var(--green); border-width: 0 2px 2px 0; transform: rotate(45deg);
}

.scope.locked {
  opacity: .55; cursor: pointer;
}
.scope.locked:hover {
  opacity: .75; transform: translateY(-2px); box-shadow: var(--sh2);
}
.scope.locked::before {
  content: 'In größerem Paket'; position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  color: var(--t4); background: var(--surface-2); border: 1px solid var(--bd);
  padding: 3px 8px; border-radius: 6px;
}

/* ── Paketvergleich ── */
.ptable-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ptable {
  width: 100%; min-width: 720px; border-collapse: collapse;
  background: var(--surface); border: 1px solid var(--bd); border-radius: 18px;
  box-shadow: var(--sh2); overflow: hidden;
}
.ptable th, .ptable td { padding: 15px 18px; text-align: center; border-bottom: 1px solid var(--bd); font-size: 14px; }
.ptable thead th { background: var(--surface-2); font-weight: 700; color: var(--t1); vertical-align: bottom; }
.ptable thead th:first-child { text-align: left; }
.ptable .thp { display: block; font-size: 11.5px; font-weight: 600; color: var(--t4); margin-top: 4px; }
.ptable .plan-col-link {
  color: inherit; text-decoration: none; font-weight: inherit;
}
.ptable .plan-col-link:hover { color: var(--accent); text-decoration: underline; }
.ptable tbody td:first-child { text-align: left; }
.ptable .feat { font-weight: 600; color: var(--t1); }
.ptable .ic.yes { color: var(--green); font-size: 20px; }
.ptable .ic.no { color: var(--bd-md); font-size: 18px; }
.ptable tbody tr:last-child td { border-bottom: none; }
.ptable tfoot td { padding: 18px; background: var(--surface-2); border-bottom: none; }
.ptable tfoot .btn { width: 100%; font-size: 13.5px; height: 44px; }
.ptable th.col-active, .ptable td.col-active { background: var(--accent-faint); }
