﻿/* =========================================================
   LANDING-PAGES.CSS
   Gemeinsame Styles für Produkt-/Landingpages
   (Privat, Zahnzusatz, Vermieter, Firmenrechtsschutz ...)
========================================================= */

/* =========================
   HERO / INNER BANNER
========================= */
/* =========================================================
   LANDING-PAGES.CSS
   Gemeinsame Styles für Produkt-/Landingpages
========================================================= */

/* =========================
   FONTS
========================= */



:root {

  --font-headline: "Sora", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-accent: "Poppins", sans-serif;
  --font-display: "Archivo", sans-serif;
  --font-ui: "Sora", sans-serif;

  --lp-primary: #2c6aa0;
  --lp-primary-2: #1585c9;
  --lp-primary-3: #7cc9ff;

  --lp-dark: #0f1724;
  --lp-dark-2: #13293d;
  --lp-dark-3: #18354a;

  --lp-text: #314255;
  --lp-text-soft: #5f6f80;
  --lp-line: #e6eef6;
  --lp-bg-soft: #f5f9fc;
  --lp-bg-soft-2: #eef5fb;
  --lp-success: #00b67a;
  --lp-danger: #cf4b4b;

  --lp-shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.05);
  --lp-shadow-md: 0 18px 40px rgba(15, 23, 42, 0.08);
  --lp-shadow-lg: 0 28px 60px rgba(0, 0, 0, 0.18);

  --lp-radius-sm: 18px;
  --lp-radius-md: 24px;
  --lp-radius-lg: 32px;
  --lp-radius-pill: 999px;
}

body {
  font-family: var(--font-body);
}
.banner-inner-section h1 {
  font-family: var(--font-headline);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.banner-inner-section {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
}

.banner-inner-section .container {
  position: relative;
  z-index: 1;
}

.banner-inner-section h1,
.banner-inner-section p,
.banner-inner-section a {
  position: relative;
  z-index: 2;
}

/* =========================
   SECTION INTRO / NUMBER BAR
========================= */

.section-number-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 8px 0;
}

.section-number-bar .badge {
  border-radius: 999px;
}

/* =========================
   CARDS SECTION
========================= */

.privat-cards-section {
  padding: 28px 0 52px;
  background: #ffffff;
}

.privat-cards-heading {
  max-width: 860px;
  margin: 0 auto 22px;
  text-align: center;
}

.privat-cards-heading h2 {
      font-family: var(--font-headline);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 400;
  color: var(--color-dark-2);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.privat-cards-heading .divider {
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: #7ab9df;
  margin: 0 auto 12px;
}

.privat-cards-heading p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-soft);
  margin: 0 auto;
  max-width: 720px;
}

/* =========================
   STATIC CARD ROW
========================= */

.privat-cards-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
  max-width: 1080px;
  margin: 0 auto;
}

/* =========================
   CARDS SLIDER
========================= */

.cards-slider-wrapper {
  position: relative;
  margin-top: 40px;
}

.cards-slider {
  overflow: hidden;
  padding: 10px 40px;
}

.cards-track {
  display: flex;
  gap: 18px;
  transition: transform 0.35s ease;
}

.card-wrap {
  flex: 0 0 auto;
}

.cards-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(180deg, #2c6aa0, #1f4e78);
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: 0.2s ease;
  z-index: 5;
}

.cards-arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

.cards-arrow.left {
  left: 0;
}

.cards-arrow.right {
  right: 0;
}

/* =========================
   LANDING PAGE CARDS
========================= */

.rs-card-link {
  display: block;
  width: 100%;
  text-decoration: none;
}

.rs-card {
  width: 100%;
  min-height: 300px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e6eef6;
  padding: 28px 24px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.rs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #2c6aa0;
}

.rs-card-details {
  color: #13293d;
  height: 100%;
  display: grid;
  align-content: start;
  gap: 12px;
  text-align: left;
}

.rs-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #eef5fb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.rs-card-icon iconify-icon {
  font-size: 26px;
  color: #2c6aa0;
  transition: transform 0.25s ease;
}

.rs-card-kicker {
  font-size: 12px;
     font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2c6aa0;
  margin: 0 0 6px 0;
}

.rs-text-title {
      font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.08;
  color: #0f1c2d;
  margin: 0 0 8px 0;
}

.rs-text-body {
  font-size: 15px;
  line-height: 1.45;
  color: #5b6b7c;
  margin: 0;
  max-width: 240px;
}

.rs-card-button {
  margin-top: 16px;
  align-self: flex-start;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 100%);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.25s ease;
  display: inline-block;
  box-shadow: 0 10px 18px rgba(0, 103, 166, 0.18);
}

.rs-card-link:hover .rs-card-button {
  opacity: 1;
  transform: translateY(0);
}

.rs-card-link:hover .rs-card-icon iconify-icon {
  transform: scale(1.08);
}

/* =========================
   DARK PROCESS / TARIF SECTION
========================= */

.prozess-section {
  background: var(--color-dark);
  color: #ffffff;
}

.prozess-section .border-line {
  border-color: rgba(255, 255, 255, 0.14);
}

.prozess-section .badge.text-bg-dark {
  background-color: var(--color-dark) !important;
  color: #ffffff !important;
}

.prozess-intro-text {
  max-width: 920px;
  margin-bottom: 28px !important;
}

.prozess-intro-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}

.prozess-intro-text p {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 18px;
}

/* =========================
   GENERIC LIGHT CONTENT CARD
========================= */

.prozess-card {
  max-width: 100%;
  width: 100%;
  margin-top: 6px;
  background: #f7f5f1;
  border-radius: 34px;
  padding: 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.20);
}

.prozess-head {
  margin-bottom: 24px;
  text-align: left;
}

.prozess-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.prozess-card h3 {
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--color-dark-2);
  margin: 0 0 10px;
}

.prozess-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #5b6675;
  margin: 0;
}

/* =========================
   PROCESS CALCULATOR (optional)
========================= */

.prozess-form-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 220px;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

.prozess-input-wrap label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #18354a;
  margin-bottom: 8px;
}

.prozess-input-wrap input {
  width: 100%;
  height: 60px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #ffffff;
  padding: 0 26px;
  font-size: 24px;
  color: var(--color-dark-2);
  outline: none;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.prozess-input-wrap input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 103, 166, 0.10);
}

.prozess-button-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.prozess-btn {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #e6d83f 0%, #f1e84c 100%);
  color: #111827;
  font-size: 17px;
  font-weight: 800;
  padding: 0 28px;
  box-shadow: 0 14px 28px rgba(224, 211, 54, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prozess-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(224, 211, 54, 0.28);
}

.prozess-hint {
  margin-top: 8px;
  font-size: 12px;
  color: var(--color-text-soft);
  opacity: 0.9;
}

.prozess-error {
  display: none;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-danger);
}

.prozess-result {
  display: none;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.prozess-result.is-open {
  display: block;
}

.prozess-result-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.prozess-result-head h4 {
  margin: 0;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  color: var(--color-dark-2);
  line-height: 1.1;
}

.prozess-toggle-btn {
  border: 0;
  background: rgba(0, 103, 166, 0.08);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.prozess-toggle-btn:hover {
  background: rgba(0, 103, 166, 0.14);
  transform: translateY(-1px);
}

.prozess-streitwert-range {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-soft);
}

.prozess-result-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.prozess-result-left {
  background: #ffffff;
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
  border: 1px solid rgba(17, 24, 39, 0.04);
}

.prozess-note-box {
  background: linear-gradient(135deg, #ffffff 0%, #f7fbfe 100%);
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
  border: 1px solid rgba(0, 103, 166, 0.06);
}

.prozess-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.prozess-line:first-child {
  padding-top: 0;
}

.prozess-line:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.prozess-line span {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
}

.prozess-line strong {
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-dark-2);
  font-weight: 800;
  white-space: nowrap;
}

.prozess-total {
  margin-top: 8px;
  padding-top: 18px !important;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.prozess-total span {
  font-size: 16px;
  color: var(--color-dark-2);
  font-weight: 700;
}

.prozess-total strong {
  color: #2f7c66;
  font-size: clamp(28px, 3vw, 34px);
}

.prozess-note-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #5b6675;
  margin: 0;
}

.prozess-note-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark-2);
  background: rgba(0, 103, 166, 0.06);
  transition: all 0.2s ease;
}

.prozess-note-link:hover {
  background: rgba(0, 103, 166, 0.12);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.prozess-note-link iconify-icon {
  font-size: 16px;
}

/* =========================
   TARIF TABLE
========================= */

.tarif-table-shell {
  background: linear-gradient(180deg, #f9f7f3 0%, #f5f2ed 100%);
  border-radius: 34px;
  padding: 26px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255,255,255,0.08);
}

.tarif-table-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.tarif-table-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.tarif-table-topbar p {
  margin: 0;
  color: #5b6675;
  font-size: 14px;
  line-height: 1.6;
}

.tarif-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
}

.tarif-table-premium {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
}

.tarif-table-premium thead th {
  background: linear-gradient(135deg, #315f94 0%, #426fa4 100%);
  color: #ffffff;
  padding: 22px 18px;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.tarif-table-premium thead th:first-child {
  text-align: left;
  padding-left: 26px;
}

.tarif-table-premium thead th:last-child {
  border-right: 0;
}

.tarif-table-premium thead th.is-featured {
  background: linear-gradient(135deg, #1f4f86 0%, #2c6aa0 100%);
}

.table-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  vertical-align: middle;
}

.tarif-table-premium tbody tr {
  transition: background 0.2s ease;
}

.tarif-table-premium tbody tr:hover {
  background: #f8fbff;
}

.tarif-table-premium tbody td {
  padding: 20px 18px;
  font-size: 16px;
  color: var(--color-dark-2);
  text-align: center;
  border-bottom: 1px solid #e8edf3;
  border-right: 1px solid #eef2f6;
  background: #ffffff;
  vertical-align: middle;
}

.tarif-table-premium tbody td:first-child {
  text-align: left;
  padding-left: 26px;
  min-width: 280px;
}

.tarif-table-premium tbody td:last-child {
  border-right: 0;
}

.tarif-table-premium tbody tr:last-child td {
  border-bottom: 0;
}

.tarif-table-premium tbody td strong {
  display: block;
  font-size: 16px;
  color: var(--color-dark-2);
  font-weight: 700;
  margin-bottom: 4px;
}

.tarif-table-premium tbody td small {
  display: block;
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.5;
}

.tarif-table-premium tbody td.is-featured,
.tarif-table-premium tbody .is-featured {
  background: linear-gradient(180deg, #f3f8fd 0%, #edf5fc 100%);
  font-weight: 700;
  color: #163b59;
}

.table-hidden {
  display: none;
}

.table-more-wrap {
  margin-top: 18px;
  text-align: center;
}

.table-more-btn {
  appearance: none;
  border: none;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 103, 166, 0.18);
  transition: 0.2s ease;
}

.table-more-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(0, 103, 166, 0.24);
}

.tarif-table-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(0,103,166,0.06);
  color: #486170;
  font-size: 14px;
  line-height: 1.6;
}

.tarif-table-note iconify-icon {
  font-size: 18px;
  color: var(--color-primary);
  margin-top: 2px;
}

/* =========================
   EXAMPLE ACCORDION / TABLES
========================= */

.beispielrechner-wrap {
  margin-top: 34px;
}

.beispielrechner-head {
  max-width: 760px;
  margin-bottom: 20px;
}

.beispielrechner-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7cc9ff;
}

.beispielrechner-head h3 {
  margin: 0 0 10px 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
  color: #ffffff;
}

.beispielrechner-head p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 16px;
  line-height: 1.7;
}

.beispiel-accordion {
  display: grid;
  gap: 16px;
}

.beispiel-item {
  background:
    radial-gradient(circle at top right, rgba(124, 201, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 46px rgba(0,0,0,0.14);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.beispiel-item:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 201, 255, 0.18);
  box-shadow: 0 26px 54px rgba(0,0,0,0.18);
}

.beispiel-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  padding: 22px 24px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.beispiel-toggle:hover {
  background: rgba(255,255,255,0.025);
}

.beispiel-toggle-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.beispiel-toggle-title {
  font-size: 21px;
  line-height: 1.22;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.beispiel-toggle-subtitle {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.66);
  margin: 0;
}

.beispiel-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  color: #ffffff;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.beispiel-item.is-open .beispiel-icon {
  transform: rotate(180deg);
  background: rgba(124, 201, 255, 0.14);
  border-color: rgba(124, 201, 255, 0.18);
}

.beispiel-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.beispiel-item.is-open .beispiel-panel {
  grid-template-rows: 1fr;
}

.beispiel-panel-inner {
  overflow: hidden;
  padding: 0 24px 0;
}

.beispiel-item.is-open .beispiel-panel-inner {
  padding-bottom: 24px;
}

.beispiel-table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(17,24,39,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.beispiel-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
}

.beispiel-table thead th {
  background: linear-gradient(135deg, #315f94 0%, #4b79b0 100%);
  color: #ffffff;
  padding: 18px 16px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.10);
  white-space: nowrap;
}

.beispiel-table thead th:first-child {
  text-align: left;
  padding-left: 22px;
  border-top-left-radius: 22px;
}

.beispiel-table thead th:last-child {
  border-right: 0;
  border-top-right-radius: 22px;
}

.beispiel-table tbody td {
  padding: 18px 16px;
  font-size: 15px;
  color: var(--color-dark-2);
  text-align: center;
  border-bottom: 1px solid #e8edf3;
  border-right: 1px solid #eef2f6;
  background: #ffffff;
  vertical-align: middle;
}

.beispiel-table tbody td:first-child {
  text-align: left;
  padding-left: 22px;
  font-weight: 700;
  min-width: 260px;
}

.beispiel-table tbody td:last-child {
  border-right: 0;
}

.beispiel-table tbody tr:last-child td {
  border-bottom: 0;
}

.beispiel-table tbody tr:hover td {
  background: #f8fbff;
}

.beispiel-table tbody tr.is-highlight td {
  background: linear-gradient(180deg, #f3f8fd 0%, #edf5fc 100%);
}

.beispiel-table tbody tr.is-highlight td:first-child {
  color: #163b59;
}

.beispiel-note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}

/* =========================
   FUNNEL
========================= */

.privat-funnel-section {
  background: #ffffff;
}

.privat-funnel-shell {
  background:
    radial-gradient(circle at top right, rgba(0, 103, 166, 0.06), transparent 28%),
    linear-gradient(180deg, #f8fbfe 0%, #f3f8fc 100%);
  border: 1px solid rgba(0, 103, 166, 0.10);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.privat-funnel-topbar {
  margin-bottom: 26px;
}

.privat-funnel-intro {
  margin-bottom: 18px;
}

.privat-funnel-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.privat-funnel-intro h2 {
  margin: 0 0 10px 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  color: var(--color-dark-2);
}

.privat-funnel-intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-soft);
  max-width: 760px;
}

.privat-progress-wrap {
  margin-bottom: 28px;
}

.privat-progress-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #475467;
}

.privat-progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(0, 103, 166, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}

.privat-progress-bar span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 100%);
  transition: width 0.25s ease;
  box-shadow: 0 0 10px rgba(0, 103, 166, 0.4), 0 0 20px rgba(0, 103, 166, 0.2);
}

.privat-progress-dots {
  display: flex;
  gap: 8px;
}

.privat-progress-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 103, 166, 0.16);
  transition: 0.2s ease;
}

.privat-progress-dots span.is-active {
  background: var(--color-primary);
}

.privat-funnel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 20px;
  align-items: start;
}

.privat-funnel-main,
.privat-summary-card,
.privat-side-note {
  background: #ffffff;
  border: 1px solid rgba(0, 103, 166, 0.10);
  border-radius: 28px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(4px);
}

.privat-funnel-main {
  padding: 26px;
  position: relative;
}

.privat-step {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

.privat-step.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  height: auto;
  overflow: visible;
}

.step-copy {
  margin-bottom: 18px;
}

.step-copy h3 {
  margin: 0 0 8px 0;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  color: var(--color-dark-2);
}

.step-copy p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.privat-option-grid {
  display: grid;
  gap: 14px;
}

.privat-option-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.privat-option-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.privat-option-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.privat-option-card {
  position: relative;
  appearance: none;
  border: 2px solid rgba(0, 103, 166, 0.10);
  background: linear-gradient(180deg, #fbfdff 0%, #f4f9fd 100%);
  border-radius: 24px;
  min-height: 132px;
  padding: 20px 18px;
  text-align: left;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);
  transition: 0.25s ease;
  cursor: pointer;
}

.privat-option-card:hover,
.privat-option-card.is-selected {
  border-color: #008bf8;
  box-shadow: 0 16px 34px rgba(0, 139, 248, 0.10);
  transform: translateY(-2px);
  background: #ffffff;
}

.privat-option-card.is-selected {
  border-color: var(--color-primary);
  box-shadow: 0 10px 25px rgba(0, 103, 166, 0.15);
  background: linear-gradient(180deg, #ffffff, #f4fbff);
}

.privat-option-card.is-selected::after {
  content: "✓";
  position: absolute;
  top: 12px;
  right: 12px;

  width: 26px;
  height: 26px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #00b67a, #009e68);
  color: #ffffff;

  font-size: 14px;
  font-weight: 800;

  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.privat-option-card.is-selected .option-badge {
  right: 48px;
}

@keyframes optionCheckIn {
  from {
    opacity: 0;
    transform: scale(0.65);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.option-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 103, 166, 0.08);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 14px rgba(0, 103, 166, 0.08);
}

.option-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(0, 103, 166, 0.10), rgba(21, 133, 201, 0.16));
  color: var(--color-primary);
}

.option-icon iconify-icon {
  font-size: 22px;
}

.privat-option-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-dark-2);
  margin-bottom: 6px;
}

.privat-option-card small {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-soft);
}

.step-tip {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(0, 103, 166, 0.05);
  color: #486170;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid rgba(0, 103, 166, 0.06);
}

.step-tip iconify-icon {
  font-size: 18px;
  color: var(--color-primary);
  margin-top: 2px;
}

.privat-contact-card {
  margin-top: 20px;
  background: linear-gradient(180deg, #fbfdff 0%, #f6faff 100%);
  border: 1px solid rgba(0, 103, 166, 0.08);
  border-radius: 24px;
  padding: 22px;
}

.contact-card-head h4 {
  margin: 0 0 8px 0;
  font-size: 22px;
  color: var(--color-dark-2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card-head h4::before {
  content: "✓";
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.contact-card-head p {
  margin: 0 0 16px 0;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.privat-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.privat-contact-grid input {
  width: 100%;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #fff;
  padding: 0 16px;
  font-size: 15px;
  color: var(--color-dark-2);
  outline: none;
}

.privat-contact-grid input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 103, 166, 0.08);
}

.privat-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-soft);
}

.privat-checkbox input {
  margin-top: 4px;
}

.privat-checkbox a {
  color: var(--color-primary);
  text-decoration: none;
}

.privat-step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.privat-back,
.privat-submit {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.2s ease;
}

.privat-back {
  background: rgba(0, 103, 166, 0.08);
  color: var(--color-primary);
  min-width: 120px;
}

.privat-submit {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 103, 166, 0.22);
  min-width: 220px;
}

.privat-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.privat-back:hover,
.privat-submit:hover {
  transform: translateY(-1px);
}

.privat-summary-card {
  padding: 22px;
  position: sticky;
  top: 110px;
  overflow: hidden;
}

.summary-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.privat-summary-card h4 {
  margin: 0 0 14px 0;
  font-size: 24px;
  color: var(--color-dark-2);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.summary-line:last-of-type {
  border-bottom: 0;
}

.summary-line span {
  color: var(--color-text-soft);
}

.summary-line strong {
  color: var(--color-dark-2);
}

.summary-note {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 103, 166, 0.06), rgba(21, 133, 201, 0.10));
  color: #18415a;
  font-size: 14px;
  line-height: 1.5;
}

.summary-note iconify-icon {
  font-size: 20px;
  color: var(--color-primary);
}

.summary-checklist {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  display: grid;
  gap: 12px;
}

.summary-checklist div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: #475467;
}

.summary-checklist iconify-icon {
  font-size: 16px;
  color: var(--color-primary);
  margin-top: 2px;
}

.privat-side-note {
  margin-top: 16px;
  padding: 20px;
  background: radial-gradient(circle at top right, rgba(0, 103, 166, 0.05), transparent 35%), #ffffff;
}

.privat-side-note h5 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: var(--color-dark-2);
}

.privat-side-note p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.7;
  font-size: 15px;
}

.funnel-info-box {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f3f6f9;
  font-size: 14px;
  line-height: 1.5;
}

.funnel-info-box h4 {
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 600;
}

.funnel-info-box p {
  margin: 0;
  color: #5f6b7a;
}

/* =========================
   SUCCESS SCREEN
========================= */

.privat-success-screen {
  display: none;
  margin-top: 8px;
}

.privat-success-screen.is-visible {
  display: block;
}

.privat-success-card {
  background: linear-gradient(180deg, #fbfdff 0%, #f4f9fd 100%);
  border: 1px solid rgba(0, 103, 166, 0.10);
  border-radius: 28px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}

.privat-success-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00b67a 0%, #009e68 100%);
  box-shadow: 0 14px 28px rgba(0, 182, 122, 0.22);
}

.privat-success-icon iconify-icon {
  font-size: 36px;
  color: #ffffff;
}

.privat-success-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.privat-success-card h3 {
  margin: 0 0 12px 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  color: var(--color-dark-2);
}

.privat-success-card p {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-soft);
}

.privat-success-summary {
  max-width: 620px;
  margin: 0 auto 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 103, 166, 0.08);
  border-radius: 22px;
  padding: 18px 20px;
  text-align: left;
}

.success-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.success-line:last-child {
  border-bottom: 0;
}

.success-line span {
  color: var(--color-text-soft);
}

.success-line strong {
  color: var(--color-dark-2);
}

.privat-success-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.privat-success-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.2s ease;
}

.privat-success-btn.primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 103, 166, 0.18);
}

.privat-success-btn.secondary {
  background: rgba(0, 103, 166, 0.08);
  color: var(--color-primary);
}

.privat-success-btn:hover {
  transform: translateY(-1px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199.98px) {
  .rs-card-link {
    max-width: 100%;
  }

  .rs-card {
    min-height: 430px;
    padding: 30px 24px 58px;
  }

  .rs-text-title {
    font-size: 34px;
  }

  .rs-text-body {
    font-size: 15px;
  }

  .privat-funnel-grid {
    grid-template-columns: 1fr;
  }

  .privat-summary-card {
    position: static;
    top: auto;
  }
}



@media (max-width: 991.98px) {
  .prozess-intro-text h2 {
    font-size: 34px;
  }

  .prozess-intro-text p {
    font-size: 16px;
  }

  .prozess-form-row,
  .prozess-result-grid {
    grid-template-columns: 1fr;
  }

  .prozess-btn {
    width: 100%;
  }

  .privat-option-grid.two,
  .privat-option-grid.three,
  .privat-option-grid.four,
  .privat-contact-grid {
    grid-template-columns: 1fr;
  }

  .privat-funnel-shell {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .privat-funnel-main,
  .privat-summary-card,
  .privat-side-note {
    border-radius: 22px;
  }

  .privat-step-actions {
    flex-direction: column;
  }

  .privat-progress-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .summary-checklist {
    gap: 10px;
  }

  .privat-submit,
  .privat-back {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 767.98px) {
  .banner-inner-section {
    min-height: 540px;
  }

  .privat-cards-section {
    padding: 24px 0 42px;
  }

  .privat-cards-heading {
    margin-bottom: 18px;
  }

  .privat-cards-heading h2 {
    font-size: 30px;
  }

  .privat-cards-heading p {
    font-size: 13px;
    line-height: 1.55;
  }

  .privat-cards-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .cards-slider {
    padding: 10px 20px;
  }

  .rs-card-link {
    width: 100%;
    max-width: 360px;
  }

  .rs-card {
  
    min-height: 280px;
    border-radius: 24px;
    padding: 24px 20px 28px;
  }

  .rs-card-kicker {
    font-size: 11px;
  }

  .rs-text-title {
    font-size: 28px;
  }

  .rs-text-body {
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
  }

  .rs-card-button {
    width: 170px;
    font-size: 15px;
    padding: 12px 18px;
  }

  .rs-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .rs-card-icon iconify-icon {
    font-size: 24px;
  }

  .prozess-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .prozess-input-wrap input,
  .prozess-btn {
    height: 58px;
  }

  .prozess-input-wrap input {
    font-size: 20px;
  }

  .prozess-result {
    margin-top: 22px;
    padding-top: 20px;
  }

  .prozess-result-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .prozess-result-left,
  .prozess-note-box {
    padding: 18px;
    border-radius: 20px;
  }

  .prozess-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .prozess-line strong {
    font-size: 18px;
  }

  .prozess-total strong {
    font-size: 24px;
  }

  .prozess-toggle-btn {
    padding: 9px 14px;
    font-size: 13px;
  }

  .tarif-table-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .tarif-table-premium {
    min-width: 900px;
  }

  .tarif-table-premium thead th,
  .tarif-table-premium tbody td {
    padding: 16px 14px;
    font-size: 14px;
  }

  .tarif-table-premium tbody td:first-child {
    padding-left: 18px;
    min-width: 240px;
  }

  .beispielrechner-wrap {
    margin-top: 24px;
  }

  .beispiel-toggle {
    padding: 18px;
    align-items: flex-start;
  }

  .beispiel-toggle-title {
    font-size: 18px;
  }

  .beispiel-toggle-subtitle {
    font-size: 13px;
  }

  .beispiel-panel-inner {
    padding: 0 18px 0;
  }

  .beispiel-item.is-open .beispiel-panel-inner {
    padding-bottom: 18px;
  }

  .beispiel-table {
    min-width: 720px;
  }

  .beispiel-table thead th,
  .beispiel-table tbody td {
    padding: 15px 14px;
    font-size: 14px;
  }

  .beispiel-table tbody td:first-child {
    min-width: 220px;
    padding-left: 18px;
  }

  .funnel-info-box {
    display: none;
  }

  .privat-success-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .privat-success-icon {
    width: 72px;
    height: 72px;
  }

  .privat-success-icon iconify-icon {
    font-size: 30px;
  }

  .privat-success-summary {
    padding: 16px;
    border-radius: 18px;
  }

  .success-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .privat-success-btn {
    width: 100%;
  }
}
/* ===== Zahnzusatz Funnel Fix ===== */

.privat-option-grid.four {
  align-items: stretch;
}

.privat-option-card {
  height: 100%;
}

.privat-option-card strong {
  min-height: 2.4em;
}

.privat-option-card small {
  min-height: 3.2em;
}

@media (min-width: 992px) {
  .privat-option-grid.four .privat-option-card {
    min-height: 250px;
  }

  .privat-option-grid.four .privat-option-card strong {
    font-size: 18px;
    line-height: 1.2;
  }

  .privat-option-grid.four .privat-option-card small {
    font-size: 13px;
    line-height: 1.45;
  }

  .privat-option-grid.four .option-badge {
    top: 12px;
    right: 12px;
    font-size: 11px;
    padding: 6px 10px;
    white-space: nowrap;
  }
}
/* ===== Finaler Zahnzusatz Funnel Fix ===== */

.privat-option-grid.four {
  align-items: stretch;
}

.privat-option-grid.four .privat-option-card {
  height: 100%;
  min-height: 250px;
  padding: 20px 16px;
}

.privat-option-grid.four .privat-option-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  min-height: 2.5em;
  margin-bottom: 10px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.privat-option-grid.four .privat-option-card small {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  min-height: 3.8em;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.privat-option-grid.four .option-badge {
  top: 12px;
  right: 12px;
  font-size: 11px;
  padding: 6px 10px;
  white-space: nowrap;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .privat-option-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .privat-option-grid.four .privat-option-card {
    padding: 18px 14px;
  }

  .privat-option-grid.four .privat-option-card strong {
    font-size: 15px;
  }

  .privat-option-grid.four .privat-option-card small {
    font-size: 12px;
  }
}
/* Step 3 Zahnzusatz: 2x2 statt 4 nebeneinander */
.leistungs-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px;
}

.leistungs-grid .privat-option-card {
  min-height: 220px;
}

.leistungs-grid .privat-option-card strong {
  font-size: 20px;
  line-height: 1.2;
  min-height: 2.4em;
  white-space: normal;
}

.leistungs-grid .privat-option-card small {
  font-size: 14px;
  line-height: 1.5;
  min-height: 3.4em;
}

@media (max-width: 767.98px) {
  .leistungs-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ===== Zahnzusatz Funnel 2x2 Grid Fix ===== */

.leistungs-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px;
  align-items: stretch;
}

.leistungs-grid .privat-option-card {
  min-height: 220px;
  height: 100%;
  padding: 20px 18px;
}

.leistungs-grid .privat-option-card strong {
  font-size: 20px;
  line-height: 1.2;
  min-height: 2.4em;
  margin-bottom: 8px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.leistungs-grid .privat-option-card small {
  font-size: 14px;
  line-height: 1.5;
  min-height: 3.4em;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.leistungs-grid .option-badge {
  top: 12px;
  right: 12px;
  font-size: 11px;
  padding: 6px 10px;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .leistungs-grid {
    grid-template-columns: 1fr !important;
  }

  .leistungs-grid .privat-option-card {
    min-height: auto;
  }

  .leistungs-grid .privat-option-card strong,
  .leistungs-grid .privat-option-card small {
    min-height: 0;
  }
}
.vermieter-tabs-shell {
  background: linear-gradient(180deg, #f9f7f3 0%, #f5f2ed 100%);
  border-radius: 34px;
  padding: 26px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255,255,255,0.08);
}

.vermieter-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.vermieter-tab {
  appearance: none;
  border: none;
  background: #eef3f8;
  color: var(--color-dark-2);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.vermieter-tab:hover {
  transform: translateY(-1px);
}

.vermieter-tab.active {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 100%);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 103, 166, 0.18);
}

.vermieter-content {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
}

.vermieter-panel {
  display: none;
}

.vermieter-panel.active {
  display: block;
}

.vermieter-panel h4 {
  margin: 0 0 12px 0;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.1;
  color: var(--color-dark-2);
}

.vermieter-panel p {
  margin: 0 0 18px 0;
  font-size: 16px;
  line-height: 1.7;
  color: #5b6675;
  max-width: 760px;
}

.vermieter-panel ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.vermieter-panel li {
  color: var(--color-dark-2);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .vermieter-tabs-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .vermieter-content {
    padding: 18px;
    border-radius: 20px;
  }

  .vermieter-tab {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .vermieter-panel h4 {
    font-size: 24px;
  }

  .vermieter-panel p,
  .vermieter-panel li {
    font-size: 14px;
  }
}
/* ===== Vermieter Tabs Premium ===== */

.vermieter-tabs-shell {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(124, 201, 255, 0.10), transparent 28%),
    linear-gradient(180deg, #f9f7f3 0%, #f5f2ed 100%);
  border-radius: 34px;
  padding: 30px;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
}

.vermieter-tabs-shell::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0,103,166,0.08), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.vermieter-tabs-shell::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(124,201,255,0.10), transparent 70%);
  filter: blur(16px);
  pointer-events: none;
}

.vermieter-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.vermieter-tab {
  appearance: none;
  border: 1px solid rgba(0, 103, 166, 0.06);
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-dark-2);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.vermieter-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.82);
}

.vermieter-tab.active {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow:
    0 14px 30px rgba(0, 103, 166, 0.24),
    0 0 0 6px rgba(0, 103, 166, 0.08);
}

.vermieter-content {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, #ffffff 100%);
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(17,24,39,0.04);
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.55);
  min-height: 360px;
  overflow: hidden;
}

.vermieter-panel {
  display: none;
  opacity: 0;
  transform: translateY(14px) scale(0.99);
}

.vermieter-panel.active {
  display: block;
  animation: vermieterPanelIn 0.45s cubic-bezier(.22,1,.36,1) forwards;
}

@keyframes vermieterPanelIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.vermieter-panel h4 {
  margin: 0 0 14px 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  color: var(--color-dark-2);
  letter-spacing: -0.02em;
}

.vermieter-panel p {
  margin: 0 0 22px 0;
  font-size: 18px;
  line-height: 1.75;
  color: #5b6675;
  max-width: 980px;
}

.vermieter-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 700px;
}

.vermieter-panel li {
  position: relative;
  padding-left: 20px;
  color: var(--color-dark-2);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
  transition: transform 0.2s ease, color 0.2s ease;
}

.vermieter-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(0, 103, 166, 0.08);
}

.vermieter-panel li:hover {
  transform: translateX(4px);
  color: var(--color-primary);
}

.tarif-table-note {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 18px 18px;
  border-radius: 20px;
  background: rgba(238,243,248,0.9);
  border: 1px solid rgba(0,103,166,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}

.tarif-table-note iconify-icon {
  font-size: 20px;
  color: var(--color-primary);
  margin-top: 2px;
}

@media (max-width: 767.98px) {
  .vermieter-tabs-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .vermieter-tabs {
    gap: 10px;
  }

  .vermieter-tab {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 13px 18px;
  }

  .vermieter-content {
    padding: 20px;
    border-radius: 22px;
    min-height: auto;
  }

  .vermieter-panel h4 {
    font-size: 26px;
  }

  .vermieter-panel p {
    font-size: 15px;
    line-height: 1.65;
  }

  .vermieter-panel li {
    font-size: 15px;
  }
}
/* ===== Funnel größere Karten ===== */

.privat-step[data-step="1"] .privat-option-grid,
.privat-step[data-step="3"] .privat-option-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.privat-step[data-step="1"] .privat-option-card,
.privat-step[data-step="3"] .privat-option-card {
  min-height: 170px;
  padding: 26px 22px;
}

.privat-step[data-step="1"] strong,
.privat-step[data-step="3"] strong {
  font-size: 22px;
}

.privat-step[data-step="1"] small,
.privat-step[data-step="3"] small {
  font-size: 15px;
  line-height: 1.5;
}
/* =========================
   VERMIETER CASES COMPACT
========================= */

.vermieter-cases-compact {
  background: #ffffff;
}

.vermieter-cases-compact-head {
  max-width: 920px;
  margin: 0 auto 28px;
  text-align: center;
}

.vermieter-cases-compact-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.vermieter-cases-compact-head h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  color: var(--color-dark-2);
}

.vermieter-cases-compact-head p {
  margin: 0 auto;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-soft);
}

.vermieter-cases-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.vermieter-case-compact {
  background: linear-gradient(180deg, #fbfdff 0%, #f4f9fd 100%);
  border: 1px solid rgba(0, 103, 166, 0.08);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.vermieter-case-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  border-color: rgba(0, 103, 166, 0.14);
}

.vermieter-case-compact-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.vermieter-case-compact-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 103, 166, 0.08), rgba(21, 133, 201, 0.14));
  color: var(--color-primary);
  flex-shrink: 0;
}

.vermieter-case-compact-icon iconify-icon {
  font-size: 26px;
}

.vermieter-case-compact-label {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.vermieter-case-compact-top h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
  color: var(--color-dark-2);
}

.vermieter-case-compact-text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #5b6675;
}

.vermieter-case-compact-box {
  border-radius: 20px;
  padding: 16px 18px;
  margin-top: 12px;
}

.vermieter-case-compact-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vermieter-case-compact-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.vermieter-case-compact-box.is-negative {
  background: linear-gradient(135deg, rgba(255, 116, 74, 0.12), rgba(115, 32, 28, 0.10));
  border: 1px solid rgba(196, 72, 45, 0.18);
}

.vermieter-case-compact-box.is-negative strong,
.vermieter-case-compact-box.is-negative p {
  color: #8b2e24;
}

.vermieter-case-compact-box.is-positive {
  background: linear-gradient(135deg, rgba(117, 205, 148, 0.12), rgba(25, 107, 76, 0.10));
  border: 1px solid rgba(38, 134, 96, 0.16);
}

.vermieter-case-compact-box.is-positive strong,
.vermieter-case-compact-box.is-positive p {
  color: #1e6f50;
}

@media (max-width: 1199.98px) {
  .vermieter-cases-compact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .vermieter-case-compact {
    padding: 20px;
    border-radius: 24px;
  }

  .vermieter-case-compact-top h3 {
    font-size: 24px;
  }
}
/* =========================
   VERMIETER SHOWCASE
========================= */

.vermieter-showcase-section {
  position: relative;
  padding-top: 40px;
  padding-bottom: 70px;
}

.vermieter-showcase-shell {
  position: relative;
  padding: 38px 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(124, 201, 255, 0.10), transparent 26%),
    linear-gradient(180deg, #f7fbff 0%, #f2f7fc 100%);
  border: 1px solid rgba(0, 103, 166, 0.08);
  box-shadow:
    0 24px 54px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.55);
  overflow: hidden;
}

.vermieter-showcase-shell::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,103,166,0.10), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.vermieter-showcase-head {
  max-width: 920px;
  margin: 0 auto 26px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.vermieter-showcase-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.vermieter-showcase-head h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  color: var(--color-dark-2);
}

.vermieter-showcase-head p {
  margin: 0 auto;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-soft);
}

.vermieter-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}

.vermieter-showcase-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 103, 166, 0.08);
  border-radius: 28px;
  padding: 24px;
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.65);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.vermieter-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.7);
  border-color: rgba(0, 103, 166, 0.14);
}

.vermieter-showcase-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.vermieter-showcase-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 103, 166, 0.08), rgba(21, 133, 201, 0.14));
  color: var(--color-primary);
  flex-shrink: 0;
}

.vermieter-showcase-icon iconify-icon {
  font-size: 26px;
}

.vermieter-showcase-label {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.vermieter-showcase-top h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
  color: var(--color-dark-2);
}

.vermieter-showcase-text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #5b6675;
}

.vermieter-showcase-box {
  border-radius: 20px;
  padding: 16px 18px;
  margin-top: 12px;
}

.vermieter-showcase-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vermieter-showcase-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.vermieter-showcase-box.is-negative {
  background: linear-gradient(135deg, rgba(255, 116, 74, 0.10), rgba(115, 32, 28, 0.08));
  border: 1px solid rgba(196, 72, 45, 0.14);
}

.vermieter-showcase-box.is-negative strong,
.vermieter-showcase-box.is-negative p {
  color: #8b2e24;
}

.vermieter-showcase-box.is-positive {
  background: linear-gradient(135deg, rgba(117, 205, 148, 0.10), rgba(25, 107, 76, 0.08));
  border: 1px solid rgba(38, 134, 96, 0.14);
}

.vermieter-showcase-box.is-positive strong,
.vermieter-showcase-box.is-positive p {
  color: #1e6f50;
}

@media (max-width: 1199.98px) {
  .vermieter-showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .vermieter-showcase-shell {
    padding: 22px 18px;
    border-radius: 26px;
  }

  .vermieter-showcase-card {
    padding: 20px;
    border-radius: 24px;
  }

  .vermieter-showcase-top h3 {
    font-size: 24px;
  }
}
/* =========================
   VERMIETER SHOWCASE FINAL
========================= */

.vermieter-showcase-section {
  position: relative;
  padding-top: 40px;
  padding-bottom: 70px;
}

.vermieter-showcase-shell {
  position: relative;
  padding: 38px 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(124, 201, 255, 0.10), transparent 26%),
    linear-gradient(180deg, #f7fbff 0%, #f2f7fc 100%);
  border: 1px solid rgba(0, 103, 166, 0.08);
  box-shadow:
    0 24px 54px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.55);
  overflow: hidden;
}

.vermieter-showcase-shell::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,103,166,0.10), transparent 70%);
  filter: blur(22px);
  pointer-events: none;
  animation: showcaseGlow 7s ease-in-out infinite;
}

.vermieter-showcase-shell::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 201, 255, 0.08), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  animation: showcaseGlow 9s ease-in-out infinite alternate;
}

@keyframes showcaseGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate3d(10px, -8px, 0) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.8;
  }
}

.vermieter-showcase-head {
  max-width: 920px;
  margin: 0 auto 26px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.vermieter-showcase-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.vermieter-showcase-head h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  color: var(--color-dark-2);
}

.vermieter-showcase-head p {
  margin: 0 auto;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-soft);
}

.vermieter-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}

.vermieter-showcase-card {
  background: #1e292d;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  padding: 24px;
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
  position: relative;
  overflow: hidden;
}

.vermieter-showcase-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 185, 223, 0.10), transparent 70%);
  filter: blur(16px);
  opacity: 0.7;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.vermieter-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 48px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.04);
  border-color: rgba(124, 201, 255, 0.16);
}

.vermieter-showcase-card:hover::before {
  transform: scale(1.08) translateY(-8px);
  opacity: 1;
}

.vermieter-showcase-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.vermieter-showcase-top > div {
  flex: 1;
}

.vermieter-showcase-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: #7ab9df;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  animation: showcaseIconFloat 4.6s ease-in-out infinite;
}

.vermieter-showcase-card:hover .vermieter-showcase-icon {
  transform: translateY(-3px) scale(1.04);
  background: rgba(255,255,255,0.11);
  box-shadow: 0 10px 20px rgba(0,0,0,0.16);
}

.vermieter-showcase-icon iconify-icon {
  font-size: 26px;
}

@keyframes showcaseIconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.vermieter-showcase-label {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7ab9df;
}

.vermieter-showcase-top h3 {
  margin: 0;
  min-height: 2.2em;
  font-size: 28px;
  line-height: 1.05;
  color: #ffffff;
}

.vermieter-showcase-text {
  margin: 0 0 16px;
  min-height: 120px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

.vermieter-showcase-box {
  border-radius: 20px;
  padding: 16px 18px;
  margin-top: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vermieter-showcase-card:hover .vermieter-showcase-box {
  transform: translateY(-1px);
}

.vermieter-showcase-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vermieter-showcase-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.vermieter-showcase-box.is-negative {
  background: linear-gradient(135deg, rgba(255, 116, 74, 0.14), rgba(115, 32, 28, 0.16));
  border: 1px solid rgba(196, 72, 45, 0.18);
}

.vermieter-showcase-box.is-negative strong,
.vermieter-showcase-box.is-negative p {
  color: #ffd6cb;
}

.vermieter-showcase-box.is-positive {
  background: linear-gradient(135deg, rgba(117, 205, 148, 0.14), rgba(25, 107, 76, 0.16));
  border: 1px solid rgba(38, 134, 96, 0.18);
}

.vermieter-showcase-box.is-positive strong,
.vermieter-showcase-box.is-positive p {
  color: #d7f2de;
}

@media (max-width: 1199.98px) {
  .vermieter-showcase-grid {
    grid-template-columns: 1fr;
  }

  .vermieter-showcase-top h3,
  .vermieter-showcase-text {
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .vermieter-showcase-shell {
    padding: 22px 18px;
    border-radius: 26px;
  }

  .vermieter-showcase-card {
    padding: 20px;
    border-radius: 24px;
  }

  .vermieter-showcase-top h3 {
    font-size: 24px;
  }

  .vermieter-showcase-text,
  .vermieter-showcase-box p {
    font-size: 14px;
  }
}
iconify-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  vertical-align: -0.125em;
}
.vermieter-showcase-icon,
.vermieter-case-compact-icon,
.rs-card-icon,
.option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vermieter-showcase-icon iconify-icon,
.vermieter-case-compact-icon iconify-icon,
.rs-card-icon iconify-icon,
.option-icon iconify-icon {
  width: 26px;
  height: 26px;
  font-size: 26px;
}
/* =========================
   VERMIETER SHOWCASE FINAL
========================= */

.vermieter-showcase-section {
  position: relative;
  padding-top: 40px;
  padding-bottom: 70px;
}

.vermieter-showcase-shell {
  position: relative;
  padding: 38px 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(124, 201, 255, 0.10), transparent 26%),
    linear-gradient(180deg, #f7fbff 0%, #f2f7fc 100%);
  border: 1px solid rgba(0, 103, 166, 0.08);
  box-shadow:
    0 24px 54px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.55);
  overflow: hidden;
}

.vermieter-showcase-shell::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,103,166,0.10), transparent 70%);
  filter: blur(22px);
  pointer-events: none;
  animation: showcaseGlow 7s ease-in-out infinite;
}

.vermieter-showcase-shell::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 201, 255, 0.08), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  animation: showcaseGlow 9s ease-in-out infinite alternate;
}

@keyframes showcaseGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate3d(10px, -8px, 0) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.8;
  }
}

.vermieter-showcase-head {
  max-width: 920px;
  margin: 0 auto 26px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.vermieter-showcase-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.vermieter-showcase-head h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  color: var(--color-dark-2);
}

.vermieter-showcase-head p {
  margin: 0 auto;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-soft);
}

.vermieter-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}

.vermieter-showcase-card {
  background: #1e292d;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  padding: 24px;
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
  position: relative;
  overflow: hidden;
}

.vermieter-showcase-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 185, 223, 0.10), transparent 70%);
  filter: blur(16px);
  opacity: 0.7;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.vermieter-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 48px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.04);
  border-color: rgba(124, 201, 255, 0.16);
}

.vermieter-showcase-card:hover::before {
  transform: scale(1.08) translateY(-8px);
  opacity: 1;
}

.vermieter-showcase-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.vermieter-showcase-top > div {
  flex: 1;
}

.vermieter-showcase-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: #7ab9df;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  animation: showcaseIconFloat 4.6s ease-in-out infinite;
}

.vermieter-showcase-card:hover .vermieter-showcase-icon {
  transform: translateY(-3px) scale(1.04);
  background: rgba(255,255,255,0.11);
  box-shadow: 0 10px 20px rgba(0,0,0,0.16);
}

.vermieter-showcase-icon iconify-icon {
  font-size: 26px;
}

@keyframes showcaseIconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.vermieter-showcase-label {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7ab9df;
}

.vermieter-showcase-top h3 {
  margin: 0;
  min-height: 2.2em;
  font-size: 28px;
  line-height: 1.05;
  color: #ffffff;
}

.vermieter-showcase-text {
  margin: 0 0 16px;
  min-height: 120px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

.vermieter-showcase-box {
  border-radius: 20px;
  padding: 16px 18px;
  margin-top: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vermieter-showcase-card:hover .vermieter-showcase-box {
  transform: translateY(-1px);
}

.vermieter-showcase-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vermieter-showcase-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.vermieter-showcase-box.is-negative {
  background: linear-gradient(135deg, rgba(255, 116, 74, 0.14), rgba(115, 32, 28, 0.16));
  border: 1px solid rgba(196, 72, 45, 0.18);
}

.vermieter-showcase-box.is-negative strong,
.vermieter-showcase-box.is-negative p {
  color: #ffd6cb;
}

.vermieter-showcase-box.is-positive {
  background: linear-gradient(135deg, rgba(117, 205, 148, 0.14), rgba(25, 107, 76, 0.16));
  border: 1px solid rgba(38, 134, 96, 0.18);
}

.vermieter-showcase-box.is-positive strong,
.vermieter-showcase-box.is-positive p {
  color: #d7f2de;
}

@media (max-width: 1199.98px) {
  .vermieter-showcase-grid {
    grid-template-columns: 1fr;
  }

  .vermieter-showcase-top h3,
  .vermieter-showcase-text {
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .vermieter-showcase-shell {
    padding: 22px 18px;
    border-radius: 26px;
  }

  .vermieter-showcase-card {
    padding: 20px;
    border-radius: 24px;
  }

  .vermieter-showcase-top h3 {
    font-size: 24px;
  }

  .vermieter-showcase-text,
  .vermieter-showcase-box p {
    font-size: 14px;
  }
}
iconify-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  vertical-align: -0.125em;
}
/* =========================
   VERKEHRSRECHNER PREMIUM
========================= */

.verkehr-rechner-hero {
  max-width: 920px;
  margin-bottom: 26px;
}

.verkehr-rechner-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7cc9ff;
}

.verkehr-rechner-hero h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  max-width: 860px;
}

.verkehr-rechner-hero p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-width: 900px;
}

.verkehr-rechner-shell.apple-style {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(124, 201, 255, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(245,248,252,0.93) 100%);
  border-radius: 40px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.verkehr-rechner-shell.apple-style::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110,170,225,0.12), transparent 70%);
  filter: blur(22px);
  pointer-events: none;
}

.verkehr-rechner-topbar {
  margin-bottom: 18px;
}

.verkehr-rechner-topbar p {
  margin: 8px 0 0;
  color: #637286;
  font-size: 15px;
  line-height: 1.7;
  max-width: 760px;
}

/* Tabs */
.verkehr-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.verkehr-tab-btn {
  appearance: none;
  border: 1px solid rgba(17,24,39,0.06);
  background: rgba(255,255,255,0.8);
  color: #1a2635;
  border-radius: 18px;
  min-height: 58px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  transition: 0.22s ease;
  box-shadow:
    0 8px 20px rgba(15,23,42,0.04),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.verkehr-tab-btn iconify-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.verkehr-tab-btn span {
  white-space: normal;
}

.verkehr-tab-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 24px rgba(15,23,42,0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.verkehr-tab-btn.active {
  background: linear-gradient(135deg, #5c94d2 0%, #3d79bc 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(61,121,188,0.22);
}

/* Panel */
.verkehr-panel-wrap {
  position: relative;
}

.verkehr-tab-panel {
  display: none;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(17,24,39,0.05);
  border-radius: 30px;
  padding: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 10px 26px rgba(15,23,42,0.04);
  animation: verkehrPanelFade 0.24s ease;
}

.verkehr-tab-panel.active {
  display: block;
}

@keyframes verkehrPanelFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.verkehr-panel-head {
  margin-bottom: 22px;
}

.verkehr-panel-head h3 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-dark-2);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}

.verkehr-panel-head h3 iconify-icon {
  color: var(--color-primary);
  font-size: 24px;
}

.verkehr-panel-head p {
  margin: 0;
  color: #6f7d8c;
  line-height: 1.7;
  font-size: 16px;
}

.verkehr-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.verkehr-form-grid.one {
  grid-template-columns: 1fr;
}

.verkehr-field label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-dark-2);
}

.verkehr-select {
  width: 100%;
  height: 62px;
  border-radius: 20px;
  border: 1px solid rgba(17,24,39,0.08);
  background: rgba(255,255,255,0.92);
  padding: 0 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark-2);
  outline: none;
  transition: 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.verkehr-select:focus {
  border-color: rgba(0,103,166,0.32);
  box-shadow: 0 0 0 4px rgba(0,103,166,0.08);
}

.verkehr-toggle-group {
  display: flex;
  gap: 12px;
}

.verkehr-toggle-btn {
  flex: 1;
  height: 62px;
  border-radius: 20px;
  border: 1px solid rgba(17,24,39,0.08);
  background: rgba(255,255,255,0.92);
  color: var(--color-dark-2);
  font-size: 14px;
  font-weight: 800;
  transition: 0.22s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.verkehr-toggle-btn:hover {
  transform: translateY(-1px);
}

.verkehr-toggle-btn.active {
  border-color: transparent;
  background: linear-gradient(135deg, #5c94d2 0%, #3d79bc 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(61,121,188,0.18);
}

/* Results */
.verkehr-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.verkehr-result-card {
  border-radius: 30px;
  border: 1px solid rgba(17,24,39,0.06);
  padding: 28px 22px;
  text-align: center;
  background: rgba(255,255,255,0.78);
  box-shadow:
    0 10px 24px rgba(15,23,42,0.05),
    inset 0 1px 0 rgba(255,255,255,0.95);
  transition: 0.22s ease;
}

.verkehr-result-card:hover {
  transform: translateY(-2px);
}

.verkehr-result-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  opacity: 0.7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verkehr-result-head iconify-icon {
  font-size: 18px;
}

.verkehr-result-value {
  font-size: clamp(38px, 2vw, 62px);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -0.04em;
}

.verkehr-result-note {
  min-height: 18px;
  font-size: 12px;
  opacity: 0.55;
}

.severity-green {
  color: #2e7a5d;
  border-color: rgba(46,122,93,0.10);
}

.severity-yellow {
  color: #9d7417;
  border-color: rgba(157,116,23,0.12);
}

.severity-red {
  color: #af4a3d;
  border-color: rgba(175,74,61,0.12);
}

@media (max-width: 1199.98px) {
  .verkehr-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .verkehr-form-grid,
  .verkehr-result-grid,
  .verkehr-tabs {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .verkehr-rechner-hero h2 {
    font-size: 36px;
  }

  .verkehr-rechner-hero p {
    font-size: 16px;
  }

  .verkehr-rechner-shell.apple-style {
    padding: 18px;
    border-radius: 26px;
  }

  .verkehr-tabs,
  .verkehr-form-grid,
  .verkehr-result-grid {
    grid-template-columns: 1fr;
  }

  .verkehr-tab-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .verkehr-toggle-group {
    flex-direction: column;
  }

  .verkehr-tab-btn {
    justify-content: flex-start;
    text-align: left;
  }

  .verkehr-result-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .verkehr-panel-head h3 {
    font-size: 22px;
  }
}


/* =========================================================
   ADDED CLEAN OVERRIDES
   Buttons + Bereich 01 Pro Layout + Bereich 02 Funnel
========================================================= */

/* ========================================
   NEXT LEVEL BUTTONS
======================================== */

.btn,
button,
.home-check-choice {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.05) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.10);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.btn::before,
button::before,
.home-check-choice::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 0;
  height: 100%;
  z-index: 0;
  transform: skewX(-22deg);
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 45%, rgba(255,255,255,0.28) 50%, transparent 100%);
  transition: width 0.45s ease;
}

.btn::after,
button::after,
.home-check-choice::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.00));
  opacity: 0.9;
}

.btn > *,
button > *,
.home-check-choice > * {
  position: relative;
  z-index: 1;
}

.btn:hover,
button:hover,
.home-check-choice:hover {
  color: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.07) 100%);
  box-shadow: 0 18px 36px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.14);
}

.btn:hover::before,
button:hover::before,
.home-check-choice:hover::before {
  width: 170%;
}

.btn:active,
button:active,
.home-check-choice:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(0,0,0,0.22), inset 0 2px 8px rgba(0,0,0,0.18);
}

.btn:focus-visible,
button:focus-visible,
.home-check-choice:focus-visible {
  outline: none;
  border-color: rgba(116, 176, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(76, 140, 255, 0.20), 0 18px 36px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.14);
}

.btn-primary {
  color: #ffffff !important;
  border: 1px solid rgba(125, 176, 255, 0.30) !important;
  background: linear-gradient(135deg, rgba(76,140,255,0.92) 0%, rgba(58,111,224,0.88) 100%) !important;
  box-shadow: 0 16px 34px rgba(76,140,255,0.30), inset 0 1px 0 rgba(255,255,255,0.18) !important;
}

.btn-primary:hover {
  color: #ffffff !important;
  border-color: rgba(157, 197, 255, 0.42) !important;
  box-shadow: 0 22px 42px rgba(76,140,255,0.42), inset 0 1px 0 rgba(255,255,255,0.22) !important;
}

.btn-outline-dark,
.btn-outline-light {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.16) !important;
  background: rgba(255,255,255,0.04) !important;
}

.btn-outline-dark:hover,
.btn-outline-light:hover {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.24) !important;
  background: rgba(255,255,255,0.10) !important;
}

.home-check-choice {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  min-height: 56px;
  padding: 15px 18px;
}

.home-check-choice.is-selected,
.home-check-choice[aria-pressed="true"] {
  border-color: rgba(125, 176, 255, 0.42);
  background: linear-gradient(135deg, rgba(76,140,255,0.22) 0%, rgba(58,111,224,0.14) 100%);
  box-shadow: 0 16px 34px rgba(76,140,255,0.18), inset 0 1px 0 rgba(255,255,255,0.14);
}

.home-check-choice.is-selected::before,
.home-check-choice[aria-pressed="true"]::before {
  width: 100%;
}

.btn-lg {
  min-height: 58px;
  padding: 16px 26px;
  font-size: 16px;
  border-radius: 18px;
}

.btn-sm {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
  border-radius: 12px;
}

/* =========================================================
   HOME SOLUTIONS – PRO LAYOUT FINAL FIXED
========================================================= */

.home-solutions-section-editorial {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(122, 185, 223, 0.12), transparent 28%), radial-gradient(circle at 90% 30%, rgba(0, 103, 166, 0.08), transparent 24%), linear-gradient(180deg, #f6fbff 0%, #eef6fb 100%);
}

.home-solutions-head-editorial {
  max-width: 760px;
}

.home-solutions-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.home-solutions-head-editorial h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: #10202f;
}

.home-solutions-head-editorial p {
  margin: 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.72;
  color: rgba(16, 32, 47, 0.74);
}

.home-solutions-grid-pro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.home-solutions-grid-pro > a:nth-child(1) { grid-column: 1 / 2; grid-row: 1; }
.home-solutions-grid-pro > a:nth-child(2) { grid-column: 2 / 3; grid-row: 1; }
.home-solutions-grid-pro > a:nth-child(3) { grid-column: 2 / 3; grid-row: 2; }
.home-solutions-grid-pro > a:nth-child(4) { grid-column: 1 / 2; grid-row: 2; min-height: 210px; }
.home-solutions-grid-pro > a:nth-child(5) { grid-column: 2 / 3; grid-row: 3; transform: scale(0.98); opacity: 0.95; }

.home-solution-pro-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 250px;
  padding: 28px;
  border-radius: 32px;
  overflow: hidden;
  text-decoration: none;
  transform: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(247,251,255,0.93) 100%);
  border: 1px solid rgba(11, 111, 184, 0.08);
  box-shadow:
    0 26px 66px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.98);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease;
}

.home-solution-pro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(122, 185, 223, 0.18), transparent 30%),
    radial-gradient(circle at 14% 110%, rgba(255, 149, 76, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.24), transparent 46%);
  opacity: 0.95;
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-solution-pro-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 18px;
  height: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(11, 111, 184, 0), rgba(11, 111, 184, 0.14), rgba(11, 111, 184, 0));
  opacity: 0.78;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.home-solution-pro-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 149, 76, 0.16);
  box-shadow:
    0 36px 82px rgba(15, 23, 42, 0.14),
    0 10px 28px rgba(255, 149, 76, 0.08),
    inset 0 1px 0 rgba(255,255,255,1);
}

.home-solution-pro-card:hover::before {
  opacity: 1;
  transform: scale(1.02);
}

.home-solution-pro-card:hover::after {
  opacity: 1;
  transform: scaleX(1.06);
}

.home-solution-pro-card > * {
  position: relative;
  z-index: 1;
}

.home-solution-pro-card-hero {
  min-height: 250px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.home-solution-pro-card-hero h3 {
  max-width: 11ch;
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 0.96;
  margin-top: 4px;
  margin-bottom: 12px;
}

.home-solution-pro-card-hero p {
  max-width: 34ch;
  margin-bottom: 20px;
}

.home-solution-pro-card-small {
  min-height: 210px;
}

.home-solution-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  gap: 10px;
  margin-bottom: 18px;
  padding: 0;
  border-radius: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0b6fb8;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-solution-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2a35d 0%, #ea7d2f 100%);
  box-shadow: 0 0 0 5px rgba(240, 138, 56, 0.12);
}

.home-solution-eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(240, 138, 56, 0.72), rgba(240, 138, 56, 0));
}

.home-solution-pro-card h3 {
  margin: 0 0 12px;
  max-width: 16ch;
  font-family: var(--font-display, "Archivo", sans-serif);
  font-size: clamp(24px, 2.2vw, 35px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: #0f1f32;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-solution-pro-card p {
  margin: 0 0 18px;
  max-width: 40ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(16, 32, 47, 0.64);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-solution-pro-card-small h3 {
  max-width: 17ch;
  font-size: clamp(21px, 1.85vw, 29px);
}

.home-solution-pro-card-small p {
  max-width: 34ch;
  font-size: 14px;
  line-height: 1.58;
}

.home-solution-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 31, 50, 0.08);
}

.home-solution-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.92);
  border: 1px solid rgba(240, 138, 56, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.96);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(16, 32, 47, 0.78);
  position: relative;
  padding-left: 25px;
}

.home-solution-meta span::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #f08a38;
  box-shadow: 0 0 0 4px rgba(240, 138, 56, 0.10);
}

.home-solution-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  align-items: center;
  gap: 10px 14px;
  margin-top: auto;
  padding-top: 10px;
  color: #0b6fb8;
  transition: transform 0.35s ease, color 0.35s ease;
}

.home-solution-cta .cta-label {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #0b6fb8;
}

.home-solution-cta .cta-sub {
  grid-column: 1;
  width: fit-content;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.96) 0%, rgba(255, 243, 229, 0.92) 100%);
  border: 1px solid rgba(240, 138, 56, 0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.96);
  font-size: 12px;
  font-weight: 800;
  color: #c56824;
}

.home-solution-cta .cta-sub::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3a35a 0%, #e57a2b 100%);
  box-shadow: 0 0 0 4px rgba(240, 138, 56, 0.10);
}

.home-solution-cta .cta-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(244,249,255,0.92) 100%);
  border: 1px solid rgba(11, 111, 184, 0.08);
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.98);
  font-size: 18px;
  color: #0b6fb8;
}

.home-solution-pro-card:hover h3,
.home-solution-pro-card:hover p {
  transform: translateY(-2px);
}

.home-solution-pro-card:hover .home-solution-cta .cta-arrow {
  transform: translate(2px, -2px);
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.12),
    0 8px 18px rgba(255, 149, 76, 0.10),
    inset 0 1px 0 rgba(255,255,255,1);
}

.home-solution-pro-card:hover .home-solution-meta span {
  background: rgba(255, 251, 246, 0.98);
  border-color: rgba(240, 138, 56, 0.18);
}

/* stronger card hierarchy */
.home-solutions-grid-pro > a:nth-child(1) {
  background:
    radial-gradient(circle at 78% 18%, rgba(125, 185, 255, 0.20), transparent 26%),
    radial-gradient(circle at 12% 108%, rgba(255, 149, 76, 0.04), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(245,249,255,0.94) 100%);
  border-color: rgba(83, 142, 222, 0.14);
  box-shadow: 0 36px 86px rgba(15, 23, 42, 0.13), inset 0 1px 0 rgba(255,255,255,1);
}
.home-solutions-grid-pro > a:nth-child(2) {
  background:
    radial-gradient(circle at 82% 16%, rgba(88, 152, 255, 0.18), transparent 28%),
    radial-gradient(circle at 12% 108%, rgba(255, 149, 76, 0.035), transparent 18%),
    linear-gradient(180deg, rgba(248,252,255,0.99) 0%, rgba(234,242,252,0.94) 100%);
  border-color: rgba(73, 134, 214, 0.14);
}
.home-solutions-grid-pro > a:nth-child(3) {
  background:
    radial-gradient(circle at 82% 16%, rgba(170, 180, 190, 0.14), transparent 28%),
    radial-gradient(circle at 12% 108%, rgba(255, 149, 76, 0.035), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(243,243,246,0.95) 100%);
  border-color: rgba(132, 142, 154, 0.12);
}
.home-solutions-grid-pro > a:nth-child(4) {
  background:
    radial-gradient(circle at 82% 16%, rgba(90, 125, 170, 0.16), transparent 28%),
    radial-gradient(circle at 12% 108%, rgba(255, 149, 76, 0.035), transparent 18%),
    linear-gradient(180deg, rgba(248,250,253,0.99) 0%, rgba(234,239,245,0.94) 100%);
  border-color: rgba(92, 116, 148, 0.14);
}
.home-solutions-grid-pro > a:nth-child(5) {
  background:
    radial-gradient(circle at 82% 16%, rgba(135, 205, 255, 0.16), transparent 28%),
    radial-gradient(circle at 12% 108%, rgba(255, 149, 76, 0.035), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(241,248,255,0.95) 100%);
  border-color: rgba(120, 186, 232, 0.14);
}

/* scroll effect */
.home-solution-pro-card {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(4px);
}

.home-solution-pro-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0s;
}

.home-solutions-grid-pro > a:nth-child(1).is-visible { transition-delay: 0.02s; }
.home-solutions-grid-pro > a:nth-child(2).is-visible { transition-delay: 0.10s; }
.home-solutions-grid-pro > a:nth-child(3).is-visible { transition-delay: 0.16s; }
.home-solutions-grid-pro > a:nth-child(4).is-visible { transition-delay: 0.22s; }
.home-solutions-grid-pro > a:nth-child(5).is-visible { transition-delay: 0.28s; }

/* =========================================================
   HOME CHECK SECTION – COMPLETE FUNNEL CSS
========================================================= */

.home-check-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, rgba(64, 124, 255, 0.10), transparent 28%), radial-gradient(circle at 85% 30%, rgba(0, 180, 255, 0.08), transparent 26%), linear-gradient(180deg, #081722 0%, #0b1821 100%);
}

.home-check-section::before,
.home-check-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.45;
}

.home-check-section::before {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -60px;
  background: rgba(76, 140, 255, 0.16);
}

.home-check-section::after {
  width: 220px;
  height: 220px;
  left: -60px;
  bottom: -60px;
  background: rgba(0, 184, 255, 0.12);
}

.home-check-intro {
  max-width: 760px;
}

.home-check-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fc8ff;
}

.home-check-intro h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  color: #ffffff;
}

.home-check-intro p {
  margin: 0;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

.home-check-shell {
  position: relative;
  z-index: 1;
  border-radius: 34px;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 80px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-check-shell-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}

.home-check-shell-glow-1 {
  width: 220px;
  height: 220px;
  left: -50px;
  top: 8%;
  background: rgba(64, 124, 255, 0.10);
}

.home-check-shell-glow-2 {
  width: 240px;
  height: 240px;
  right: -70px;
  bottom: 8%;
  background: rgba(0, 194, 255, 0.08);
}

.home-check-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.home-check-step-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 10px 24px rgba(0,0,0,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-check-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(132, 183, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 16px 34px rgba(0,0,0,0.14);
}

.home-check-step-no {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #8fc8ff;
  background: rgba(74, 140, 255, 0.10);
  border: 1px solid rgba(140, 190, 255, 0.18);
}

.home-check-step-copy { min-width: 0; }
.home-check-step-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(143, 200, 255, 0.92);
}

.home-check-step-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
  color: #ffffff;
}

.home-check-step-copy p {
  margin: 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
}

.home-check-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.home-check-actions .btn-outline-dark,
.home-check-nav .btn-outline-dark {
  border-color: rgba(255,255,255,0.16);
  color: #ffffff;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-check-actions .btn-outline-dark:hover,
.home-check-nav .btn-outline-dark:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  color: #ffffff;
}

.home-check-side-card {
  height: 100%;
  border-radius: 28px;
  padding: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.home-check-side-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.home-check-card-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fc8ff;
}

.home-check-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}

.home-check-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #76d38b;
  box-shadow: 0 0 12px rgba(118, 211, 139, 0.55);
}

.home-check-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 20px;
}

.home-check-progress span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.home-check-progress span.is-active {
  background: rgba(84, 144, 255, 0.85);
  border-color: rgba(132, 183, 255, 0.9);
  color: #fff;
  box-shadow: 0 10px 20px rgba(84, 144, 255, 0.24);
}

.home-check-funnel-step {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.home-check-funnel-step.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.home-check-funnel-step h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.06;
  color: ##000;
}

.home-check-funnel-step > p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}

.home-check-nav { margin-top: 16px; }

.home-check-choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.home-check-result-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75), 0 16px 34px rgba(0,0,0,0.10);
}

.home-check-result-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f6db3;
}

.home-check-result-box strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.1;
  color: #10202f;
}

.home-check-result-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #435364;
}

.home-check-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.home-check-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #cfe7ff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-check-highlight {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.home-check-highlight-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8fc8ff;
  background: rgba(74, 140, 255, 0.10);
  border: 1px solid rgba(140, 190, 255, 0.18);
}

.home-check-highlight-icon iconify-icon { font-size: 22px; }
.home-check-highlight strong { display: block; margin-bottom: 6px; color: #ffffff; font-size: 16px; }
.home-check-highlight p { margin: 0; font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.68); }

.home-check-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-check-mini-box {
  min-height: 96px;
  padding: 16px 14px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.home-check-mini-number {
  display: block;
  margin-bottom: 6px;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  color: #8fc8ff;
}

.home-check-mini-label {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,0.62);
}

@media (prefers-reduced-motion: reduce) {
  .home-solution-pro-card,
  .home-solution-pro-card::before,
  .home-solution-pro-card::after,
  .home-solution-pro-card h3,
  .home-solution-pro-card p,
  .home-solution-cta,
  .home-solution-cta::after {
    transition: none;
  }

  .home-solution-pro-card,
  .home-solution-pro-card.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (min-width: 768px) {
  .home-check-choice-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1199.98px) {
  .home-check-shell {
    padding: 18px;
  }

  .home-check-step-card,
  .home-check-side-card {
    padding: 20px;
  }
}

@media (max-width: 991.98px) {
  .home-solutions-grid-pro {
    grid-template-columns: 1fr;
  }

  .home-solutions-grid-pro > a:nth-child(1),
  .home-solutions-grid-pro > a:nth-child(2),
  .home-solutions-grid-pro > a:nth-child(3),
  .home-solutions-grid-pro > a:nth-child(4),
  .home-solutions-grid-pro > a:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    transform: none;
    opacity: 1;
  }

  .home-solution-pro-card,
  .home-solution-pro-card-hero,
  .home-solution-pro-card-small {
    min-height: 250px;
    padding: 24px;
  }

  .home-solution-pro-card h3,
  .home-solution-pro-card-hero h3,
  .home-solution-pro-card-small h3 {
    max-width: 16ch;
    font-size: 30px;
    line-height: 1.01;
  }

  .home-solution-pro-card p,
  .home-solution-pro-card-hero p,
  .home-solution-pro-card-small p {
    max-width: 42ch;
  }
}

@media (max-width: 767.98px) {
  .home-check-step-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-check-mini-grid {
    grid-template-columns: 1fr;
  }

  .home-check-actions {
    flex-direction: column;
  }

  .home-check-actions .btn {
    width: 100%;
  }

  .home-check-choice-grid {
    grid-template-columns: 1fr;
  }

  .home-check-funnel-step h3 {
    font-size: 28px;
  }
}

@media (max-width: 575.98px) {
  .home-solutions-head-editorial h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .home-solutions-head-editorial p {
    font-size: 15px;
    line-height: 1.68;
  }

  .home-solution-pro-card,
  .home-solution-pro-card-hero,
  .home-solution-pro-card-small {
    min-height: 210px;
    padding: 20px;
    border-radius: 24px;
  }

  .home-solution-pro-card h3,
  .home-solution-pro-card-hero h3,
  .home-solution-pro-card-small h3 {
    max-width: none;
    font-size: 24px;
    line-height: 1.05;
  }

  .home-solution-pro-card p,
  .home-solution-pro-card-hero p,
  .home-solution-pro-card-small p {
    max-width: none;
    font-size: 14px;
    line-height: 1.58;
  }

  .home-solution-meta {
    gap: 7px;
    margin-top: 16px;
    padding-top: 12px;
  }

  .home-solution-meta span {
    min-height: 28px;
    padding: 6px 11px;
    font-size: 11px;
  }

  .home-solution-eyebrow {
    gap: 8px;
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .home-solution-eyebrow::after {
    width: 24px;
  }

  .home-solution-cta {
    gap: 8px 10px;
  }

  .home-solution-cta .cta-label {
    font-size: 15px;
  }

  .home-solution-cta .cta-sub {
    padding: 8px 14px;
    font-size: 11px;
  }

  .home-solution-cta .cta-arrow {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}
/* =========================================================
   MOBILE CARD SLIDER (APPLE STYLE)
========================================================= */

@media (max-width: 767.98px) {

  .home-solutions-grid-pro {
    display: flex;
    overflow-x: auto;
    gap: 16px;

    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .home-solutions-grid-pro::-webkit-scrollbar {
    display: none;
  }

  .home-solutions-grid-pro {
    scrollbar-width: none;
  }

  .home-solutions-grid-pro > a {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .home-solution-pro-card {
    min-height: 220px;
  }
}
@media (max-width: 767.98px) {

  .home-solutions-grid-pro > a {
    flex: 0 0 85%;
    scroll-snap-align: center;

    transform: scale(0.92);
    opacity: 0.7;

    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .home-solutions-grid-pro > a.is-active {
    transform: scale(1);
    opacity: 1;
  }
}
/* =========================================================
   HOME SOLUTIONS – MOBILE SLIDER FINAL POLISH
========================================================= */

@media (max-width: 767.98px) {
  .home-solutions-grid-pro-wrap {
    position: relative;
  }

  .home-solutions-grid-pro-wrap::before,
  .home-solutions-grid-pro-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 36px;
    width: 28px;
    z-index: 3;
    pointer-events: none;
  }

  .home-solutions-grid-pro-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #eef6fb 0%, rgba(238, 246, 251, 0) 100%);
  }

  .home-solutions-grid-pro-wrap::after {
    right: 0;
    background: linear-gradient(270deg, #eef6fb 0%, rgba(238, 246, 251, 0) 100%);
  }

  .home-solutions-grid-pro {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 4px 10px 14px;
    margin: 0 -10px;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .home-solutions-grid-pro::-webkit-scrollbar {
    display: none;
  }

  .home-solutions-grid-pro > a {
    flex: 0 0 84%;
    scroll-snap-align: center;

    transform: scale(0.92);
    opacity: 0.72;
    transition:
      transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.4s ease,
      box-shadow 0.35s ease;
  }

  .home-solutions-grid-pro > a.is-active {
    transform: scale(1);
    opacity: 1;
  }

  .home-solutions-grid-pro > a.is-active .home-solution-pro-card {
    box-shadow:
      0 22px 52px rgba(0,0,0,0.16),
      inset 0 1px 0 rgba(255,255,255,0.22);
  }

  .home-solution-pro-card,
  .home-solution-pro-card-hero,
  .home-solution-pro-card-small {
    min-height: 220px;
  }

  /* Dots */
  .home-solutions-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
  }

  .home-solutions-slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(16, 32, 47, 0.18);
    transition:
      transform 0.3s ease,
      background 0.3s ease,
      width 0.3s ease;
  }

  .home-solutions-slider-dot.is-active {
    width: 22px;
    background: rgba(11, 111, 184, 0.88);
  }
}

@media (min-width: 768px) {
  .home-solutions-slider-dots {
    display: none;
  }
}
/* =========================================================
   WHATSAPP CHAT WIDGET
========================================================= */

.wa-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
}

/* Button */
.wa-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  cursor: pointer;

  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Box */
.wa-box {
  position: absolute;
  bottom: 80px;
  right: 0;

  width: 320px;
  border-radius: 20px;
  overflow: hidden;

  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);

  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;

  transition: all 0.3s ease;
}

.wa-box.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header */
.wa-header {
  background: #25d366;
  color: #fff;
  padding: 16px;
}

.wa-header strong {
  display: block;
  font-size: 16px;
}

.wa-header span {
  font-size: 13px;
  opacity: 0.9;
}

/* Body */
.wa-body {
  padding: 16px;
}

.wa-body p {
  margin-bottom: 12px;
}

/* Optionen */
.wa-option {
  display: block;
  background: #f3f5f7;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #111;

  transition: all 0.2s ease;
}

.wa-option:hover {
  background: #e9eef3;
}

/* CTA */
.wa-cta {
  display: block;
  margin-top: 10px;
  text-align: center;
  background: #25d366;
  color: #fff;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
}


/* =========================================================
   FINAL FUNNEL REPAIR PATCH
   Saubere, globale Reparatur für alle Produkt-Funnels
========================================================= */

/* Basis-Grid je nach Grid-Klasse */
.privat-option-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.privat-option-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.privat-option-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Spezielle 2x2-Variante für Seiten, die .leistungs-grid nutzen */
.privat-option-grid.leistungs-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch;
}

/* Harte globale Überschreibungen neutralisieren */
.privat-step[data-step="1"] .privat-option-grid.two,
.privat-step[data-step="2"] .privat-option-grid.two,
.privat-step[data-step="3"] .privat-option-grid.two,
.privat-step[data-step="4"] .privat-option-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.privat-step[data-step="1"] .privat-option-grid.three,
.privat-step[data-step="2"] .privat-option-grid.three,
.privat-step[data-step="3"] .privat-option-grid.three,
.privat-step[data-step="4"] .privat-option-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.privat-step[data-step="1"] .privat-option-grid.four,
.privat-step[data-step="2"] .privat-option-grid.four,
.privat-step[data-step="3"] .privat-option-grid.four,
.privat-step[data-step="4"] .privat-option-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.privat-step[data-step="1"] .privat-option-grid.leistungs-grid,
.privat-step[data-step="2"] .privat-option-grid.leistungs-grid,
.privat-step[data-step="3"] .privat-option-grid.leistungs-grid,
.privat-step[data-step="4"] .privat-option-grid.leistungs-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

/* Karten-Grundlayout sauber stabilisieren */
.privat-option-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-height: 170px;
  height: 100%;
  overflow: hidden;
}

.privat-option-card .option-badge {
  z-index: 1;
}

.privat-option-card strong {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.privat-option-card small {
  display: block;
  width: 100%;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

/* Auswahl-Häkchen sauber sichtbar machen */
.privat-option-card.is-selected {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.privat-option-card.is-selected::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b67a 0%, #009e68 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  z-index: 2;
}

.privat-option-card.is-selected::before {
  content: "✓";
  position: absolute;
  top: 13px;
  right: 20px;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  z-index: 3;
}

/* Step-spezifische Größen nur leicht, nicht zerstörerisch */
.privat-step[data-step="1"] .privat-option-card,
.privat-step[data-step="3"] .privat-option-card {
  min-height: 170px;
}

.privat-step[data-step="4"] .privat-option-grid.four .privat-option-card,
.privat-option-grid.four .privat-option-card {
  min-height: 220px;
}

.privat-option-grid.leistungs-grid .privat-option-card {
  min-height: 220px;
}

/* Funnel-Buttons wieder normal */
.privat-back,
.privat-submit,
.privat-success-btn,
.rs-card-button {
  border-radius: 999px;
}

/* Mobile */
@media (max-width: 991.98px) {
  .privat-option-grid.two,
  .privat-option-grid.three,
  .privat-option-grid.four,
  .privat-option-grid.leistungs-grid,
  .privat-step[data-step="1"] .privat-option-grid,
  .privat-step[data-step="2"] .privat-option-grid,
  .privat-step[data-step="3"] .privat-option-grid,
  .privat-step[data-step="4"] .privat-option-grid {
    grid-template-columns: 1fr !important;
  }

  .privat-option-card,
  .privat-option-grid.four .privat-option-card,
  .privat-option-grid.leistungs-grid .privat-option-card {
    min-height: auto;
    height: auto;
  }

  .privat-option-card strong,
  .privat-option-card small {
    min-height: 0 !important;
  }
}
/* =========================================================
   FINAL OVERRIDE – HÄKCHEN ÜBERALL ERZWINGEN
========================================================= */

/* ALLE alten Varianten neutralisieren */
.privat-option-card.is-selected::before {
  content: "✓" !important;
}

.privat-option-card.is-selected::after {
  content: "" !important;
}

/* Grüner Kreis */
.privat-option-card.is-selected::after {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #00b67a 0%, #009e68 100%) !important;
  box-shadow: 0 8px 18px rgba(0, 182, 122, 0.28) !important;
  z-index: 10 !important;
}

/* Weißes Häkchen IMMER oben */
.privat-option-card.is-selected::before {
  position: absolute !important;
  top: 14px !important;
  right: 18px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  z-index: 11 !important;
  display: block !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

/* Badge verschieben damit es nicht kollidiert */
.privat-option-card.is-selected .option-badge {
  right: 44px !important;
}
/* Nur Tabelle / spezielle Buttons */
.table-more-btn:hover,
#tableBtn:hover {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 100%) !important;
  color: #fff !important;
  border-color: transparent !important;
}

/* Nur Funnel Submit */
.privat-funnel-section .privat-submit:hover {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 100%) !important;
  color: #fff !important;
}

/* Nur spezielle Glass Buttons im Funnelbereich */
.privat-funnel-section .btn-glass:hover {
  background: rgba(255,255,255,0.12) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.2) !important;
}
/* ===============================
   FUNNEL ZURÜCK BUTTON – FINAL FIX
=============================== */

.privat-funnel-section .privat-back,
.privat-funnel-section .funnel-back,
.privat-funnel-section .btn.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 22px;
  border-radius: 999px;

  font-weight: 600;
  font-size: 14px;

  background: rgba(255,255,255,0.08);
  color: #ffffff !important;

  border: 1px solid rgba(255,255,255,0.25);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: all 0.25s ease;
}

/* Hover */
.privat-funnel-section .privat-back:hover,
.privat-funnel-section .funnel-back:hover,
.privat-funnel-section .btn.secondary:hover {
  background: rgba(255,255,255,0.16) !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.45) !important;

  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Active */
.privat-funnel-section .privat-back:active,
.privat-funnel-section .funnel-back:active,
.privat-funnel-section .btn.secondary:active {
  transform: translateY(0);
}

/* WICHTIG: killt weiße Bootstrap Styles */
.privat-funnel-section .btn.secondary {
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
}
/* Funnel Zurück-Button sauber sichtbar */
.privat-funnel-section .privat-back,
.privat-funnel-section .funnel-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  box-shadow: none !important;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.privat-funnel-section .privat-back:hover,
.privat-funnel-section .funnel-back:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.42) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18) !important;
  transform: translateY(-2px);
}

.privat-funnel-section .privat-back:focus,
.privat-funnel-section .funnel-back:focus {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.42) !important;
  outline: none;
}

.privat-funnel-section .privat-back:active,
.privat-funnel-section .funnel-back:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.18) !important;
}
/* =========================================
   FUNNEL BACK BUTTON – FINAL LIGHT FIX
========================================= */

.privat-funnel-section .privat-back,
.privat-funnel-section .funnel-back,
.privat-funnel-section .btn.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 103, 166, 0.14) !important;
  background: rgba(0, 103, 166, 0.08) !important;
  color: var(--color-primary) !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.privat-funnel-section .privat-back:hover,
.privat-funnel-section .funnel-back:hover,
.privat-funnel-section .btn.secondary:hover {
  background: rgba(0, 103, 166, 0.14) !important;
  color: var(--color-primary) !important;
  border-color: rgba(0, 103, 166, 0.24) !important;
  box-shadow: 0 10px 24px rgba(0, 103, 166, 0.12) !important;
  transform: translateY(-1px);
}

.privat-funnel-section .privat-back:focus,
.privat-funnel-section .funnel-back:focus,
.privat-funnel-section .btn.secondary:focus {
  background: rgba(0, 103, 166, 0.14) !important;
  color: var(--color-primary) !important;
  border-color: rgba(0, 103, 166, 0.26) !important;
  outline: none;
}

.privat-funnel-section .privat-back:active,
.privat-funnel-section .funnel-back:active,
.privat-funnel-section .btn.secondary:active {
  transform: translateY(0);
  background: rgba(0, 103, 166, 0.18) !important;
  color: var(--color-primary) !important;
}
/* =========================================
   INDEX SEO SERVICES
========================================= */

.index-seo-services {
  margin-top: 48px;
}

.index-seo-service-card {
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.index-seo-service-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.index-seo-service-card h4 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.2;
}

.index-seo-service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.index-seo-services-note {
  margin-top: 28px;
  padding: 24px 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.index-seo-services-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.index-seo-services-actions {
  display: flex;
    /* =========================================
   INDEX PROTECTION / SEO SECTION
========================================= */

.index-protection-section {
  background: #f7f8fa;
  position: relative;
}

.index-protection-section h2,
.index-protection-section h3,
.index-protection-section h4 {
  color: #0f172a;
}

.index-protection-section p {
  color: rgba(15, 23, 42, 0.72);
}

.index-protection-grid {
  margin-top: 12px;
}

.index-protection-card {
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.index-protection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.09);
  border-color: rgba(37, 99, 235, 0.12);
}

.index-protection-card h4 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.index-protection-card p {
  margin: 0;
  line-height: 1.75;
}

.index-protection-note {
  margin-top: 28px;
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.index-protection-note p {
  margin: 0;
  line-height: 1.8;
}

/* =========================================
   INDEX COMPARE SECTION
========================================= */

.index-compare-section {
  margin-top: 18px;
  padding: 36px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.index-compare-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.index-compare-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.index-compare-head h3 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.06;
}

.index-compare-head p {
  margin: 0;
  line-height: 1.8;
}

.compare-case-card {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.compare-case-top {
  padding: 28px 26px 22px;
  background: linear-gradient(180deg, #0f172a 0%, #182235 100%);
}

.compare-case-top h4 {
  margin: 12px 0 0;
  color: #fff;
  font-size: 1.5rem;
}

.compare-case-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  font-size: 1.4rem;
}

.compare-case-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-side {
  min-height: 220px;
  padding: 26px 22px;
}

.compare-side-negative {
  background: #fff4f2;
  border-right: 1px solid rgba(15, 23, 42, 0.06);
}

.compare-side-positive {
  background: #effaf2;
}

.compare-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-side-negative .compare-label {
  color: #dc2626;
}

.compare-side-positive .compare-label {
  color: #16a34a;
}

.compare-side strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.9rem;
  line-height: 1.05;
  color: #0f172a;
}

.compare-side p {
  margin: 0;
  line-height: 1.7;
}

.index-compare-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.index-compare-cta .btn {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {
  .index-compare-section {
    padding: 28px;
    border-radius: 26px;
  }

  .compare-case-top {
    padding: 24px 22px 20px;
  }

  .compare-case-top h4 {
    font-size: 1.3rem;
  }

  .compare-side strong {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .index-protection-card {
    padding: 22px;
    border-radius: 20px;
  }

  .index-protection-note {
    padding: 20px;
    border-radius: 20px;
  }

  .index-compare-section {
    margin-top: 8px;
    padding: 22px;
    border-radius: 22px;
  }

  .compare-case-split {
    grid-template-columns: 1fr;
  }

  .compare-side-negative {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }

  .compare-side {
    min-height: auto;
  }

  .index-compare-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
    /* =========================================
   INDEX PREMIUM PROTECTION SECTION
========================================= */

.index-premium-protection-section {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
  overflow: hidden;
}

.index-premium-heading {
  position: relative;
  z-index: 1;
}

.index-premium-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-premium-heading h2 {
  margin-bottom: 0;
  color: #0f172a;
  font-size: clamp(2.1rem, 3.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.index-premium-heading p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 860px;
}

/* =========================================
   TOP INFO GRID
========================================= */

.index-premium-grid {
  position: relative;
  z-index: 1;
}

.index-premium-info-card {
  position: relative;
  height: 100%;
  padding: 30px 26px 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.96) 100%);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.index-premium-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 32%);
  pointer-events: none;
}

.index-premium-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow:
    0 24px 50px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.index-premium-info-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #2563eb;
  font-size: 1.6rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.index-premium-info-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #2563eb;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-premium-info-card h3 {
  margin-bottom: 12px;
  color: #0f172a;
  font-size: 1.35rem;
  line-height: 1.15;
}

.index-premium-info-card p {
  margin: 0 0 18px;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.8;
  font-size: 0.98rem;
}

.index-premium-info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.index-premium-info-link:hover {
  color: #2563eb;
  transform: translateX(2px);
}

/* =========================================
   EDITORIAL PANEL
========================================= */

.index-premium-editorial-panel {
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.72));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.index-premium-panel-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-premium-editorial-copy h3 {
  margin-bottom: 14px;
  color: #0f172a;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1.08;
}

.index-premium-editorial-copy p {
  margin-bottom: 0;
  color: rgba(15, 23, 42, 0.74);
  line-height: 1.85;
}

.index-premium-editorial-copy p + p {
  margin-top: 16px;
}

.index-premium-editorial-box {
  display: grid;
  gap: 14px;
}

.editorial-box-item {
  padding: 20px 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.editorial-box-item strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 1.02rem;
}

.editorial-box-item span {
  color: rgba(15, 23, 42, 0.7);
  line-height: 1.7;
}

/* =========================================
   COMPARE SECTION
========================================= */

.index-premium-compare-wrap {
  padding: 36px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.09);
}

.index-premium-compare-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.index-premium-compare-head h3 {
  margin-bottom: 12px;
  color: #0f172a;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.index-premium-compare-head p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.85;
}

.index-premium-compare-card {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.index-premium-compare-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.index-premium-compare-top {
  padding: 28px 26px 24px;
  background:
    linear-gradient(180deg, #0f172a 0%, #162237 100%);
}

.index-premium-compare-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 1.5rem;
}

.index-premium-compare-top h4 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.45rem;
}

.index-premium-compare-top p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.index-premium-compare-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.index-premium-compare-side {
  min-height: 230px;
  padding: 26px 22px;
}

.index-premium-compare-side.is-negative {
  background: linear-gradient(180deg, #fff4f3 0%, #ffe9e7 100%);
  border-right: 1px solid rgba(148, 163, 184, 0.16);
}

.index-premium-compare-side.is-positive {
  background: linear-gradient(180deg, #effcf3 0%, #e0f7e8 100%);
}

.compare-side-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-premium-compare-side.is-negative .compare-side-label {
  color: #dc2626;
}

.index-premium-compare-side.is-positive .compare-side-label {
  color: #16a34a;
}

.index-premium-compare-side strong {
  display: block;
  margin-bottom: 12px;
  color: #0f172a;
  font-size: 1.95rem;
  line-height: 1.05;
}

.index-premium-compare-side small {
  display: block;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.75;
  font-size: 0.98rem;
}

.index-premium-compare-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.index-premium-compare-actions .btn {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 1199.98px) {
  .index-premium-info-card {
    padding: 26px 22px 22px;
  }
}

@media (max-width: 991.98px) {
  .index-premium-editorial-panel,
  .index-premium-compare-wrap {
    padding: 28px;
    border-radius: 26px;
  }

  .index-premium-compare-top {
    padding: 24px 22px 20px;
  }

  .index-premium-compare-side strong {
    font-size: 1.55rem;
  }
}

@media (max-width: 767.98px) {
  .index-premium-heading h2 {
    font-size: 2rem;
  }

  .index-premium-info-card {
    border-radius: 22px;
  }

  .index-premium-editorial-panel,
  .index-premium-compare-wrap {
    padding: 22px;
    border-radius: 22px;
  }

  .index-premium-compare-split {
    grid-template-columns: 1fr;
  }

  .index-premium-compare-side {
    min-height: auto;
  }

  .index-premium-compare-side.is-negative {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  }

  .index-premium-compare-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
    /* =========================================
   INDEX APPLE INSPIRED SECTION
========================================= */

.index-apple-section {
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.06), transparent 26%),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.05), transparent 24%),
    linear-gradient(180deg, #f5f5f7 0%, #eef2f7 100%);
  overflow: hidden;
}

.index-apple-head {
  margin-bottom: 34px;
}

.index-apple-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-apple-head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 980px;
}

.index-apple-head-link-wrap {
  display: flex;
  justify-content: flex-end;
}

.index-apple-head-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
}

.index-apple-head-link:hover {
  color: #1747b3;
}

/* =========================================
   HORIZONTAL GALLERY
========================================= */

.index-apple-gallery-wrap {
  position: relative;
  margin-bottom: 54px;
}

.index-apple-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 372px);
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.index-apple-gallery::-webkit-scrollbar {
  display: none;
}

.index-apple-card {
  position: relative;
  min-height: 540px;
  padding: 30px 30px 28px;
  border-radius: 30px;
  background: rgba(255,255,255,0.88);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.5);
  scroll-snap-align: start;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.index-apple-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 30%);
  pointer-events: none;
}

.index-apple-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 26px 56px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.index-apple-card-accent {
  background:
    linear-gradient(180deg, rgba(239,246,255,0.95) 0%, rgba(255,255,255,0.92) 100%);
}

.index-apple-card-content {
  position: relative;
  z-index: 2;
}

.index-apple-card-topic {
  display: block;
  margin-bottom: 12px;
  color: #111827;
  font-size: 1rem;
  font-weight: 700;
}

.index-apple-card h3 {
  margin-bottom: 14px;
  color: #111827;
  font-size: clamp(1.85rem, 2.4vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.index-apple-card p {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  font-size: 1.02rem;
  line-height: 1.65;
}

.index-apple-card-visual {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 26px;
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 1;
}

.index-apple-card-icon {
  width: 150px;
  height: 150px;
  border-radius: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #2563eb;
  box-shadow:
    0 18px 40px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.95);
  font-size: 4.2rem;
}

.index-apple-card-trigger {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #fff;
  text-decoration: none;
  z-index: 3;
  transition: transform 0.25s ease, background 0.25s ease;
}

.index-apple-card-trigger:hover {
  transform: scale(1.08);
  background: #2563eb;
  color: #fff;
}

.index-apple-gallery-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.index-apple-nav-btn {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.06);
  color: #111827;
  transition: all 0.25s ease;
}

.index-apple-nav-btn:hover {
  background: #111827;
  color: #fff;
}

/* =========================================
   COMPARE SECTION
========================================= */

.index-apple-compare {
  padding: 38px;
  border-radius: 34px;
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.index-apple-compare-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.index-apple-compare-head h3 {
  margin-bottom: 12px;
  color: #111827;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.index-apple-compare-head p {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  line-height: 1.8;
}

.index-apple-compare-card {
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.index-apple-compare-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.11);
}

.index-apple-compare-top {
  padding: 26px 24px 22px;
  background: linear-gradient(180deg, #111827 0%, #182335 100%);
}

.index-apple-compare-top-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.45rem;
}

.index-apple-compare-top h4 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.4rem;
}

.index-apple-compare-top p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.index-apple-compare-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.index-apple-compare-side {
  min-height: 220px;
  padding: 24px 22px;
}

.index-apple-compare-side.is-negative {
  background: linear-gradient(180deg, #fff3f2 0%, #ffe7e4 100%);
  border-right: 1px solid rgba(148, 163, 184, 0.14);
}

.index-apple-compare-side.is-positive {
  background: linear-gradient(180deg, #eefcf2 0%, #def7e6 100%);
}

.compare-mini-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-apple-compare-side.is-negative .compare-mini-label {
  color: #dc2626;
}

.index-apple-compare-side.is-positive .compare-mini-label {
  color: #16a34a;
}

.index-apple-compare-side strong {
  display: block;
  margin-bottom: 12px;
  color: #111827;
  font-size: 1.8rem;
  line-height: 1.05;
}

.index-apple-compare-side p {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  line-height: 1.7;
}

.index-apple-compare-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.index-apple-compare-actions .btn {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {
  .index-apple-card {
    min-height: 500px;
  }

  .index-apple-compare {
    padding: 28px;
    border-radius: 26px;
  }
}

@media (max-width: 767.98px) {
  .index-apple-head h2 {
    font-size: 2rem;
    line-height: 1.02;
  }

  .index-apple-head-link-wrap {
    justify-content: flex-start;
  }

  .index-apple-gallery {
    grid-auto-columns: 85%;
    gap: 16px;
  }

  .index-apple-card {
    min-height: 460px;
    padding: 24px 22px 22px;
    border-radius: 24px;
  }

  .index-apple-card h3 {
    font-size: 1.65rem;
  }

  .index-apple-card-visual {
    left: 22px;
    right: 22px;
    bottom: 20px;
    height: 140px;
  }

  .index-apple-card-icon {
    width: 110px;
    height: 110px;
    border-radius: 26px;
    font-size: 3rem;
  }

  .index-apple-compare {
    padding: 22px;
    border-radius: 22px;
  }

  .index-apple-compare-split {
    grid-template-columns: 1fr;
  }

  .index-apple-compare-side {
    min-height: auto;
  }

  .index-apple-compare-side.is-negative {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  }

  .index-apple-compare-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.index-seo-services-actions .btn {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
}

@media (max-width: 767.98px) {
  .index-seo-services {
    margin-top: 32px;
  }

  .index-seo-service-card {
    padding: 22px;
    border-radius: 20px;
  }

  .index-seo-services-note {
    padding: 20px;
    border-radius: 20px;
  }

  .index-seo-services-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
   INDEX PROTECTION / SEO SECTION
========================================= */

.index-protection-section {
  background: #f7f8fa;
  position: relative;
}

.index-protection-section h2,
.index-protection-section h3,
.index-protection-section h4 {
  color: #0f172a;
}

.index-protection-section p {
  color: rgba(15, 23, 42, 0.72);
}

.index-protection-grid {
  margin-top: 12px;
}

.index-protection-card {
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.index-protection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.09);
  border-color: rgba(37, 99, 235, 0.12);
}

.index-protection-card h4 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.index-protection-card p {
  margin: 0;
  line-height: 1.75;
}

.index-protection-note {
  margin-top: 28px;
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.index-protection-note p {
  margin: 0;
  line-height: 1.8;
}

/* =========================================
   INDEX COMPARE SECTION
========================================= */

.index-compare-section {
  margin-top: 18px;
  padding: 36px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.index-compare-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.index-compare-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.index-compare-head h3 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.06;
}

.index-compare-head p {
  margin: 0;
  line-height: 1.8;
}

.compare-case-card {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.compare-case-top {
  padding: 28px 26px 22px;
  background: linear-gradient(180deg, #0f172a 0%, #182235 100%);
}

.compare-case-top h4 {
  margin: 12px 0 0;
  color: #fff;
  font-size: 1.5rem;
}

.compare-case-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  font-size: 1.4rem;
}

.compare-case-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-side {
  min-height: 220px;
  padding: 26px 22px;
}

.compare-side-negative {
  background: #fff4f2;
  border-right: 1px solid rgba(15, 23, 42, 0.06);
}

.compare-side-positive {
  background: #effaf2;
}

.compare-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-side-negative .compare-label {
  color: #dc2626;
}

.compare-side-positive .compare-label {
  color: #16a34a;
}

.compare-side strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.9rem;
  line-height: 1.05;
  color: #0f172a;
}

.compare-side p {
  margin: 0;
  line-height: 1.7;
}

.index-compare-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.index-compare-cta .btn {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {
  .index-compare-section {
    padding: 28px;
    border-radius: 26px;
  }

  .compare-case-top {
    padding: 24px 22px 20px;
  }

  .compare-case-top h4 {
    font-size: 1.3rem;
  }

  .compare-side strong {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .index-protection-card {
    padding: 22px;
    border-radius: 20px;
  }

  .index-protection-note {
    padding: 20px;
    border-radius: 20px;
  }

  .index-compare-section {
    margin-top: 8px;
    padding: 22px;
    border-radius: 22px;
  }

  .compare-case-split {
    grid-template-columns: 1fr;
  }

  .compare-side-negative {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }

  .compare-side {
    min-height: auto;
  }

  .index-compare-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
   INDEX PREMIUM PROTECTION SECTION
========================================= */

.index-premium-protection-section {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
  overflow: hidden;
}

.index-premium-heading {
  position: relative;
  z-index: 1;
}

.index-premium-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-premium-heading h2 {
  margin-bottom: 0;
  color: #0f172a;
  font-size: clamp(2.1rem, 3.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.index-premium-heading p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 860px;
}

/* =========================================
   TOP INFO GRID
========================================= */

.index-premium-grid {
  position: relative;
  z-index: 1;
}

.index-premium-info-card {
  position: relative;
  height: 100%;
  padding: 30px 26px 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.96) 100%);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.index-premium-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 32%);
  pointer-events: none;
}

.index-premium-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow:
    0 24px 50px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.index-premium-info-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #2563eb;
  font-size: 1.6rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.index-premium-info-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #2563eb;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-premium-info-card h3 {
  margin-bottom: 12px;
  color: #0f172a;
  font-size: 1.35rem;
  line-height: 1.15;
}

.index-premium-info-card p {
  margin: 0 0 18px;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.8;
  font-size: 0.98rem;
}

.index-premium-info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.index-premium-info-link:hover {
  color: #2563eb;
  transform: translateX(2px);
}

/* =========================================
   EDITORIAL PANEL
========================================= */

.index-premium-editorial-panel {
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.72));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.index-premium-panel-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-premium-editorial-copy h3 {
  margin-bottom: 14px;
  color: #0f172a;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1.08;
}

.index-premium-editorial-copy p {
  margin-bottom: 0;
  color: rgba(15, 23, 42, 0.74);
  line-height: 1.85;
}

.index-premium-editorial-copy p + p {
  margin-top: 16px;
}

.index-premium-editorial-box {
  display: grid;
  gap: 14px;
}

.editorial-box-item {
  padding: 20px 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.editorial-box-item strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 1.02rem;
}

.editorial-box-item span {
  color: rgba(15, 23, 42, 0.7);
  line-height: 1.7;
}

/* =========================================
   COMPARE SECTION
========================================= */

.index-premium-compare-wrap {
  padding: 36px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.09);
}

.index-premium-compare-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.index-premium-compare-head h3 {
  margin-bottom: 12px;
  color: #0f172a;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.index-premium-compare-head p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.85;
}

.index-premium-compare-card {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.index-premium-compare-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.index-premium-compare-top {
  padding: 28px 26px 24px;
  background:
    linear-gradient(180deg, #0f172a 0%, #162237 100%);
}

.index-premium-compare-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 1.5rem;
}

.index-premium-compare-top h4 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.45rem;
}

.index-premium-compare-top p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.index-premium-compare-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.index-premium-compare-side {
  min-height: 230px;
  padding: 26px 22px;
}

.index-premium-compare-side.is-negative {
  background: linear-gradient(180deg, #fff4f3 0%, #ffe9e7 100%);
  border-right: 1px solid rgba(148, 163, 184, 0.16);
}

.index-premium-compare-side.is-positive {
  background: linear-gradient(180deg, #effcf3 0%, #e0f7e8 100%);
}

.compare-side-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-premium-compare-side.is-negative .compare-side-label {
  color: #dc2626;
}

.index-premium-compare-side.is-positive .compare-side-label {
  color: #16a34a;
}

.index-premium-compare-side strong {
  display: block;
  margin-bottom: 12px;
  color: #0f172a;
  font-size: 1.95rem;
  line-height: 1.05;
}

.index-premium-compare-side small {
  display: block;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.75;
  font-size: 0.98rem;
}

.index-premium-compare-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.index-premium-compare-actions .btn {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 1199.98px) {
  .index-premium-info-card {
    padding: 26px 22px 22px;
  }
}

@media (max-width: 991.98px) {
  .index-premium-editorial-panel,
  .index-premium-compare-wrap {
    padding: 28px;
    border-radius: 26px;
  }

  .index-premium-compare-top {
    padding: 24px 22px 20px;
  }

  .index-premium-compare-side strong {
    font-size: 1.55rem;
  }
}

@media (max-width: 767.98px) {
  .index-premium-heading h2 {
    font-size: 2rem;
  }

  .index-premium-info-card {
    border-radius: 22px;
  }

  .index-premium-editorial-panel,
  .index-premium-compare-wrap {
    padding: 22px;
    border-radius: 22px;
  }

  .index-premium-compare-split {
    grid-template-columns: 1fr;
  }

  .index-premium-compare-side {
    min-height: auto;
  }

  .index-premium-compare-side.is-negative {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  }

  .index-premium-compare-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
   INDEX APPLE INSPIRED SECTION
========================================= */
/* =========================================
   INDEX APPLE CARDS – FINAL PREMIUM CLEAN
========================================= */

.index-apple-section {
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.05), transparent 24%),
    radial-gradient(circle at top right, rgba(125, 211, 252, 0.06), transparent 22%),
    linear-gradient(180deg, #f6f7fb 0%, #edf2f8 100%);
  overflow: hidden;
}

.index-apple-head {
  margin-bottom: 0;
}

.index-apple-head-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.index-apple-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.index-apple-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 760px;
}

.index-apple-head-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.22s ease, transform 0.22s ease;
}

.index-apple-head-link:hover {
  color: #1d4ed8;
  transform: translateY(-1px);
}

.index-apple-gallery-wrap {
  position: relative;
  margin-bottom: 52px;
}

.index-apple-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 360px;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.index-apple-gallery::-webkit-scrollbar {
  display: none;
}

@media (max-width: 991.98px) {
  .index-apple-gallery {
    grid-auto-columns: 320px;
  }
}

@media (max-width: 767.98px) {
  .index-apple-gallery {
    grid-auto-columns: 84%;
    gap: 14px;
  }
}

.index-apple-gallery::-webkit-scrollbar {
  display: none;
}

.index-apple-card {
  position: relative;
  min-height: 345px;
  padding: 20px 18px 18px;
  border-radius: 28px;
  overflow: hidden;
  scroll-snap-align: start;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.58) 100%);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.96);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.index-apple-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.09), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.55), transparent 28%);
  pointer-events: none;
}

.index-apple-card::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -55px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.06);
  filter: blur(20px);
  pointer-events: none;
}

.index-apple-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.16);
  box-shadow:
    0 22px 48px rgba(15, 23, 42, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.98);
}

.index-apple-card-accent {
  background:
    linear-gradient(180deg, rgba(239,246,255,0.84) 0%, rgba(255,255,255,0.64) 100%);
}

.index-apple-card-content {
  position: relative;
  z-index: 2;
  max-width: 96%;
}

.index-apple-card-topic {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: #0f172a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.index-apple-card h3 {
  margin-bottom: 10px;
  color: #0b132b;
  font-size: clamp(1rem, 1.08vw, 1.35rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.index-apple-card p {
  margin: 0;
  max-width: 94%;
  color: rgba(15, 23, 42, 0.66);
  font-size: 0.86rem;
  line-height: 1.55;
}

.index-apple-card-visual {
  position: absolute;
  left: 18px;
  bottom: 16px;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.index-apple-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #eef4ff 0%, #dbeafe 100%);
  border: 1px solid rgba(255,255,255,0.98);
  color: #1d4ed8;
  box-shadow:
    0 12px 24px rgba(59, 94, 219, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.98);
  font-size: 1.9rem;
  position: relative;
  z-index: 2;
}

.index-apple-card-icon iconify-icon {
  display: block;
  width: 1em;
  height: 1em;
  color: inherit;
}

.index-apple-card-trigger {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 3;
  color: #fff;
  background: linear-gradient(180deg, #0b132b 0%, #111c3d 100%);
  box-shadow: 0 10px 20px rgba(11, 19, 43, 0.18);
  transition: transform 0.22s ease, background 0.22s ease;
}

.index-apple-card-trigger:hover {
  transform: scale(1.05);
  color: #fff;
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
}

.index-apple-gallery-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.index-apple-nav-btn {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.78);
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.86);
  color: #111827;
  transition: all 0.22s ease;
  cursor: pointer;
}

.index-apple-nav-btn:hover {
  background: #111827;
  color: #fff;
}

@media (max-width: 991.98px) {
  .index-apple-head-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .index-apple-head h2 {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .index-apple-head h2 {
    font-size: 1.9rem;
    line-height: 1.02;
  }

  .index-apple-gallery {
    grid-auto-columns: 84%;
    gap: 14px;
  }

  .index-apple-card {
    min-height: 325px;
    padding: 18px 16px 16px;
    border-radius: 24px;
  }

  .index-apple-card-topic {
    font-size: 0.64rem;
  }

  .index-apple-card h3 {
    font-size: 1.08rem;
  }

  .index-apple-card p {
    font-size: 0.84rem;
    max-width: 100%;
  }

  .index-apple-card-visual {
    left: 16px;
    bottom: 14px;
    width: 78px;
    height: 78px;
  }

  .index-apple-card-icon {
    width: 64px;
    height: 64px;
    font-size: 1.65rem;
  }

  .index-apple-card-trigger {
    width: 36px;
    height: 36px;
    right: 12px;
    bottom: 12px;
  }

  .index-apple-nav-btn {
    width: 42px;
    height: 42px;
  }
}
/* =========================================
   INDEX APPLE COMPARE – FINAL PREMIUM CLEAN
========================================= */

.index-apple-compare {
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.58) 100%);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow:
    0 20px 46px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.95);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  overflow: hidden;
}

.index-apple-compare-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.index-apple-compare-head h3 {
  margin-bottom: 10px;
  color: #1f2a2e;
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.index-apple-compare-head p {
  margin: 0;
  color: rgba(15, 23, 42, 0.68);
  font-size: 0.96rem;
  line-height: 1.7;
}

.index-apple-compare-card {
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(248,250,252,0.92) 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 14px 34px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.index-apple-compare-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.12);
  box-shadow:
    0 20px 42px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.index-apple-compare-top {
  position: relative;
  padding: 22px 20px 18px;
  background:
    linear-gradient(180deg, #0f172a 0%, #182338 100%);
}

.index-apple-compare-top::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -30px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  filter: blur(10px);
  pointer-events: none;
}

.index-apple-compare-top-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.index-apple-compare-top h4 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.index-apple-compare-top p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  line-height: 1.6;
}

.index-apple-compare-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.index-apple-compare-side {
  min-height: 165px;
  padding: 18px 16px;
}

.index-apple-compare-side.is-negative {
  background: linear-gradient(180deg, #fff5f4 0%, #ffefed 100%);
  border-right: 1px solid rgba(15, 23, 42, 0.06);
}

.index-apple-compare-side.is-positive {
  background: linear-gradient(180deg, #f1fcf4 0%, #e8f8ed 100%);
}

.compare-mini-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.index-apple-compare-side.is-negative .compare-mini-label {
  color: #b91c1c;
  background: rgba(220, 38, 38, 0.08);
}

.index-apple-compare-side.is-positive .compare-mini-label {
  color: #15803d;
  background: rgba(22, 163, 74, 0.08);
}

.index-apple-compare-side strong {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.index-apple-compare-side p {
  margin: 0;
  color: rgba(15, 23, 42, 0.66);
  font-size: 0.84rem;
  line-height: 1.55;
}

.index-apple-compare-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.index-apple-compare-actions .btn {
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 999px;
}

/* MOBILE */

@media (max-width: 991.98px) {
  .index-apple-compare {
    padding: 24px;
    border-radius: 26px;
  }
}

@media (max-width: 767.98px) {
  .index-apple-compare {
    padding: 20px;
    border-radius: 22px;
  }

  .index-apple-compare-head h3 {
    font-size: 1.45rem;
  }

  .index-apple-compare-head p {
    font-size: 0.9rem;
  }

  .index-apple-compare-split {
    grid-template-columns: 1fr;
  }

  .index-apple-compare-side {
    min-height: auto;
    padding: 16px 14px;
  }

  .index-apple-compare-side.is-negative {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }

  .index-apple-compare-top {
    padding: 20px 18px 16px;
  }

  .index-apple-compare-top h4 {
    font-size: 1.08rem;
  }

  .index-apple-compare-side strong {
    font-size: 1.05rem;
  }

  .index-apple-compare-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
.seo-text-block {
    position: relative;
    padding: 36px;
    border-radius: 32px;
    background: linear-gradient(180deg, #fafafa 0%, #f3f3f3 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.seo-text-block h2 {
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 2.5vw, 2.7rem);
    line-height: 1.12;
    color: #111;
}

.seo-text-block p {
    margin-bottom: 14px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(17, 17, 17, 0.78);
}

.seo-text-block p:last-child {
    margin-bottom: 0;
}

.seo-text-block a {
    color: #111;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seo-text-block a:hover {
    opacity: 0.75;
}

.seo-text-block::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: var(--bs-primary, #d6ff43);
    border-radius: 20px;
}
@media (max-width: 767.98px) {
    .seo-text-block {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .seo-text-block h2 {
        margin-bottom: 14px;
    }

    .seo-text-block p {
        font-size: 0.98rem;
        line-height: 1.7;
    }
}
/* =========================================================
   SAFE HERO PATCH
   Nur kleine Verbesserungen – ohne die ganze Seite zu ändern
========================================================= */

/* Nur Hero-Typo steuern */
.banner-inner-section h1 {
  font-family: var(--font-headline, 'Bebas Neue', sans-serif);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Hero-Absatz lesbarer */
.banner-inner-section p {
  font-family: var(--font-body, 'Zalando Sans', sans-serif);
}

/* Mobile Hero fix */
@media (max-width: 767.98px) {
  .banner-inner-section {
    min-height: auto !important;
    padding-top: 110px;
    padding-bottom: 56px;
    align-items: flex-start !important;
  }

  .banner-inner-section .container > .d-flex,
  .banner-inner-section .container .d-flex.flex-column.gap-4,
  .banner-inner-section .container .d-flex.flex-column.gap-4.pb-5,
  .banner-inner-section .container .d-flex.flex-column.gap-4.pt-5 {
    gap: 18px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .banner-inner-section h1 {
    font-size: clamp(34px, 11vw, 48px) !important;
    line-height: 0.98 !important;
    margin-bottom: 10px !important;
    max-width: 7.5ch;
  }

  .banner-inner-section p.fs-5,
  .banner-inner-section p.fs-6,
  .banner-inner-section p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
  }

  .hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
  }

  .hero-trust-badge {
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1.3;
    border-radius: 999px;
  }

  .hero-trust-icon {
    height: 18px;
  }

  .hero-google-logo {
    height: 14px;
  }

  .banner-inner-section a.p-1.ps-7.bg-primary.rounded-pill {
    padding-left: 14px !important;
  }

  .banner-inner-section .round-52 {
    width: 42px;
    height: 42px;
  }
}

/* Noch kleiner */
@media (max-width: 575.98px) {
  .banner-inner-section {
    padding-top: 96px;
    padding-bottom: 46px;
  }

  .banner-inner-section h1 {
    font-size: clamp(30px, 10vw, 42px) !important;
    max-width: 7ch;
  }

  .hero-trust-badges {
    gap: 6px;
  }

  .hero-trust-badge {
    font-size: 11px;
    padding: 7px 10px;
  }
}
/* =========================================================
   TYPO FIX – LANDINGPAGES
========================================================= */

.apple-core-index {
  background:
    radial-gradient(circle at top center, rgba(37, 99, 235, 0.08), transparent 18%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 18%, #f8fbff 100%);
}

.apple-core-index .page-wrapper {
  background: transparent;
}

.apple-core-index .banner-section {
  min-height: 100svh;
}

.apple-core-index .banner-overlay {
  background: linear-gradient(180deg, rgba(7, 15, 34, 0.14) 0%, rgba(7, 15, 34, 0.42) 44%, rgba(7, 15, 34, 0.78) 100%);
  backdrop-filter: none;
}

.apple-core-index .banner-inner-section {
  min-height: 100svh;
  display: flex;
  align-items: flex-start !important;
  padding-top: 104px;
  padding-bottom: 28px;
}

.apple-core-index .hero-premium-stack {
  max-width: 1120px;
  padding: 0 0 1.2rem;
}

.apple-core-index .hero-premium-stack > .row {
  display: none;
}

.apple-core-index .hero-premium-stack > .d-flex.flex-column.gap-4[data-aos] {
  order: 1;
  margin-top: 0;
}

.apple-core-index .hero-display-stack-v2 {
  gap: 1rem !important;
}

.apple-core-index .hero-trust-badges {
  order: 2;
  margin-top: 0.6rem;
}

.apple-core-index .hero-display-title-v2 {
  max-width: 13.6ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 3.95vw, 4.6rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-wrap: balance;
  text-shadow: 0 18px 44px rgba(7, 15, 34, 0.28);
}

.apple-core-index .hero-display-copy-v2 {
  max-width: 60ch;
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.12rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.apple-core-index .hero-display-copy-v2 a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.apple-core-index .hero-display-copy-v2 a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

.apple-core-index .hero-story-note-v2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  max-width: 760px;
  min-height: 0;
  padding: 0.72rem 0.9rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(7, 15, 34, 0.16);
  backdrop-filter: none;
}

.apple-core-index .hero-story-note-v2 strong {
  color: #ffffff;
  font-family: var(--font-headline);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.apple-core-index .hero-story-note-v2 span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
  line-height: 1.5;
}

.apple-core-index .hero-display-title,
.apple-core-index .hero-display-copy,
.apple-core-index .hero-story-note,
.apple-core-index .hero-premium-legacy-title,
.apple-core-index .hero-premium-copy-legacy,
.apple-core-index .hero-premium-copy-legacy + .d-flex.gap-3.flex-wrap {
  display: none !important;
}

.apple-core-index .hero-trust-badges > .hero-trust-badge:last-child {
  position: relative;
  color: transparent;
}

.apple-core-index .hero-trust-badges > .hero-trust-badge:last-child::before {
  content: "Pers\00F6nlich \0026 digital";
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.apple-core-index .hero-trust-badges {
  gap: 0.9rem;
}

.apple-core-index .hero-trust-badge {
  min-height: 52px;
  padding: 0.85rem 1.15rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.1));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 14px 30px rgba(7, 15, 34, 0.14);
}

.apple-core-index .banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.apple-core-index .banner-section h1 {
  max-width: 12.5ch;
  font-size: clamp(3.75rem, 6vw, 7.15rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.apple-core-index .banner-section p.fs-5 {
  max-width: 70ch !important;
  line-height: 1.82 !important;
}

.apple-core-index .banner-section .btn-lg {
  min-height: 58px;
  padding-inline: 1.45rem;
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(7, 15, 34, 0.18);
}

.apple-core-index .home-solutions-section-editorial--apple .home-solutions-head-editorial {
  max-width: 840px;
  margin: 0 auto 4.25rem;
  text-align: center;
}

.apple-core-index .home-solutions-section-editorial--apple .home-solutions-grid-pro-wrap {
  padding-top: 0.8rem;
}

.apple-core-index .home-solutions-section-editorial--apple .home-solution-pro-card {
  border-radius: 38px;
  box-shadow: 0 34px 96px rgba(15, 23, 42, 0.11);
}

.apple-core-index .home-solutions-section-editorial--apple .home-solution-pro-card h3 {
  max-width: 11ch;
}

.apple-core-index .home-solutions-section-editorial--apple .home-solutions-head-editorial p {
  margin-inline: auto;
}

.banner-inner-section h1,
.privat-cards-heading h2,
.prozess-intro-text h2,
.prozess-card h3,
.privat-funnel-intro h2,
.step-copy h3,
.beispielrechner-head h3,
.rs-text-title,
.reviews-slider-header h2,
.faq-dark h2,
.footer h2 {
  font-family: var(--font-headline);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.banner-inner-section p,
.privat-cards-heading p,
.prozess-intro-text p,
.prozess-card p,
.step-copy p,
.rs-text-body,
.beispielrechner-head p,
.review-text,
.review-author,
.summary-line span,
.summary-line strong,
.success-line span,
.success-line strong,
.footer p,
.footer a,
.funnel-info-box p,
.privat-funnel-intro p,
.privat-option-card small,
.privat-option-card strong,
.privat-contact-grid input,
.privat-checkbox,
.prozess-note-box p,
.tarif-table-topbar p,
.tarif-table-note,
.beispiel-note {
  font-family: var(--font-body);
}

.banner-inner-section h1 {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.apple-core-index .hero-display-stack-v2 {
  padding-top: clamp(2.6rem, 5.5vh, 4.4rem);
}

.privat-cards-heading h2,
.prozess-intro-text h2,
.privat-funnel-intro h2,
.reviews-slider-header h2 {
  font-weight: 400;
}

.rs-text-title,
.step-copy h3,
.prozess-card h3,
.beispielrechner-head h3 {
  font-weight: 400;
}
/* =========================================================
   HERO MOBILE FIX
========================================================= */

@media (max-width: 767.98px) {
  .apple-core-index .banner-section {
    min-height: auto;
  }

  .apple-core-index .banner-inner-section {
    min-height: auto;
    display: flex;
    align-items: flex-start !important;
    padding-top: 100px;
    padding-bottom: 22px;
  }

  .apple-core-index .hero-premium-stack {
    padding-top: 0;
    padding-bottom: 1rem;
  }

  .apple-core-index .hero-premium-stack > .d-flex.flex-column.gap-4[data-aos] {
    margin-top: 0;
  }

  .apple-core-index .hero-trust-badges {
    margin-top: 0.55rem;
  }

  .apple-core-index .home-solutions-section-editorial--apple .home-solutions-head-editorial {
    margin-bottom: 2.4rem;
  }

  .banner-inner-section .container > .d-flex,
  .banner-inner-section .container .d-flex.flex-column.gap-4,
  .banner-inner-section .container .d-flex.flex-column.gap-4.pb-5,
  .banner-inner-section .container .d-flex.flex-column.gap-4.pt-5,
  .banner-inner-section .container .d-flex.flex-column.gap-4.pt-5.pt-xl-8.pb-5.pb-xl-10 {
    gap: 18px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .banner-inner-section h1 {
    font-size: clamp(32px, 11vw, 46px) !important;
    line-height: 0.98 !important;
    max-width: 7.5ch;
    margin-bottom: 8px !important;
  }

  .apple-core-index .hero-display-stack-v2 {
    padding-top: 0;
  }

  .banner-inner-section p.fs-5,
  .banner-inner-section p.fs-6,
  .banner-inner-section p {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-trust-badge {
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1.3;
    border-radius: 999px;
  }

  .hero-trust-icon {
    height: 18px;
  }

  .hero-google-logo {
    height: 14px;
  }

  .banner-inner-section .round-52 {
    width: 42px;
    height: 42px;
  }

  .apple-core-index .hero-display-title-v2 {
    margin-top: 0;
    font-size: clamp(2.35rem, 5.8vw, 3.9rem);
    max-width: 12.2ch;
  }

  .apple-core-index .hero-display-copy-v2 {
    font-size: 1.02rem;
    line-height: 1.58;
    max-width: 54ch;
  }

  .apple-core-index .hero-display-copy-v2 a {
    font-weight: 650;
    border-bottom-color: rgba(255, 255, 255, 0.24);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
    text-decoration-color: rgba(255, 255, 255, 0.34);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .apple-core-index .hero-story-note-v2 {
    width: 100%;
    padding: 0.72rem 0.86rem;
  }
}

@media (max-width: 575.98px) {
  .apple-core-index .banner-section h1 {
    font-size: clamp(3.1rem, 11vw, 4.6rem) !important;
  }

  .apple-core-index .banner-inner-section {
    padding-top: 94px;
    padding-bottom: 18px;
  }

  .apple-core-index .hero-premium-stack {
    padding-top: 0;
  }

  .apple-core-index .hero-premium-stack > .d-flex.flex-column.gap-4[data-aos] {
    margin-top: 0;
  }

  .apple-core-index .hero-trust-badges {
    margin-top: 0.45rem;
  }

  .apple-core-index .hero-display-title-v2 {
    margin-top: 0;
    font-size: clamp(1.95rem, 7.8vw, 2.8rem);
    max-width: 10.8ch;
  }

  .apple-core-index .hero-display-copy-v2 {
    font-size: 0.98rem;
    line-height: 1.52;
    max-width: 100%;
  }

  .apple-core-index .hero-display-copy-v2 a {
    font-weight: 620;
    border-bottom: 0;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
    text-decoration-color: rgba(255, 255, 255, 0.3);
  }

  .apple-core-index .hero-story-note-v2 {
    border-radius: 20px;
  }

  .banner-inner-section h1 {
    font-size: clamp(30px, 10vw, 40px) !important;
    max-width: 7ch;
  }

  .apple-core-index .hero-display-stack-v2 {
    padding-top: 0;
  }

  .hero-trust-badge {
    font-size: 11px;
    padding: 7px 10px;
  }
}
/* =========================================================
   FUNNEL TYPO UPGRADE
========================================================= */

.privat-funnel-intro h2,
.step-copy h3,
.privat-success-card h3,
.privat-summary-card h4,
.funnel-info-box h4 {
  font-family: var(--font-headline);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.02;
  text-transform: uppercase;
}

.privat-funnel-intro p,
.step-copy p,
.privat-success-card p,
.summary-line span,
.summary-line strong,
.success-line span,
.success-line strong,
.funnel-info-box p {
  font-family: var(--font-body);
}

/* OPTION CARDS (sehr wichtig für UI Gefühl) */
.privat-option-card strong {
  font-family: var(--font-headline);
  font-size: 20px;
  letter-spacing: 0.03em;
}

.privat-option-card small {
  font-family: var(--font-body);
  font-size: 14px;
  color: #6b7a8c;
}

/* Inputs */
.privat-contact-grid input {
  font-family: var(--font-body);
  font-size: 15px;
}

/* Buttons im Funnel */
.privat-submit,
.privat-back {
  font-family: var(--font-body);
  font-weight: 600;
}
/* =========================================================
   TARIF TABLE TYPO UPGRADE
========================================================= */

.tarif-table-premium th {
  font-family: var(--font-headline);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 15px;
}

.tarif-table-premium td {
  font-family: var(--font-body);
  font-size: 15px;
  color: #425466;
}

.tarif-table-premium td strong {
  font-family: var(--font-headline);
  font-weight: 400;
  letter-spacing: 0.03em;
}
/* =========================================================
   BEISPIELRECHNER TYPO
========================================================= */

.beispielrechner-head h3,
.beispiel-toggle-title {
  font-family: var(--font-headline);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.beispielrechner-head p,
.beispiel-toggle-subtitle,
.beispiel-note {
  font-family: var(--font-body);
}

.beispiel-table th {
  font-family: var(--font-headline);
  font-weight: 400;
  text-transform: uppercase;
}

.beispiel-table td {
  font-family: var(--font-body);
}
/* =========================================================
   PROGRESS / LABEL TYPO
========================================================= */

.privat-progress-head span,
.privat-progress-head strong {
  font-family: var(--font-body);
}

#privatStepLabel {
  font-family: var(--font-headline);
  letter-spacing: 0.05em;
}
/* =========================================
   GLOBAL BUTTON FIX (sehr wichtig)
========================================= */

/* ALLE Buttons behalten Textfarbe */
button,
.btn {
  transition: all 0.25s ease;
}

/* ❗ verhindert weiß-hover BUG */
button:hover,
.btn:hover {
  background-image: none !important;
}

/* =========================================
   PRIMARY BUTTON (Blau)
========================================= */
.btn-primary,
.privat-submit,
.hero-cta-group .btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff !important;
  border: none;
}

.btn-primary:hover,
.privat-submit:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* =========================================
   GELBER BUTTON (DEIN BUG)
========================================= */
.prozess-btn,
.btn-warning {
  background: linear-gradient(135deg, #e6d83f 0%, #f1e84c 100%) !important;
  color: #1a1a1a !important;
  border: none;
}

.prozess-btn:hover,
.btn-warning:hover {
  background: linear-gradient(135deg, #d4c72e 0%, #e2d937 100%) !important;
  color: #1a1a1a !important;
  transform: translateY(-2px);
}

/* =========================================
   SECONDARY BUTTONS (Outline)
========================================= */
.btn-outline-light,
.privat-back {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover,
.privat-back:hover {
  background: rgba(255,255,255,0.12);
  color: #ffffff !important;
}

/* =========================================
   WICHTIG: Text NIE verschwinden lassen
========================================= */
button:hover span,
.btn:hover span {
  color: inherit !important;
}


/* =========================================================
   FINAL OVERRIDES — BUTTONS / TABS / CTA
   Purpose: neutralize conflicting generic button rules and
   keep startpage + landingpages stable.
========================================================= */

:root{
  --cta-orange: #f56900;
  --cta-orange-dark: #d95700;
  --cta-orange-soft: #ffefe2;
}

/* 1) Compare CTA on index */
.index-apple-compare-actions .btn,
.index-apple-compare-actions a.btn,
.index-apple-compare-actions button.btn {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: all .25s ease;
}

.index-apple-compare-actions .btn-primary,
.index-apple-compare-actions .btn.btn-primary {
  background: linear-gradient(135deg, var(--cta-orange) 0%, #ff8a2a 100%) !important;
  color: #ffffff !important;
  border: 1px solid transparent !important;
  box-shadow: 0 14px 28px rgba(245,105,0,.24) !important;
}

.index-apple-compare-actions .btn-primary:hover,
.index-apple-compare-actions .btn-primary:focus,
.index-apple-compare-actions .btn.btn-primary:hover,
.index-apple-compare-actions .btn.btn-primary:focus {
  background: linear-gradient(135deg, var(--cta-orange-dark) 0%, var(--cta-orange) 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(245,105,0,.30) !important;
}

.index-apple-compare-actions .btn-outline-dark,
.index-apple-compare-actions .btn.btn-outline-dark {
  background: #ffffff !important;
  color: #12202c !important;
  border: 1px solid rgba(18,32,44,.10) !important;
  box-shadow: 0 14px 28px rgba(15,23,42,.10) !important;
}

.index-apple-compare-actions .btn-outline-dark:hover,
.index-apple-compare-actions .btn-outline-dark:focus,
.index-apple-compare-actions .btn.btn-outline-dark:hover,
.index-apple-compare-actions .btn.btn-outline-dark:focus {
  background: var(--cta-orange-soft) !important;
  color: var(--cta-orange-dark) !important;
  border-color: rgba(245,105,0,.22) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(245,105,0,.14) !important;
}

.index-apple-compare-actions .btn span,
.index-apple-compare-actions .btn:hover span,
.index-apple-compare-actions .btn:focus span {
  color: inherit !important;
}

/* 2) Home quick-check buttons on index */
.home-check-actions .btn-outline-dark,
.home-check-nav .btn-outline-dark,
#home-check-back.btn,
#home-check-restart.btn {
  background: #ffffff !important;
  color: #12202c !important;
  border: 1px solid rgba(18,32,44,.10) !important;
  box-shadow: 0 14px 28px rgba(15,23,42,.10) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.home-check-actions .btn-outline-dark:hover,
.home-check-nav .btn-outline-dark:hover,
#home-check-back.btn:hover,
#home-check-restart.btn:hover,
.home-check-actions .btn-outline-dark:focus,
.home-check-nav .btn-outline-dark:focus,
#home-check-back.btn:focus,
#home-check-restart.btn:focus {
  background: var(--cta-orange-soft) !important;
  color: var(--cta-orange-dark) !important;
  border-color: rgba(245,105,0,.22) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(245,105,0,.14) !important;
}

/* 3) Funnel buttons */
.privat-funnel-section .privat-back,
.privat-funnel-section .funnel-back,
.privat-funnel-section .btn.secondary,
.privat-funnel-section .btn-outline-light {
  background: #ffffff !important;
  color: #12202c !important;
  border: 1px solid rgba(18,32,44,.10) !important;
  box-shadow: 0 14px 28px rgba(15,23,42,.10) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  font-weight: 700;
}

.privat-funnel-section .privat-back:hover,
.privat-funnel-section .funnel-back:hover,
.privat-funnel-section .btn.secondary:hover,
.privat-funnel-section .btn-outline-light:hover,
.privat-funnel-section .privat-back:focus,
.privat-funnel-section .funnel-back:focus,
.privat-funnel-section .btn.secondary:focus,
.privat-funnel-section .btn-outline-light:focus {
  background: var(--cta-orange-soft) !important;
  color: var(--cta-orange-dark) !important;
  border-color: rgba(245,105,0,.22) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(245,105,0,.14) !important;
}

.privat-funnel-section .privat-submit {
  background: linear-gradient(135deg, var(--lp-primary, #2c6aa0) 0%, var(--lp-primary-2, #1585c9) 100%) !important;
  color: #ffffff !important;
  border: none !important;
}

.privat-funnel-section .privat-submit:hover,
.privat-funnel-section .privat-submit:focus {
  background: linear-gradient(135deg, var(--lp-primary-2, #1585c9) 0%, var(--lp-primary, #2c6aa0) 100%) !important;
  color: #ffffff !important;
}

/* 4) Calculator and table CTA */
.prozess-btn {
  background: linear-gradient(135deg, var(--cta-orange) 0%, #ff8a2a 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 14px 28px rgba(245,105,0,.22) !important;
}

.prozess-btn:hover,
.prozess-btn:focus {
  background: linear-gradient(135deg, var(--cta-orange-dark) 0%, var(--cta-orange) 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(245,105,0,.30) !important;
}

.table-more-btn,
#tableBtn {
  background: linear-gradient(135deg, var(--cta-orange) 0%, #ff8a2a 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 12px 24px rgba(245,105,0,.22) !important;
}

.table-more-btn:hover,
#tableBtn:hover,
.table-more-btn:focus,
#tableBtn:focus {
  background: linear-gradient(135deg, var(--cta-orange-dark) 0%, var(--cta-orange) 100%) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* 5) Landing cards CTA */
.rs-card-button {
  background: linear-gradient(135deg, var(--cta-orange) 0%, #ff8a2a 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 18px rgba(245,105,0,.20) !important;
}

.rs-card-link:hover .rs-card-button,
.rs-card-button:hover,
.rs-card-button:focus {
  background: linear-gradient(135deg, var(--cta-orange-dark) 0%, var(--cta-orange) 100%) !important;
  color: #ffffff !important;
}

/* 6) Vermieter tabs */
.vermieter-tabs .vermieter-tab,
.vermieter-tab {
  color: #12202c !important;
  background: rgba(255,255,255,.92) !important;
  border: 1px solid rgba(18,32,44,.08) !important;
}

.vermieter-tabs .vermieter-tab:hover,
.vermieter-tab:hover,
.vermieter-tabs .vermieter-tab:focus,
.vermieter-tab:focus {
  color: #12202c !important;
  background: #ffffff !important;
  border-color: rgba(18,32,44,.14) !important;
  box-shadow: 0 16px 30px rgba(15,23,42,.08) !important;
  transform: translateY(-2px);
}

.vermieter-tabs .vermieter-tab.active,
.vermieter-tab.active {
  background: linear-gradient(135deg, var(--cta-orange) 0%, #ff8a2a 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 14px 30px rgba(245,105,0,.24), 0 0 0 6px rgba(245,105,0,.08) !important;
}

/* 7) Prevent text disappearing */
.home-check-actions .btn:hover span,
.home-check-nav .btn:hover span,
.prozess-section button:hover span,
.table-more-wrap button:hover span,
.vermieter-tabs button:hover span,
.privat-funnel-section .btn:hover span {
  color: inherit !important;
}
/* =========================================================
   VERKEHRSRECHNER BUTTON FIX
========================================================= */

/* Tabs oben */
.verkehr-tab-btn {
  background: rgba(255,255,255,0.92) !important;
  color: #12202c !important;
  border: 1px solid rgba(18, 32, 44, 0.06) !important;
  box-shadow: none !important;
  transition: all 0.25s ease;
}

.verkehr-tab-btn span,
.verkehr-tab-btn iconify-icon {
  color: inherit !important;
}

.verkehr-tab-btn:hover,
.verkehr-tab-btn:focus {
  background: #ffefe2 !important;
  color: #d95700 !important;
  border-color: rgba(245, 105, 0, 0.22) !important;
  box-shadow: 0 10px 24px rgba(245, 105, 0, 0.14) !important;
  transform: translateY(-1px);
}

.verkehr-tab-btn.active,
.verkehr-tab-btn.active:hover,
.verkehr-tab-btn.active:focus {
  background: linear-gradient(135deg, #f56900 0%, #ff8a2a 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 14px 28px rgba(245, 105, 0, 0.24) !important;
}

/* Innerorts / Außerorts Buttons */
.verkehr-toggle-btn {
  background: rgba(255,255,255,0.92) !important;
  color: #12202c !important;
  border: 1px solid rgba(18, 32, 44, 0.06) !important;
  box-shadow: none !important;
  transition: all 0.25s ease;
}

.verkehr-toggle-btn:hover,
.verkehr-toggle-btn:focus {
  background: #ffefe2 !important;
  color: #d95700 !important;
  border-color: rgba(245, 105, 0, 0.22) !important;
  box-shadow: 0 10px 24px rgba(245, 105, 0, 0.14) !important;
  transform: translateY(-1px);
}

.verkehr-toggle-btn.active,
.verkehr-toggle-btn.active:hover,
.verkehr-toggle-btn.active:focus {
  background: linear-gradient(135deg, #f56900 0%, #ff8a2a 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 14px 28px rgba(245, 105, 0, 0.24) !important;
}

/* Sicherheit: Text in diesen Buttons nie verlieren */
.verkehr-tab-btn:hover span,
.verkehr-tab-btn:focus span,
.verkehr-tab-btn:hover iconify-icon,
.verkehr-tab-btn:focus iconify-icon,
.verkehr-toggle-btn:hover span,
.verkehr-toggle-btn:focus span {
  color: inherit !important;
}
/* =========================================================
   VERKEHRSRECHNER – BLAU → ORANGE SYSTEM
========================================================= */

:root {
  --blue-main: #0067a6;
  --blue-dark: #004f82;
  --orange-main: #f56900;
  --orange-dark: #d95700;
}

/* ========================
   STANDARD = BLAU
======================== */

.verkehr-tab-btn,
.verkehr-toggle-btn {
  background: linear-gradient(135deg, var(--blue-main) 0%, #1e8edb 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 103, 166, 0.20);
  transition: all 0.25s ease;
}

/* Text & Icons sichtbar */
.verkehr-tab-btn span,
.verkehr-toggle-btn span,
.verkehr-tab-btn iconify-icon {
  color: #ffffff !important;
}

/* ========================
   HOVER = ORANGE
======================== */

.verkehr-tab-btn:hover,
.verkehr-tab-btn:focus,
.verkehr-toggle-btn:hover,
.verkehr-toggle-btn:focus {
  background: linear-gradient(135deg, var(--orange-main) 0%, #ff8a2a 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(245, 105, 0, 0.25);
}

/* ========================
   ACTIVE = ORANGE BLEIBT
======================== */

.verkehr-tab-btn.active,
.verkehr-toggle-btn.active {
  background: linear-gradient(135deg, var(--orange-main) 0%, #ff8a2a 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(245, 105, 0, 0.30);
}

/* ACTIVE hover stabil */
.verkehr-tab-btn.active:hover,
.verkehr-toggle-btn.active:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-main) 100%) !important;
  color: #ffffff !important;
}

/* Sicherheit: nichts wird weiß */
.verkehr-tab-btn:hover span,
.verkehr-tab-btn:focus span,
.verkehr-toggle-btn:hover span,
.verkehr-toggle-btn:focus span {
  color: #ffffff !important;
}
/* =========================================================
   FINAL FIX – SLIDER PFEILE VERKEHR / VERMIETER
========================================================= */

.cards-slider-wrapper .cards-arrow,
.privat-cards-section .cards-arrow {
  background: linear-gradient(180deg, #2c6aa0, #1f4e78) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.cards-slider-wrapper .cards-arrow:hover,
.cards-slider-wrapper .cards-arrow:focus,
.privat-cards-section .cards-arrow:hover,
.privat-cards-section .cards-arrow:focus {
  background: linear-gradient(135deg, #f56900 0%, #ff8a2a 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 14px 28px rgba(245, 105, 0, 0.30) !important;
  transform: translateY(-50%) scale(1.08) !important;
}

.cards-slider-wrapper .cards-arrow:active,
.privat-cards-section .cards-arrow:active {
  background: linear-gradient(135deg, #d95700 0%, #f56900 100%) !important;
  color: #ffffff !important;
  transform: translateY(-50%) scale(1.02) !important;
}

/* Sicherheit für Icon/Text */
.cards-slider-wrapper .cards-arrow *,
.privat-cards-section .cards-arrow * {
  color: inherit !important;
  fill: currentColor !important;
}
.cards-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 23, 36, 0.82);
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    z-index: 10;
}

.cards-arrow.left {
    left: -10px;
}

.cards-arrow.right {
    right: -10px;
}

.cards-arrow:hover {
    transform: translateY(-50%) scale(1.06);
    background: linear-gradient(135deg, #f56900 0%, #ff8a2a 100%);
    color: #ffffff;
    border-color: rgba(245, 105, 0, 0.25);
    box-shadow: 0 22px 44px rgba(245, 105, 0, 0.25);
}

.cards-arrow:active {
    transform: translateY(-50%) scale(0.98);
}
/* =========================================================
   GLOBAL CARD SLIDER – ALLE SEITEN
========================================================= */

.cards-slider-wrapper {
    position: relative;
    margin-top: 40px;
}

.cards-slider {
    overflow: hidden;
    padding: 10px 56px;
}

.cards-track {
    display: flex;
    gap: 20px;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.card-wrap {
    flex: 0 0 auto;
}

/* Moderne Pfeile */
.cards-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(135deg, #0067a6 0%, #1e8edb 100%);
    color: #ffffff !important;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 36px rgba(0, 103, 166, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    z-index: 20;
}

.cards-arrow.left {
    left: 0;
}

.cards-arrow.right {
    right: 0;
}

.cards-arrow:hover,
.cards-arrow:focus {
    transform: translateY(-50%) scale(1.06);
    background: linear-gradient(135deg, #f56900 0%, #ff8a2a 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 20px 40px rgba(245, 105, 0, 0.28);
}

.cards-arrow:active {
    transform: translateY(-50%) scale(0.98);
    background: linear-gradient(135deg, #d95700 0%, #f56900 100%) !important;
    color: #ffffff !important;
}

/* Sicherheit */
.cards-arrow *,
.cards-arrow:hover *,
.cards-arrow:focus * {
    color: inherit !important;
}

/* Mobile */
@media (max-width: 767.98px) {
    .cards-arrow {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        opacity: 1;
        visibility: visible;
        z-index: 30;
    }

    .cards-slider {
        overflow-x: auto;
        padding: 0 48px 12px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .cards-track {
        transition: none;
    }
}
/* =========================================================
   FIRMENRECHTSSCHUTZ – PAGE FIX
========================================================= */

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.pricing-card-modern {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,248,252,0.98) 100%);
    border: 1px solid rgba(8, 39, 64, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(15, 35, 55, 0.08);
    overflow: hidden;
}

.pricing-card-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(245, 105, 0, 0.10), transparent 30%),
        radial-gradient(circle at bottom left, rgba(0, 103, 166, 0.10), transparent 35%);
    pointer-events: none;
}

.pricing-card-modern.is-featured {
    border-color: rgba(245, 105, 0, 0.20);
    box-shadow: 0 22px 55px rgba(245, 105, 0, 0.12);
    transform: translateY(-4px);
}

.pricing-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 103, 166, 0.08);
    color: #0067a6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.pricing-card-modern.is-featured .pricing-kicker {
    background: rgba(245, 105, 0, 0.10);
    color: #f56900;
}

.pricing-card-modern h3 {
    margin: 0 0 14px;
    color: #132235;
    font-size: 32px;
    line-height: 1;
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 22px;
    color: #132235;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}

.pricing-price small {
    font-size: 15px;
    font-weight: 600;
    color: #6c7a92;
    margin-bottom: 4px;
}

.pricing-list-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-list-modern li {
    position: relative;
    padding-left: 26px;
    color: #506078;
    font-size: 17px;
    line-height: 1.6;
}

.pricing-list-modern li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    color: #1c8c57;
    font-weight: 800;
}

/* =========================================================
   FIRMA – OHNE / MIT ABSICHERUNG
========================================================= */

.index-apple-compare {
    position: relative;
}

.index-apple-compare-shell {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,248,252,0.98) 100%);
    border: 1px solid rgba(8, 39, 64, 0.08);
    border-radius: 36px;
    padding: 34px;
    box-shadow: 0 30px 70px rgba(15, 35, 55, 0.10);
    overflow: hidden;
}

.index-apple-compare-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(0, 103, 166, 0.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(245, 105, 0, 0.10), transparent 35%);
    pointer-events: none;
}

.index-apple-compare-head {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin-bottom: 34px;
}

.index-apple-compare-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 103, 166, 0.08);
    color: #0067a6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.index-apple-compare-head h2 {
    margin: 0 0 16px;
    color: #132235;
    font-size: clamp(36px, 4.8vw, 66px);
    line-height: 0.95;
}

.index-apple-compare-head p {
    margin: 0;
    max-width: 880px;
    color: #5f6f86;
    font-size: 20px;
    line-height: 1.7;
}

.index-apple-compare-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.index-compare-card {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.10);
    background: linear-gradient(180deg, #07111f 0%, #081226 100%);
    box-shadow: 0 24px 60px rgba(4, 10, 20, 0.25);
}

.index-compare-card-top {
    position: relative;
    padding: 26px 24px 22px;
    min-height: 250px;
    background:
        radial-gradient(circle at top right, rgba(84, 132, 255, 0.20), transparent 22%),
        radial-gradient(circle at bottom left, rgba(0, 103, 166, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(9, 18, 39, 0.98) 0%, rgba(7, 16, 34, 0.98) 100%);
}

.index-compare-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 16px;
}

.index-compare-icon iconify-icon {
    font-size: 26px;
    color: #ffffff;
}

.index-compare-mini-kicker {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.index-compare-card-top h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.1;
}

.index-compare-card-top p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 16px;
    line-height: 1.7;
}

.index-compare-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.index-compare-half {
    padding: 20px 18px 22px;
}

.index-compare-half.is-negative {
    background: linear-gradient(180deg, rgba(243, 96, 33, 0.10) 0%, rgba(92, 18, 18, 0.22) 100%);
}

.index-compare-half.is-positive {
    background: linear-gradient(180deg, rgba(35, 150, 85, 0.10) 0%, rgba(17, 61, 44, 0.20) 100%);
}

.compare-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.compare-pill-red {
    background: rgba(243, 96, 33, 0.12);
    color: #f36021;
}

.compare-pill-green {
    background: rgba(35, 150, 85, 0.12);
    color: #56b67d;
}

.index-compare-half h4 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.15;
}

.index-compare-half p {
    margin: 0;
    color: rgba(255,255,255,0.76);
    font-size: 16px;
    line-height: 1.65;
}

.index-apple-compare-actions {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    display: flex;
    justify-content: flex-start;
}

/* =========================================================
   FIRMA – BUTTONS IN DIESEN BEREICHEN
========================================================= */

.pricing-card-modern .btn,
.index-apple-compare-actions .btn {
    min-height: 58px;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    font-size: 18px;
    padding: 0 28px;
    background: linear-gradient(135deg, #7aa4df 0%, #9fc1eb 100%);
    color: #132235;
    box-shadow: 0 16px 36px rgba(122, 164, 223, 0.26);
}

.pricing-card-modern .btn:hover,
.index-apple-compare-actions .btn:hover {
    background: linear-gradient(135deg, #f56900 0%, #ff8a2a 100%);
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(245, 105, 0, 0.24);
    transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
    .pricing-cards-grid,
    .index-apple-compare-grid {
        grid-template-columns: 1fr;
    }

    .index-compare-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .index-apple-compare-shell {
        padding: 22px;
        border-radius: 28px;
    }

    .pricing-card-modern {
        padding: 22px;
        border-radius: 24px;
    }

    .index-compare-card-top {
        min-height: auto;
        padding: 22px 20px 18px;
    }

    .index-apple-compare-head p {
        font-size: 17px;
    }

    .pricing-price {
        font-size: 32px;
    }
}
/* =========================================================
   FIRMA – MEHR TEXT + TABELLEN-FIX
========================================================= */

.pricing-card-copy {
    margin: 0 0 18px;
    color: #5f6f86;
    font-size: 17px;
    line-height: 1.7;
}

.firma-explain-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.firma-explain-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,248,252,0.98) 100%);
    border: 1px solid rgba(8, 39, 64, 0.08);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(15, 35, 55, 0.08);
}

.firma-explain-card h3 {
    margin: 0 0 12px;
    color: #132235;
    font-size: 26px;
    line-height: 1.1;
}

.firma-explain-card p {
    margin: 0;
    color: #5f6f86;
    font-size: 17px;
    line-height: 1.75;
}

.firma-coverage-table-wrap {
    overflow-x: auto;
}

.firma-coverage-table {
    width: 100%;
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(15, 35, 55, 0.08);
}

.firma-coverage-table thead th {
    padding: 24px 20px;
    background: #ece4d1;
    color: #132235;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    border-right: 2px solid rgba(255,255,255,0.55);
}

.firma-coverage-table thead th:last-child {
    border-right: none;
}

.firma-coverage-table thead th.is-featured {
    background: linear-gradient(135deg, rgba(245, 105, 0, 0.18) 0%, rgba(255, 183, 120, 0.24) 100%);
}

.firma-coverage-table tbody td {
    padding: 24px 20px;
    text-align: center;
    font-size: 18px;
    color: #132235;
    background: #f8f8f6;
    border-top: 1px solid rgba(19, 34, 53, 0.08);
    border-right: 2px solid rgba(255,255,255,0.7);
}

.firma-coverage-table tbody td:last-child {
    border-right: none;
}

.firma-coverage-table tbody td.is-featured {
    background: linear-gradient(180deg, rgba(255, 245, 238, 0.95) 0%, rgba(255, 250, 246, 0.98) 100%);
}

.firma-coverage-table tbody td strong {
    display: block;
    margin-bottom: 6px;
    font-size: 19px;
    color: #132235;
}

.firma-coverage-table tbody td small {
    display: block;
    color: #6c7a92;
    font-size: 14px;
    line-height: 1.5;
}

.index-apple-compare-text p {
    margin: 0;
    max-width: 980px;
    color: #5f6f86;
    font-size: 19px;
    line-height: 1.8;
}

@media (max-width: 1199.98px) {
    .firma-explain-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .firma-explain-card {
        padding: 20px;
        border-radius: 20px;
    }

    .firma-explain-card h3 {
        font-size: 22px;
    }

    .firma-explain-card p,
    .pricing-card-copy,
    .index-apple-compare-text p {
        font-size: 16px;
    }

    .firma-coverage-table thead th,
    .firma-coverage-table tbody td {
        padding: 18px 14px;
        font-size: 16px;
    }
}
/* =========================================================
   FIRMA – FEINSCHLIFF TARIFBEREICH + TABELLE
========================================================= */

.firma-intro-text {
    max-width: 920px;
}

.firma-section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(0, 103, 166, 0.08);
    color: #0067a6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.firma-intro-text h2 {
    margin: 0 0 18px;
    max-width: 760px;
    color: #132235;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 0.98;
}

.firma-intro-text .firma-intro-lead {
    margin-bottom: 18px;
    max-width: 860px;
    color: #4e6078;
    font-size: 20px;
    line-height: 1.75;
}

.firma-intro-text p:not(.firma-intro-lead) {
    max-width: 860px;
    color: #5f6f86;
    font-size: 17px;
    line-height: 1.8;
}

.pricing-cards-grid {
    margin-top: 8px;
    align-items: stretch;
}

.pricing-card-modern {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(240,246,252,0.98) 100%);
    border: 1px solid rgba(10, 35, 64, 0.08);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(13, 30, 48, 0.10);
}

.pricing-card-modern::before {
    background:
        radial-gradient(circle at top right, rgba(0, 103, 166, 0.10), transparent 28%),
        radial-gradient(circle at bottom left, rgba(245, 105, 0, 0.08), transparent 34%);
}

.pricing-card-modern.is-featured {
    border-color: rgba(245, 105, 0, 0.18);
    box-shadow: 0 24px 58px rgba(245, 105, 0, 0.12);
    transform: translateY(-4px);
}

.pricing-card-modern h3 {
    max-width: 320px;
}

.pricing-card-copy {
    margin: 0 0 20px;
    color: #5b6c84;
    font-size: 17px;
    line-height: 1.8;
}

.pricing-list-modern {
    margin-bottom: 26px;
}

.pricing-list-modern li {
    color: #556781;
    line-height: 1.75;
}

.pricing-card-modern .btn {
    margin-top: auto;
}

/* =========================================================
   FIRMA – TABELLE MODERNER
========================================================= */

.firma-coverage-table-wrap {
    overflow-x: auto;
    border-radius: 26px;
}

.firma-coverage-table {
    width: 100%;
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 26px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 22px 58px rgba(13, 30, 48, 0.10);
}

.firma-coverage-table thead th {
    padding: 26px 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: #132235;
    background: linear-gradient(180deg, #eef4fa 0%, #e7eef7 100%);
    border-right: 1px solid rgba(19, 34, 53, 0.06);
    border-bottom: 1px solid rgba(19, 34, 53, 0.08);
}

.firma-coverage-table thead th:first-child {
    text-align: center;
}

.firma-coverage-table thead th.is-featured {
    background: linear-gradient(180deg, rgba(245, 105, 0, 0.12) 0%, rgba(255, 241, 232, 0.95) 100%);
    color: #132235;
}

.firma-coverage-table tbody td {
    padding: 26px 20px;
    text-align: center;
    vertical-align: middle;
    font-size: 17px;
    color: #22324a;
    background: #ffffff;
    border-right: 1px solid rgba(19, 34, 53, 0.05);
    border-bottom: 1px solid rgba(19, 34, 53, 0.06);
}

.firma-coverage-table tbody tr:nth-child(even) td {
    background: #f8fbfe;
}

.firma-coverage-table tbody td.is-featured {
    background: linear-gradient(180deg, rgba(255, 248, 243, 0.96) 0%, rgba(255, 252, 249, 1) 100%);
}

.firma-coverage-table tbody tr:nth-child(even) td.is-featured {
    background: linear-gradient(180deg, rgba(255, 244, 235, 0.95) 0%, rgba(255, 250, 246, 1) 100%);
}

.firma-coverage-table tbody td strong {
    display: block;
    margin-bottom: 6px;
    color: #132235;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.firma-coverage-table tbody td small {
    display: block;
    margin-top: 4px;
    color: #6b7c95;
    font-size: 14px;
    line-height: 1.55;
}

.firma-coverage-table tbody tr:last-child td {
    border-bottom: none;
}

.firma-coverage-table thead th:last-child,
.firma-coverage-table tbody td:last-child {
    border-right: none;
}

.tarif-table-shell .tarif-table-topbar p {
    max-width: 900px;
    color: #5f6f86;
    font-size: 17px;
    line-height: 1.75;
}

/* =========================================================
   FIRMA – INFOBOX UNTER TABELLE
========================================================= */

/* =========================================================
   FIRMA – ULTRA MODERNE TABLE
========================================================= */

.firma-coverage-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
    box-shadow:
        0 25px 60px rgba(13, 30, 48, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.6);
}

/* HEADER */
.firma-coverage-table thead th {
    padding: 26px 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: #132235;
    background: linear-gradient(180deg, #e9f1f9 0%, #dfeaf5 100%);
    border-bottom: 1px solid rgba(19, 34, 53, 0.08);
}

/* KOMFORT */
.firma-coverage-table thead th:nth-child(3) {
    background: linear-gradient(180deg, rgba(245,105,0,0.15) 0%, rgba(255,240,225,1) 100%);
}

/* PREMIUM 🔥 */
.firma-coverage-table thead th:nth-child(4) {
    background: linear-gradient(180deg, #1e3a5f 0%, #0f2239 100%);
    color: #ffffff;
    box-shadow: inset 0 -2px 0 rgba(255,255,255,0.1);
}

/* BODY */
.firma-coverage-table tbody td {
    padding: 26px 20px;
    text-align: center;
    font-size: 17px;
    color: #22324a;
    border-bottom: 1px solid rgba(19, 34, 53, 0.06);
}

/* ZEBRA */
.firma-coverage-table tbody tr:nth-child(even) td {
    background: rgba(240, 246, 252, 0.6);
}

/* KOMFORT SPALTE */
.firma-coverage-table tbody td:nth-child(3) {
    background: rgba(255, 245, 235, 0.8);
}

/* PREMIUM SPALTE 🔥 */
/* PREMIUM SPALTE FIX FINAL */
.firma-coverage-table tbody td:nth-child(4) {
    background: linear-gradient(180deg, #142c47 0%, #0f2239 100%) !important;
    color: #ffffff !important;
    font-weight: 600;
}

/* PREMIUM TEXT */
.firma-coverage-table tbody td:nth-child(4) strong {
    color: #ffffff !important;
}

.firma-coverage-table tbody td:nth-child(4) small {
    color: rgba(255,255,255,0.7);
}

/* PREMIUM HOVER (nur leicht!) */
.firma-coverage-table tbody tr:hover td:nth-child(4) {
    background: linear-gradient(180deg, #183454 0%, #122a45 100%) !important;
}

/* SMALL TEXT */
.firma-coverage-table tbody td:nth-child(4) {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 0 0 1px rgba(255,255,255,0.02);
}

/* PREMIUM SMALL */
.firma-coverage-table tbody td:nth-child(4) small {
    color: rgba(255,255,255,0.7);
}

/* HOVER ROW */
.firma-coverage-table tbody tr:hover td {
    background: rgba(0, 103, 166, 0.05);
}

/* ROUNDED FIX */
.firma-coverage-table thead th:first-child {
    border-top-left-radius: 28px;
}
.firma-coverage-table thead th:last-child {
    border-top-right-radius: 28px;
}
.firma-coverage-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 28px;
}
.firma-coverage-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 28px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {
    .firma-intro-text h2 {
        max-width: 100%;
    }

    .pricing-card-modern {
        padding: 24px;
    }
}

@media (max-width: 767.98px) {
    .firma-intro-text .firma-intro-lead {
        font-size: 17px;
        line-height: 1.7;
    }

    .firma-intro-text p:not(.firma-intro-lead) {
        font-size: 16px;
        line-height: 1.75;
    }

    .firma-coverage-table thead th,
    .firma-coverage-table tbody td {
        padding: 18px 14px;
        font-size: 15px;
    }

    .firma-coverage-table tbody td strong {
        font-size: 16px;
    }

    .firma-coverage-table tbody td small {
        font-size: 13px;
    }
}
/* =========================================================
   FIRMA – PREMIUM STÄRKER HIGHLIGHTEN
========================================================= */

.firma-coverage-table thead th.premium-head-cell {
    background: linear-gradient(180deg, #21446f 0%, #102842 100%) !important;
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 10px 24px rgba(16, 40, 66, 0.18);
}

.firma-coverage-table thead th.premium-head-cell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 28%),
        radial-gradient(circle at bottom left, rgba(73, 134, 255, 0.18), transparent 35%);
    pointer-events: none;
}

.premium-head-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.premium-head-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f56900 0%, #ff9a45 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(245, 105, 0, 0.26);
}

.firma-coverage-table thead th.premium-head-cell span:last-child {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.firma-coverage-table tbody td:nth-child(4) {
    position: relative;
    background: linear-gradient(180deg, #17314f 0%, #0f2239 100%) !important;
    color: #ffffff !important;
    font-weight: 700;
    box-shadow:
        inset 1px 0 0 rgba(255,255,255,0.04),
        inset -1px 0 0 rgba(255,255,255,0.04);
}

.firma-coverage-table tbody td:nth-child(4)::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.10), transparent 26%),
        radial-gradient(circle at bottom left, rgba(83, 145, 255, 0.14), transparent 32%);
    pointer-events: none;
}

.firma-coverage-table tbody td:nth-child(4) strong,
.firma-coverage-table tbody td:nth-child(4) small,
.firma-coverage-table tbody td:nth-child(4) {
    position: relative;
    z-index: 1;
}

.firma-coverage-table tbody td:nth-child(4) strong {
    color: #ffffff !important;
}

.firma-coverage-table tbody td:nth-child(4) small {
    color: rgba(255,255,255,0.72) !important;
}

.firma-coverage-table tbody tr:hover td:nth-child(4) {
    background: linear-gradient(180deg, #1b395d 0%, #13304d 100%) !important;
    transform: translateY(-1px);
}

.firma-coverage-table tbody td:nth-child(4) {
    transition: background 0.25s ease, transform 0.25s ease;
}

/* Premium-Spalte leicht optisch absetzen */
.firma-coverage-table thead th.premium-head-cell,
.firma-coverage-table tbody td:nth-child(4) {
    border-left: 1px solid rgba(255,255,255,0.08);
}

/* Mobile */
@media (max-width: 767.98px) {
    .premium-head-badge {
        font-size: 10px;
        padding: 5px 10px;
    }

    .firma-coverage-table thead th.premium-head-cell span:last-child {
        font-size: 16px;
    }
}
.cards-track {
    display: flex;
    gap: 20px;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
/* =========================================================
   CARD SLIDER – DESKTOP 3 KARTEN SICHTBAR
========================================================= */

.cards-slider {
    overflow: hidden;
    padding: 10px 56px;
}

.cards-track {
    display: flex;
    gap: 20px;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.card-wrap {
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
}

.rs-card-link,
.rs-card {
    width: 100%;
}

@media (max-width: 1199.98px) {
    .card-wrap {
        flex: 0 0 calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 767.98px) {
    .card-wrap {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* =========================
   PKV NAV HIGHLIGHT
========================= */

.header-menu .header-link {
    position: relative;
    color: #1f2a2e;
    transition: all 0.25s ease;
}

/* Hover allgemein */
.header-menu .header-link:hover {
    color: #f56900;
}

/* 🔥 PKV Highlight */
.header-menu .header-link.pkv-highlight {
    color: #f56900 !important;
    font-weight: 700;
}

/* Premium Linie unten */
.header-menu .header-link.pkv-highlight::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffb15f, #f56900);
    border-radius: 2px;
}

/* Optional: leicht stärker beim Hover */
.header-menu .header-link.pkv-highlight:hover {
    color: #ff9a2e !important;
}
/* =========================
/* =========================================================
   CARD TYPO – SICHTBAR ANDERS
========================================================= */

.rs-card-kicker {
  font-family: "Zalando Sans", sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #6b7280 !important;
}

.rs-text-title {
  font-family: "Zalando Sans", sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.32 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  color: #0f172a !important;
  margin: 8px 0 14px 0 !important;
  max-width: 19ch !important;
}

.rs-text-body {
  font-family: "Roboto", sans-serif !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #5f6f80 !important;
  max-width: 32ch !important;
}

@media (max-width: 767.98px) {
  .rs-text-title {
    font-size: 16px !important;
    line-height: 1.28 !important;
    max-width: none !important;
  }

  .rs-text-body {
    font-size: 14px !important;
    line-height: 1.6 !important;
    max-width: none !important;
  }
}

/* =========================
   FONT SYSTEM – LANDING PAGES
========================= */

/* Headlines */
.prozess-intro-text h2,
.prozess-card h3,
.beispielrechner-head h3,
.step-copy h3,
.privat-funnel-intro h2,
.privat-success-card h3,
.vermieter-panel h4,
.privat-summary-card h4,
.contact-card-head h4,
.prozess-result-head h4 {
  font-family: var(--font-headline);
}

/* Body / Lesetext */
.banner-inner-section p,
.privat-cards-heading p,
.rs-text-body,
.prozess-intro-text p,
.prozess-card p,
.prozess-hint,
.prozess-streitwert-range,
.prozess-note-box p,
.tarif-table-topbar p,
.tarif-table-note,
.beispielrechner-head p,
.beispiel-toggle-subtitle,
.beispiel-note,
.privat-funnel-intro p,
.step-copy p,
.privat-option-card small,
.step-tip,
.contact-card-head p,
.privat-checkbox,
.summary-line span,
.summary-note,
.summary-checklist div,
.privat-side-note p,
.funnel-info-box,
.funnel-info-box p,
.privat-success-card p,
.success-line span {
  font-family: var(--font-body);
}

/* Kicker / Labels / Accent */
.rs-card-kicker,
.prozess-kicker,
.tarif-table-kicker,
.beispielrechner-kicker,
.privat-funnel-kicker,
.summary-kicker,
.privat-success-kicker {
  font-family: var(--font-accent);
}
/* =========================
   FONT SYSTEM – LANDING PAGES
========================= */

/* Headlines */
.prozess-intro-text h2,
.prozess-card h3,
.beispielrechner-head h3,
.step-copy h3,
.privat-funnel-intro h2,
.privat-success-card h3,
.vermieter-panel h4,
.privat-summary-card h4,
.contact-card-head h4,
.prozess-result-head h4 {
  font-family: var(--font-headline);
}

/* Body / Lesetext */
.banner-inner-section p,
.privat-cards-heading p,
.rs-text-body,
.prozess-intro-text p,
.prozess-card p,
.prozess-hint,
.prozess-streitwert-range,
.prozess-note-box p,
.tarif-table-topbar p,
.tarif-table-note,
.beispielrechner-head p,
.beispiel-toggle-subtitle,
.beispiel-note,
.privat-funnel-intro p,
.step-copy p,
.privat-option-card small,
.step-tip,
.contact-card-head p,
.privat-checkbox,
.summary-line span,
.summary-note,
.summary-checklist div,
.privat-side-note p,
.funnel-info-box,
.funnel-info-box p,
.privat-success-card p,
.success-line span {
  font-family: var(--font-body);
}

/* Kicker / Labels / Accent */
.rs-card-kicker,
.prozess-kicker,
.tarif-table-kicker,
.beispielrechner-kicker,
.privat-funnel-kicker,
.summary-kicker,
.privat-success-kicker {
  font-family: var(--font-accent);
}
/* =========================================================
   ABOUT-US V2
   Nur für about-us.html
   Namespaced mit aboutv2-, damit nichts anderes überschrieben wird
========================================================= */

.about-v2-page {
  background: #ffffff;
}

.about-v2-page .cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  max-width: 620px;
  margin: auto;
  background: rgba(31, 42, 46, 0.96);
  color: #fff;
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255,255,255,0.08);
}

.about-v2-page .cookie-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-v2-page .cookie-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
}

.about-v2-page .cookie-content a {
  color: #d7ff64;
}

.about-v2-page .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-v2-page .cookie-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
}

.about-v2-page .cookie-btn.accept {
  background: #d7ff64;
  color: #111;
}

.about-v2-page .cookie-btn.decline {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}

.about-v2-page .cookie-banner.hide {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.aboutv2-shell {
  position: relative;
}

.aboutv2-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.aboutv2-section--light {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}

.aboutv2-section--dark {
  background: #1f2a2e;
  color: #ffffff;
}

.aboutv2-section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(0, 103, 166, 0.15), transparent 26%),
    radial-gradient(circle at bottom right, rgba(124, 201, 255, 0.08), transparent 26%);
  pointer-events: none;
}

.aboutv2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 42, 46, 0.92), rgba(31, 42, 46, 0.82)),
    url("assets/images/backgrounds/aboutimg.png") center center / cover no-repeat;
}

.aboutv2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(215, 255, 100, 0.14), transparent 22%),
    radial-gradient(circle at 85% 22%, rgba(255,255,255,0.10), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(0, 103, 166, 0.20), transparent 34%);
  pointer-events: none;
}

.aboutv2-hero__container {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 90px;
}

.aboutv2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  line-height: 1;
}

.aboutv2-kicker--light {
  background: rgba(0, 103, 166, 0.06);
  border: 1px solid rgba(0, 103, 166, 0.08);
  color: #1f2a2e;
}

.aboutv2-kicker__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0067a6;
  display: inline-block;
}

.aboutv2-title-xl,
.aboutv2-title-lg,
.aboutv2-title-md {
  margin: 0 0 18px;
  font-family: var(--font-headline);
  line-height: 0.96;
  letter-spacing: 0.01em;
}

.aboutv2-title-xl {
  font-size: clamp(48px, 8vw, 106px);
  color: #ffffff;
}

.aboutv2-title-lg {
  font-size: clamp(34px, 5vw, 64px);
  color: #14202b;
}

.aboutv2-title-lg--light,
.aboutv2-title-md--light {
  color: #ffffff;
}

.aboutv2-title-lg--lighttext {
  color: #ffffff;
  margin-bottom: 14px;
}

.aboutv2-title-md {
  font-size: clamp(28px, 4vw, 50px);
  color: #14202b;
}

.aboutv2-hero__text {
  max-width: 760px;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 30px;
}

.aboutv2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.aboutv2-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.aboutv2-btn:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.aboutv2-btn__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.aboutv2-btn--primary {
  background: linear-gradient(135deg, #0067a6 0%, #1585c9 100%);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 103, 166, 0.28);
}

.aboutv2-btn--primary:hover {
  color: #ffffff;
}

.aboutv2-btn--ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffffff;
}

.aboutv2-btn--ghost:hover {
  color: #ffffff;
}

.aboutv2-btn--lime {
  background: #d7ff64;
  color: #111111;
  box-shadow: 0 18px 40px rgba(215, 255, 100, 0.22);
}

.aboutv2-btn--lime:hover {
  color: #111111;
}

.aboutv2-btn--ghost-light {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffffff;
}

.aboutv2-btn--ghost-light:hover {
  color: #ffffff;
}

.aboutv2-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
}

.aboutv2-mini-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.aboutv2-mini-card strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 4px;
}

.aboutv2-mini-card span {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.6;
}

.aboutv2-hero__panel {
  position: relative;
  padding: 32px 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(124, 201, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 28px 70px rgba(0,0,0,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.aboutv2-hero__panel::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -90px;
  top: -80px;
  background: rgba(215,255,100,0.10);
  filter: blur(6px);
}

.aboutv2-panel__eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  z-index: 2;
}

.aboutv2-hero__panel h3 {
  position: relative;
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  z-index: 2;
}

.aboutv2-hero__panel p {
  position: relative;
  margin: 0 0 22px;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.75;
  z-index: 2;
}

.aboutv2-panel__trust {
  position: relative;
  display: grid;
  gap: 12px;
  z-index: 2;
}

.aboutv2-panel__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.aboutv2-panel__trust-item iconify-icon {
  font-size: 22px;
  color: #d7ff64;
}

.aboutv2-copy p {
  margin-bottom: 18px;
  color: #425466;
  font-size: 18px;
  line-height: 1.82;
}

.aboutv2-section__head {
  max-width: 900px;
  margin: 0 auto 54px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.aboutv2-section__lead {
  max-width: 760px;
  margin: 0;
  color: #526273;
  font-size: 18px;
  line-height: 1.8;
}

.aboutv2-section__lead--light {
  margin: 0 auto;
  color: rgba(255,255,255,0.76);
}

.aboutv2-image-card {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbfe 0%, #eef5fb 100%);
  border: 1px solid rgba(0, 103, 166, 0.08);
  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.10),
    0 10px 30px rgba(15, 23, 42, 0.06);
  padding: 14px;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
  isolation: isolate;
}

.aboutv2-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(0, 103, 166, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(21, 133, 201, 0.10), transparent 30%);
  pointer-events: none;
  z-index: 0;
}

.aboutv2-image-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 40px 90px rgba(15, 23, 42, 0.14),
    0 16px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(0, 103, 166, 0.14);
}

.aboutv2-image-card img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
  border-radius: 26px;
  display: block;
  position: relative;
  z-index: 1;
  transform: scale(1.01);
  transition: transform 0.7s ease;
}

.aboutv2-image-card:hover img {
  transform: scale(1.04);
}

.aboutv2-image-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(31, 42, 46, 0.00) 35%,
    rgba(31, 42, 46, 0.14) 72%,
    rgba(31, 42, 46, 0.42) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.aboutv2-image-card__overlay {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  z-index: 3;
  padding: 24px 24px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.08) 100%),
    rgba(31, 42, 46, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.4s ease, border-color 0.3s ease;
}

.aboutv2-image-card:hover .aboutv2-image-card__overlay {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.22);
}

.aboutv2-image-card__overlay::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 24px;
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0067a6 0%, #7cc9ff 100%);
}

.aboutv2-image-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aboutv2-image-card__overlay h4 {
  margin: 18px 0 10px;
  color: #ffffff;
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.02;
}

.aboutv2-image-card__overlay p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.7;
  max-width: 90%;
}

.aboutv2-glass-card {
  position: relative;
  height: 100%;
  padding: 30px 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(124, 201, 255, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 52px rgba(0,0,0,0.16);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.aboutv2-glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 30px 70px rgba(0,0,0,0.20);
}

.aboutv2-glass-card--center {
  text-align: center;
}

.aboutv2-glass-card h4 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.02;
}

.aboutv2-glass-card p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 15px;
  line-height: 1.72;
}

.aboutv2-iconbox {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(215,255,100,0.10);
  color: #d7ff64;
  border: 1px solid rgba(215,255,100,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.aboutv2-glass-card:hover .aboutv2-iconbox {
  transform: scale(1.08) rotate(-4deg);
}

.aboutv2-iconbox iconify-icon {
  font-size: 28px;
}

.aboutv2-process-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfe 100%);
  border: 1px solid rgba(0, 103, 166, 0.08);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
}

.aboutv2-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.aboutv2-step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.aboutv2-step:first-child {
  padding-top: 0;
}

.aboutv2-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1f2a2e;
  color: #d7ff64;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(31, 42, 46, 0.18);
}

.aboutv2-step__content h4 {
  margin: 0 0 8px;
  color: #16212c;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.02;
}

.aboutv2-step__content p {
  margin: 0;
  color: #556575;
  font-size: 16px;
  line-height: 1.75;
}

.aboutv2-quote-card {
  padding: 34px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(215,255,100,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 52px rgba(0,0,0,0.16);
  position: relative;
  z-index: 2;
}

.aboutv2-quote-card__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aboutv2-quote-card p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 18px;
  line-height: 1.78;
}

.aboutv2-cta {
  position: relative;
  border-radius: 36px;
  padding: 42px 36px;
  background: linear-gradient(135deg, #1f2a2e 0%, #2b393e 100%);
  box-shadow: 0 28px 70px rgba(0,0,0,0.16);
  overflow: hidden;
}

.aboutv2-cta::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -120px;
  top: -100px;
  background: rgba(215,255,100,0.10);
  filter: blur(8px);
}

.aboutv2-cta > * {
  position: relative;
  z-index: 2;
}

.aboutv2-cta__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aboutv2-cta__text {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height: 1.78;
  max-width: 720px;
}

.aboutv2-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.aboutv2-marquee {
  background: #1f2a2e;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.aboutv2-marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: aboutv2-marquee 28s linear infinite;
  color: #ffffff;
  font-size: 24px;
  font-family: var(--font-headline);
  letter-spacing: 0.03em;
}

.aboutv2-marquee__track span {
  position: relative;
  padding-left: 26px;
  white-space: nowrap;
}

.aboutv2-marquee__track span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: #d7ff64;
}

@keyframes aboutv2-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1199.98px) {
  .aboutv2-hero__stats {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 991.98px) {
  .aboutv2-hero {
    min-height: auto;
  }

  .aboutv2-hero__container {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .aboutv2-section {
    padding: 84px 0;
  }

  .aboutv2-image-card {
    min-height: 440px;
    padding: 10px;
    border-radius: 28px;
  }

  .aboutv2-image-card img {
    min-height: 420px;
    border-radius: 22px;
  }

  .aboutv2-image-card::after {
    inset: 10px;
    border-radius: 22px;
  }

  .aboutv2-image-card__overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 20px 18px 18px;
    border-radius: 20px;
  }

  .aboutv2-image-card__overlay h4 {
    font-size: clamp(22px, 6vw, 30px);
    margin-top: 16px;
  }

  .aboutv2-image-card__overlay p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.6;
  }

  .aboutv2-process-card {
    padding: 26px 22px;
    border-radius: 28px;
  }

  .aboutv2-cta {
    padding: 34px 24px;
    border-radius: 28px;
  }

  .aboutv2-cta__actions {
    align-items: stretch;
  }
}

@media (max-width: 767.98px) {
  .aboutv2-title-xl {
    font-size: clamp(42px, 14vw, 70px);
  }

  .aboutv2-title-lg {
    font-size: clamp(30px, 10vw, 48px);
  }

  .aboutv2-title-md {
    font-size: clamp(28px, 8vw, 40px);
  }

  .aboutv2-hero__text,
  .aboutv2-copy p,
  .aboutv2-section__lead,
  .aboutv2-cta__text,
  .aboutv2-quote-card p {
    font-size: 16px;
    line-height: 1.72;
  }

  .aboutv2-btn {
    width: 100%;
    justify-content: space-between;
  }

  .aboutv2-step {
    gap: 14px;
  }

  .aboutv2-step__number {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .aboutv2-glass-card,
  .aboutv2-hero__panel,
  .aboutv2-quote-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .aboutv2-marquee__track {
    font-size: 20px;
    gap: 40px;
  }
}
/* =========================================================
   GLOBAL PREMIUM HERO SYSTEM
   Namespaced: sitehero-
   Für alle Seiten außer PKV nutzbar
========================================================= */

.sitehero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at left top, rgba(0, 103, 166, 0.18), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(124, 201, 255, 0.18), transparent 24%),
    linear-gradient(120deg, #101924 0%, #12202c 42%, #101c27 100%);
}

.sitehero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 28, 0.52) 0%, rgba(5, 12, 28, 0.12) 55%, rgba(5, 12, 28, 0.03) 100%);
  pointer-events: none;
}

.sitehero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 255, 100, 0.13), transparent 62%);
  filter: blur(20px);
  pointer-events: none;
}

.sitehero--blue {
  background:
    radial-gradient(circle at left top, rgba(0, 103, 166, 0.18), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(124, 201, 255, 0.18), transparent 24%),
    linear-gradient(120deg, #101924 0%, #12202c 42%, #101c27 100%);
}

.sitehero--darkgreen {
  background:
    radial-gradient(circle at left top, rgba(215, 255, 100, 0.10), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(124, 201, 255, 0.12), transparent 24%),
    linear-gradient(120deg, #172125 0%, #1f2a2e 42%, #213238 100%);
}

.sitehero--mixed {
  background:
    radial-gradient(circle at left top, rgba(0, 103, 166, 0.16), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(215, 255, 100, 0.11), transparent 24%),
    linear-gradient(120deg, #0e1820 0%, #1b272d 42%, #22353d 100%);
}

.sitehero__container {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 90px;
}

.sitehero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.sitehero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
  margin-bottom: 1.2rem;
}

.sitehero__badge iconify-icon {
  font-size: 1.1rem;
}

.sitehero__eyebrow {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.sitehero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.sitehero__chip iconify-icon {
  font-size: 1.1rem;
  color: #d7ff64;
}

.sitehero__title {
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  margin: 0 0 1.3rem;
  color: #fff;
  max-width: 10ch;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.sitehero__title-gradient {
  background: linear-gradient(90deg, #ffffff 0%, #d7ff64 42%, #7cc9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sitehero__sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  line-height: 1.78;
  max-width: 720px;
  margin: 0 0 1.7rem;
}

.sitehero__points {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.7rem;
}

.sitehero__points div {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  font-weight: 600;
}

.sitehero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0;
}

.sitehero__actions .btn {
  min-height: 58px;
  border-radius: 999px;
  padding: 0 1.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sitehero__actions .btn-primary {
  background: linear-gradient(135deg, #0067a6 0%, #1585c9 55%, #7cc9ff 100%) !important;
  border: none !important;
  box-shadow: 0 20px 38px rgba(0, 103, 166, 0.30);
}

.sitehero__actions .btn-outline-light {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
  backdrop-filter: blur(14px);
}

.sitehero__side {
  position: relative;
  z-index: 2;
}

.sitehero__side::before {
  content: "";
  position: absolute;
  inset: 8% -6% -8% 18%;
  background: radial-gradient(circle, rgba(124, 201, 255, 0.20), transparent 65%);
  filter: blur(26px);
  pointer-events: none;
  z-index: 0;
}

.sitehero__card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, #f8fbfe 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 34px;
  box-shadow: 0 35px 80px rgba(0, 11, 45, 0.22);
  padding: 3rem 2.25rem;
  transform: perspective(1200px) rotateY(-7deg) rotateX(2deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sitehero__card:hover {
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg) translateY(-8px);
  box-shadow: 0 42px 90px rgba(0, 11, 45, 0.28);
}

.sitehero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 103, 166, 0.10), transparent 34%);
  pointer-events: none;
}

.sitehero__card-badge {
  position: absolute;
  top: 22px;
  right: 20px;
  z-index: 3;
  background: linear-gradient(135deg, #1f2a2e, #0067a6);
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  box-shadow: 0 18px 35px rgba(0, 103, 166, 0.20);
  font-weight: 800;
}

.sitehero__card-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: #edf6fc;
  color: #0067a6;
  font-weight: 800;
  margin-bottom: 1rem;
}

.sitehero__card-mini iconify-icon {
  font-size: 1rem;
}

.sitehero__card h3 {
  font-size: clamp(3rem, 2.5vw, 4.7rem);
  line-height: 0.95;
  margin-bottom: 0.6rem;
  color: #13224b;
}

.sitehero__card p {
  color: #69779a;
  font-size: 1.08rem;
  line-height: 1.7;
}

.sitehero__card ul {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.sitehero__card li {
  position: relative;
  padding: 1rem 0 1rem 1.7rem;
  border-bottom: 1px solid rgba(18, 31, 76, 0.08);
  color: #1e2b52;
  font-weight: 600;
}

.sitehero__card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1rem;
  color: #0067a6;
  font-weight: 900;
}

.sitehero__card-highlight {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #edf6fc, #dff0fb);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  font-weight: 800;
  color: #16224b;
}

.sitehero__card-trust {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.sitehero__card-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #5c6c89;
  font-size: 0.95rem;
  font-weight: 700;
}

.sitehero__card-trust iconify-icon {
  color: #0067a6;
}

@media (max-width: 1399px) {
  .sitehero__card {
    transform: none;
  }

  .sitehero__card:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 991px) {
  .sitehero {
    padding-top: 7rem;
    min-height: auto;
  }

  .sitehero__title {
    font-size: clamp(3.1rem, 14vw, 5.4rem);
    max-width: 100%;
  }

  .sitehero__card {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .sitehero__container {
    padding-top: 120px;
    padding-bottom: 72px;
  }

  .sitehero__title {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .sitehero__sub {
    font-size: 1rem;
    line-height: 1.65;
  }

  .sitehero__card h3 {
    font-size: 2.4rem;
  }

  .sitehero__points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .sitehero__chip {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .sitehero__actions {
    flex-direction: column;
  }

  .sitehero__actions .btn {
    width: 100%;
  }

  .sitehero__card {
    padding: 2rem 1.35rem;
    border-radius: 26px;
  }

  .sitehero__card-badge {
    top: 16px;
    right: 16px;
    padding: 0.55rem 0.95rem;
    font-size: 0.9rem;
  }
}
/* =========================================================
   SITEHERO TRUST BADGES + PRIVAT TITLE TUNING
========================================================= */

.sitehero__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.35rem;
}

.sitehero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.sitehero__trust-badge:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.20);
  color: #ffffff;
  text-decoration: none;
}

.sitehero__trust-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.sitehero__google-logo {
  height: 20px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.sitehero__trust-badge--google span {
  white-space: nowrap;
}

.sitehero__title--privat {
  font-size: clamp(3.4rem, 2.6vw, 6.6rem);
  max-width: 9.5ch;
  margin-bottom: 1rem;
}

.sitehero__sub {
  max-width: 660px;
}

@media (max-width: 991px) {
  .sitehero__trust-row {
    margin-bottom: 1.1rem;
  }

  .sitehero__title--privat {
    font-size: clamp(3rem, 12vw, 5rem);
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .sitehero__trust-row {
    flex-direction: column;
    align-items: stretch;
  }

  .sitehero__trust-badge {
    justify-content: center;
    text-align: center;
  }

  .sitehero__title--privat {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }
}
/* =========================
   HERO CARD TRUST (rechts)
========================= */

.sitehero__card-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.sitehero__proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid rgba(18, 31, 76, 0.08);
  font-size: 0.85rem;
  font-weight: 700;
  color: #1c2951;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sitehero__proof-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.sitehero__proof-badge img {
  height: 18px;
  width: auto;
  display: block;
}

.sitehero__proof-google img {
  height: 16px;
}
.sitehero__title--verkehr {
  font-size: clamp(2.4rem, 2.6vw, 4.5rem);
  max-width: 7.5ch;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .sitehero__title--verkehr {
    font-size: clamp(3rem, 12vw, 5rem);
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .sitehero__title--verkehr {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }
}
.sitehero__title--vermieter {
  font-size: clamp(3.4rem, 3.5vw, 6.3rem);
  max-width: 8.8ch;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .sitehero__title--vermieter {
    font-size: clamp(3rem, 12vw, 5rem);
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .sitehero__title--vermieter {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }
}
.sitehero__title--zahn {
  font-size: clamp(3.4rem, 4.4vw, 6.4rem);
  max-width: 9ch;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .sitehero__title--zahn {
    font-size: clamp(3rem, 12vw, 5rem);
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .sitehero__title--zahn {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }
}
.sitehero__title--firma {
  font-size: clamp(3.3rem, 6.2vw, 6.1rem);
  max-width: 10ch;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .sitehero__title--firma {
    font-size: clamp(3rem, 12vw, 5rem);
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .sitehero__title--firma {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }
}
/* =========================
   FIX: Firmenrechtsschutz Intro Text auf Dark Section
========================= */

.firma-intro-text h2 {
  color: #ffffff !important;
}

.firma-intro-text p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.firma-intro-text .firma-intro-lead {
  color: rgba(255, 255, 255, 0.88) !important;
}

.firma-intro-text .firma-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff !important;
  letter-spacing: 0.08em;
}
/* =========================================================
   PROJECTS / VIDEO PAGE V2
   Namespaced: projectsv2-
   Nur für projects.html
========================================================= */

.projectsv2-page {
  background: #ffffff;
}

.projectsv2-section {
  padding: 110px 0;
}

.projectsv2-section--light {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}

.projectsv2-section--dark {
  background: #1f2a2e;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.projectsv2-section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(0, 103, 166, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(124, 201, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.projectsv2-head {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.projectsv2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(0, 103, 166, 0.06);
  border: 1px solid rgba(0, 103, 166, 0.08);
  color: #1f2a2e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1;
}

.projectsv2-kicker--dark {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: #ffffff;
}

.projectsv2-kicker__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0067a6;
  display: inline-block;
}

.projectsv2-head h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.96;
  color: #14202b;
}

.projectsv2-section--dark .projectsv2-head h2 {
  color: #ffffff;
}

.projectsv2-head p {
  margin: 0 auto;
  max-width: 760px;
  color: #556575;
  font-size: 18px;
  line-height: 1.8;
}

.projectsv2-section--dark .projectsv2-head p {
  color: rgba(255,255,255,0.78);
}

.projectsv2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.projectsv2-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
  border: 1px solid rgba(19, 34, 53, 0.08);
  box-shadow: 0 22px 54px rgba(15, 35, 55, 0.08);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.projectsv2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(15, 35, 55, 0.14);
  border-color: rgba(0, 103, 166, 0.16);
}

.projectsv2-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at top right, rgba(124, 201, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #16232b 0%, #1f2a2e 42%, #233740 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.projectsv2-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.30) 100%);
  pointer-events: none;
  z-index: 1;
}

.projectsv2-card__preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.6s ease;
  transform: scale(1.02);
  background: #0f1418;
}

.projectsv2-card.is-preview-ready .projectsv2-card__preview {
  opacity: 1;
}

.projectsv2-card:hover .projectsv2-card__preview {
  transform: scale(1.05);
}

.projectsv2-card__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(124, 201, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #16232b 0%, #1f2a2e 42%, #233740 100%);
}

.projectsv2-card.is-preview-ready .projectsv2-card__fallback {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.projectsv2-card__icon {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  color: #d7ff64;
  backdrop-filter: blur(12px);
  z-index: 3;
}

.projectsv2-card__icon iconify-icon {
  font-size: 28px;
}

.projectsv2-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 4;
}

.projectsv2-card__playbtn {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, background 0.28s ease;
}

.projectsv2-card:hover .projectsv2-card__playbtn {
  transform: scale(1.08);
  background: rgba(255,255,255,0.20);
}

.projectsv2-card__playbtn iconify-icon {
  font-size: 34px;
  color: #ffffff;
  margin-left: 3px;
}

.projectsv2-card__label {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.projectsv2-card__body {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 auto;
}

.projectsv2-card__title {
  margin: 0;
  color: #152130;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.05;
}

.projectsv2-card__text {
  margin: 0;
  color: #5d6c80;
  font-size: 15px;
  line-height: 1.72;
  flex: 1 1 auto;
}

.projectsv2-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.projectsv2-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 103, 166, 0.06);
  border: 1px solid rgba(0, 103, 166, 0.08);
  color: #0067a6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.projectsv2-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 2;
}

.projectsv2-category-card {
  height: 100%;
  padding: 24px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 42px rgba(0,0,0,0.14);
  backdrop-filter: blur(10px);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.projectsv2-category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
}

.projectsv2-category-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.02;
}

.projectsv2-category-card p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  line-height: 1.72;
  font-size: 15px;
}

.projectsv2-category-card iconify-icon {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 28px;
  color: #d7ff64;
}

.projectsv2-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.84);
  z-index: 9999;
  backdrop-filter: blur(6px);
  padding: 18px;
}

.projectsv2-modal.active {
  display: flex;
  animation: projectsv2FadeIn 0.28s ease;
}

.projectsv2-modal__dialog {
  position: relative;
  width: min(100%, 1020px);
  background: #000000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  animation: projectsv2ScaleIn 0.28s ease;
}

.projectsv2-modal__video {
  width: 100%;
  height: auto;
  display: block;
  background: #000000;
}

.projectsv2-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease, background 0.2s ease;
}

.projectsv2-modal__close:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,0.20);
}

@keyframes projectsv2FadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes projectsv2ScaleIn {
  from { transform: scale(0.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (hover: hover) and (pointer: fine) {
  .projectsv2-card:hover .projectsv2-card__preview {
    opacity: 1;
  }
}

@media (max-width: 1199.98px) {
  .projectsv2-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projectsv2-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .projectsv2-section {
    padding: 84px 0;
  }

  .projectsv2-grid,
  .projectsv2-category-grid {
    grid-template-columns: 1fr;
  }

  .projectsv2-card__body {
    padding: 20px 18px 18px;
  }

  .projectsv2-card__playbtn {
    width: 72px;
    height: 72px;
  }

  .projectsv2-card__icon {
    width: 52px;
    height: 52px;
    top: 18px;
    left: 18px;
  }

  .projectsv2-card__icon iconify-icon {
    font-size: 24px;
  }

  .projectsv2-card__title {
    font-size: 24px;
  }

  .projectsv2-head p {
    font-size: 16px;
    line-height: 1.72;
  }

  .projectsv2-modal__dialog {
    border-radius: 18px;
  }
}
/* =========================================================
   PROJECTS V2 – MODERN PLAYER UPGRADE
   Ergänzung für Video-Cards / Player-Section
========================================================= */

.projectsv2-grid {
  gap: 30px;
}

.projectsv2-card {
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  border: 1px solid rgba(19, 34, 53, 0.08);
  box-shadow:
    0 24px 60px rgba(15, 35, 55, 0.08),
    0 8px 22px rgba(15, 35, 55, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.projectsv2-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 34px 80px rgba(15, 35, 55, 0.14),
    0 10px 24px rgba(15, 35, 55, 0.06);
  border-color: rgba(0, 103, 166, 0.16);
}

.projectsv2-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(124, 201, 255, 0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(215, 255, 100, 0.10), transparent 26%),
    linear-gradient(135deg, #142028 0%, #1f2a2e 46%, #243842 100%);
  display: flex;
  align-items: flex-end;
}

.projectsv2-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.30) 100%);
  z-index: 1;
  pointer-events: none;
}

.projectsv2-card__media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
  z-index: 2;
}

.projectsv2-card__fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(124, 201, 255, 0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(215, 255, 100, 0.10), transparent 26%),
    linear-gradient(135deg, #142028 0%, #1f2a2e 46%, #243842 100%);
  z-index: 0;
}

.projectsv2-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.projectsv2-card__icon iconify-icon {
  font-size: 30px;
  color: #d7ff64;
}

.projectsv2-card__playbtn {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.10));
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 22px 44px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.14);
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.projectsv2-card:hover .projectsv2-card__playbtn {
  transform: scale(1.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.14));
  box-shadow:
    0 28px 50px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.projectsv2-card__playbtn iconify-icon {
  font-size: 38px;
  color: #ffffff;
}

.projectsv2-card__label {
  position: relative;
  z-index: 3;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 9px 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.projectsv2-card__body {
  padding: 26px 24px 24px;
  gap: 16px;
}

.projectsv2-card__title {
  font-size: clamp(26px, 2vw, 32px);
  line-height: 1.02;
  color: #14212f;
  margin: 0;
}

.projectsv2-card__text {
  font-size: 15px;
  line-height: 1.78;
  color: #5d6c80;
}

.projectsv2-card__meta {
  gap: 12px;
}

.projectsv2-chip {
  min-height: 36px;
  padding: 8px 14px;
  background: rgba(0, 103, 166, 0.06);
  border: 1px solid rgba(0, 103, 166, 0.08);
  color: #0067a6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.projectsv2-head {
  margin-bottom: 64px;
}

.projectsv2-head h2 {
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
}

.projectsv2-head p {
  max-width: 760px;
}

.projectsv2-modal {
  background: rgba(4, 10, 14, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.projectsv2-modal__dialog {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.08);
}

.projectsv2-modal__close {
  top: 14px;
  right: 14px;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 30px;
}

.projectsv2-modal__close:hover {
  background: rgba(255,255,255,0.20);
}

@media (max-width: 991.98px) {
  .projectsv2-grid {
    gap: 22px;
  }

  .projectsv2-card__body {
    padding: 22px 20px 20px;
  }

  .projectsv2-card__playbtn {
    width: 82px;
    height: 82px;
  }
}

@media (max-width: 767.98px) {
  .projectsv2-head {
    margin-bottom: 44px;
  }

  .projectsv2-card {
    border-radius: 26px;
  }

  .projectsv2-card__media {
    padding: 18px;
    aspect-ratio: 16 / 11;
  }

  .projectsv2-card__media::after {
    inset: 10px;
    border-radius: 18px;
  }

  .projectsv2-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    top: 18px;
    left: 18px;
  }

  .projectsv2-card__icon iconify-icon {
    font-size: 24px;
  }

  .projectsv2-card__playbtn {
    width: 74px;
    height: 74px;
  }

  .projectsv2-card__playbtn iconify-icon {
    font-size: 30px;
  }

  .projectsv2-card__body {
    padding: 20px 18px 18px;
  }

  .projectsv2-card__title {
    font-size: 24px;
  }

  .projectsv2-card__text {
    font-size: 14px;
    line-height: 1.7;
  }

  .projectsv2-chip {
    min-height: 34px;
    padding: 7px 12px;
  }

  .projectsv2-modal__dialog {
    border-radius: 20px;
  }
}
/* =========================================================
   PROJECTS V3 – MODERN VIDEO PAGE
   Namespaced: projectsv3-
========================================================= */

.projectsv3-page {
  background: #ffffff;
}

.projectsv3-hero-title {
  font-size: clamp(3.6rem, 6.8vw, 6.8rem);
  max-width: 9.5ch;
}

.projectsv3-hero-sub {
  max-width: 680px;
}

.projectsv3-hero-card {
  position: relative;
}

.projectsv3-quicknav-wrap {
  position: relative;
  z-index: 5;
  margin-top: -34px;
  padding-bottom: 22px;
}

.projectsv3-quicknav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(18, 31, 76, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 50px rgba(10, 18, 34, 0.10);
}

.projectsv3-quicknav__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff, #f5f9fd);
  border: 1px solid rgba(18, 31, 76, 0.06);
  color: #152130;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.projectsv3-quicknav__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(10, 18, 34, 0.10);
  border-color: rgba(0, 103, 166, 0.16);
  color: #152130;
  text-decoration: none;
}

.projectsv3-quicknav__item iconify-icon {
  font-size: 18px;
  color: #0067a6;
}

.projectsv3-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  position: relative;
  z-index: 2;
}

.projectsv3-benefit-card {
  height: 100%;
  padding: 28px 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 46px rgba(0,0,0,0.16);
  backdrop-filter: blur(10px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.projectsv3-benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 26px 54px rgba(0,0,0,0.20);
}

.projectsv3-benefit-card iconify-icon {
  font-size: 30px;
  color: #d7ff64;
  margin-bottom: 14px;
  display: inline-flex;
}

.projectsv3-benefit-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.02;
}

.projectsv3-benefit-card p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  line-height: 1.72;
}

.projectsv3-featured-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 24px;
}

.projectsv3-section-divider {
  position: relative;
}

.projectsv3-section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1200px, calc(100% - 24px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(18,31,76,0.10), rgba(0,0,0,0));
}

.projectsv3-card {
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  border: 1px solid rgba(19, 34, 53, 0.08);
  box-shadow:
    0 26px 64px rgba(15, 35, 55, 0.08),
    0 10px 24px rgba(15, 35, 55, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.projectsv3-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 34px 80px rgba(15, 35, 55, 0.14),
    0 12px 28px rgba(15, 35, 55, 0.06);
  border-color: rgba(0, 103, 166, 0.16);
}

.projectsv3-card--featured .projectsv2-card__body {
  padding: 30px 26px 26px;
}

.projectsv3-card--dark {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}

.projectsv2-grid {
  gap: 28px;
}

.projectsv2-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(124, 201, 255, 0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(215, 255, 100, 0.10), transparent 26%),
    linear-gradient(135deg, #142028 0%, #1f2a2e 46%, #243842 100%);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.projectsv2-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.30) 100%);
  z-index: 1;
  pointer-events: none;
}

.projectsv2-card__media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
  z-index: 2;
}

.projectsv2-card__preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.35s ease, transform 0.6s ease;
  background: #101820;
  pointer-events: none;
}

.projectsv2-card.is-preview-ready .projectsv2-card__preview {
  opacity: 1;
}

.projectsv2-card:hover .projectsv2-card__preview {
  transform: scale(1.05);
}

.projectsv2-card__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at top right, rgba(124, 201, 255, 0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(215, 255, 100, 0.10), transparent 26%),
    linear-gradient(135deg, #142028 0%, #1f2a2e 46%, #243842 100%);
  transition: opacity 0.25s ease;
}

.projectsv2-card.is-preview-ready .projectsv2-card__fallback {
  opacity: 0;
}

.projectsv2-card__icon {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.projectsv2-card__icon iconify-icon {
  font-size: 30px;
  color: #d7ff64;
}

.projectsv2-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 3;
}

.projectsv2-card__playbtn {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.10));
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 22px 44px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.projectsv2-card:hover .projectsv2-card__playbtn {
  transform: scale(1.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.14));
  box-shadow:
    0 28px 50px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.projectsv2-card__playbtn iconify-icon {
  font-size: 38px;
  color: #ffffff;
  margin-left: 2px;
}

.projectsv2-card__label {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.projectsv2-card__body {
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.projectsv2-card__title {
  font-size: clamp(26px, 2vw, 32px);
  line-height: 1.02;
  color: #14212f;
  margin: 0;
}

.projectsv2-card__text {
  font-size: 15px;
  line-height: 1.78;
  color: #5d6c80;
  margin: 0;
}

.projectsv2-card__meta {
  gap: 12px;
}

.projectsv2-chip {
  min-height: 36px;
  padding: 8px 14px;
  background: rgba(0, 103, 166, 0.06);
  border: 1px solid rgba(0, 103, 166, 0.08);
  color: #0067a6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.projectsv2-head {
  margin-bottom: 64px;
}

.projectsv2-head h2 {
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
}

.projectsv2-modal {
  background: rgba(4, 10, 14, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.projectsv2-modal__dialog {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.08);
}

.projectsv2-modal__close {
  top: 14px;
  right: 14px;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 30px;
  border-radius: 50%;
  position: absolute;
  z-index: 10;
  color: #fff;
}

.projectsv2-modal__close:hover {
  background: rgba(255,255,255,0.20);
}

@media (hover: none), (pointer: coarse) {
  .projectsv2-card__preview {
    display: none;
  }

  .projectsv2-card.is-preview-ready .projectsv2-card__fallback {
    opacity: 1;
  }
}

@media (max-width: 1199.98px) {
  .projectsv3-featured-grid {
    grid-template-columns: 1fr 1fr;
  }

  .projectsv3-featured-grid .projectsv3-card--featured:first-child {
    grid-column: 1 / -1;
  }

  .projectsv3-benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .projectsv3-hero-title {
    font-size: clamp(3rem, 12vw, 5.2rem);
    max-width: 100%;
  }

  .projectsv3-quicknav-wrap {
    margin-top: -18px;
  }

  .projectsv2-grid {
    gap: 22px;
  }

  .projectsv2-card__body {
    padding: 22px 20px 20px;
  }

  .projectsv2-card__playbtn {
    width: 82px;
    height: 82px;
  }
}

@media (max-width: 767.98px) {
  .projectsv3-quicknav {
    padding: 12px;
    border-radius: 22px;
  }

  .projectsv3-quicknav__item {
    width: 100%;
    justify-content: center;
  }

  .projectsv3-featured-grid,
  .projectsv3-benefits-grid {
    grid-template-columns: 1fr;
  }

  .projectsv2-head {
    margin-bottom: 44px;
  }

  .projectsv2-card__media {
    padding: 18px;
    aspect-ratio: 16 / 11;
  }

  .projectsv2-card__media::after {
    inset: 10px;
    border-radius: 18px;
  }

  .projectsv2-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    top: 18px;
    left: 18px;
  }

  .projectsv2-card__icon iconify-icon {
    font-size: 24px;
  }

  .projectsv2-card__playbtn {
    width: 74px;
    height: 74px;
  }

  .projectsv2-card__playbtn iconify-icon {
    font-size: 30px;
  }

  .projectsv2-card__body {
    padding: 20px 18px 18px;
  }

  .projectsv2-card__title {
    font-size: 24px;
  }

  .projectsv2-card__text {
    font-size: 14px;
    line-height: 1.7;
  }

  .projectsv2-chip {
    min-height: 34px;
    padding: 7px 12px;
  }

  .projectsv2-modal__dialog {
    border-radius: 20px;
  }
}
/* =========================================================
   FINAL FIX – CARD SLIDER WIDTHS
   Muss GANZ UNTEN in landing-pages.css stehen
========================================================= */

.cards-slider-wrapper {
  position: relative;
  margin-top: 40px;
}

.cards-slider {
  overflow: hidden;
  padding: 10px 56px;
}

.cards-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.card-wrap {
  flex: 0 0 calc((100% - 40px) / 3) !important;
  max-width: calc((100% - 40px) / 3) !important;
  min-width: calc((100% - 40px) / 3) !important;
  box-sizing: border-box;
}

.rs-card-link,
.rs-card {
  width: 100%;
}

@media (max-width: 1199.98px) {
  .card-wrap {
    flex: 0 0 calc((100% - 20px) / 2) !important;
    max-width: calc((100% - 20px) / 2) !important;
    min-width: calc((100% - 20px) / 2) !important;
  }
}

@media (max-width: 767.98px) {
  .cards-slider {
    padding: 10px 20px;
  }

  .cards-track {
    gap: 16px;
  }

  .card-wrap {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
  }
}

.cards-arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
/* =========================================
   FINAL FIX – VERMIETER / ZAHN / FIRMA CARDS
   ganz unten in landing-pages.css einfügen
========================================= */

.cards-slider {
  overflow: hidden;
  padding: 10px 40px;
}

.cards-track {
  display: flex;
  gap: 18px;
  transition: transform 0.35s ease;
}

.card-wrap {
  flex: 0 0 calc((100% - 36px) / 3) !important;
  max-width: calc((100% - 36px) / 3) !important;
  min-width: calc((100% - 36px) / 3) !important;
  box-sizing: border-box;
}

@media (max-width: 1199.98px) {
  .card-wrap {
    flex: 0 0 calc((100% - 18px) / 2) !important;
    max-width: calc((100% - 18px) / 2) !important;
    min-width: calc((100% - 18px) / 2) !important;
  }
}

@media (max-width: 767.98px) {
  .cards-slider {
    padding: 10px 20px;
  }

  .card-wrap {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
  }
}

.rs-card-link,
.rs-card {
  width: 100%;
}

.cards-arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
.cards-slider {
  overflow: hidden;
  padding: 0;
}

.cards-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.card-wrap {
  flex: 0 0 calc((100% - 40px) / 3) !important;
  max-width: calc((100% - 40px) / 3) !important;
  min-width: calc((100% - 40px) / 3) !important;
  box-sizing: border-box;
}

.rs-card-link,
.rs-card {
  width: 100%;
}

@media (max-width: 1199.98px) {
  .card-wrap {
    flex: 0 0 calc((100% - 20px) / 2) !important;
    max-width: calc((100% - 20px) / 2) !important;
    min-width: calc((100% - 20px) / 2) !important;
  }
}

@media (max-width: 767.98px) {
  .cards-track {
    gap: 16px;
  }

  .card-wrap {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
  }
}

.cards-arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
/* =========================================================
   SERVICE APPLE SLIDER
   Einheitlicher Slider für Vermieter / Zahn / Firma / Verkehr
========================================================= */

.service-apple-section {
  position: relative;
}

.service-apple-head {
  max-width: 880px;
  margin-left: auto;
}

.service-apple-head-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.service-apple-head h2 {
  margin: 0;
  font-size: clamp(2rem, 2.5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #101828;
  max-width: 12ch;
}

.service-apple-head p {
  margin: 0;
  color: #667085;
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 760px;
}

.service-apple-head-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b5ccc;
  font-weight: 700;
  text-decoration: none;
}

.service-apple-slider-wrap {
  position: relative;
}

.service-apple-slider {
  overflow: hidden;
}

.service-apple-track {
  display: flex;
  gap: 1.35rem;
  transition: transform 0.55s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.service-apple-card {
  position: relative;
  flex: 0 0 calc((100% - 2.7rem) / 3);
  min-width: calc((100% - 2.7rem) / 3);
  max-width: calc((100% - 2.7rem) / 3);
  min-height: 390px;
  border-radius: 34px;
  padding: 1.45rem 1.45rem 1.35rem;
  background:
    radial-gradient(circle at top right, rgba(92, 132, 255, 0.10), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid rgba(18, 31, 76, 0.06);
  box-shadow:
    0 22px 55px rgba(15, 23, 42, 0.06),
    0 10px 20px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.service-apple-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 34px 70px rgba(15, 23, 42, 0.10),
    0 10px 20px rgba(15, 23, 42, 0.04);
  border-color: rgba(59, 92, 204, 0.14);
}

.service-apple-card-accent {
  background:
    radial-gradient(circle at top right, rgba(92, 132, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #fdfefe 0%, #f2f7ff 100%);
}

.service-apple-card-content {
  max-width: 92%;
}

.service-apple-card-topic {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.05);
  color: #1d2433;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.service-apple-card h3 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.4rem, 1.2vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #101828;
}

.service-apple-card p {
  margin: 0;
  color: #667085;
  font-size: 1.04rem;
  line-height: 1.72;
  max-width: 34ch;
}

.service-apple-card-visual {
  margin-top: 2rem;
}

.service-apple-card-icon {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  background: linear-gradient(180deg, #eef3fb 0%, #dde6f7 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.service-apple-card-icon iconify-icon {
  font-size: 2.15rem;
  color: #3b5ccc;
}

.service-apple-card-trigger {
  position: absolute;
  right: 1.25rem;
  bottom: 1.2rem;
  text-decoration: none;
}

.service-apple-card-trigger span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #08123d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(8, 18, 61, 0.20);
  transition: transform 0.24s ease, background 0.24s ease;
}

.service-apple-card:hover .service-apple-card-trigger span {
  transform: translateX(2px);
}

.service-apple-nav {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.service-apple-nav-btn {
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(180deg, #10214d 0%, #19356e 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(16, 33, 77, 0.18);
  transition: transform 0.24s ease, opacity 0.24s ease, background 0.24s ease;
}

.service-apple-nav-btn:hover:not(:disabled) {
  transform: translateY(-2px);
}

.service-apple-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.service-apple-nav-btn iconify-icon {
  font-size: 1.35rem;
}

@media (max-width: 1199.98px) {
  .service-apple-card {
    flex: 0 0 calc((100% - 1.35rem) / 2);
    min-width: calc((100% - 1.35rem) / 2);
    max-width: calc((100% - 1.35rem) / 2);
  }

  .service-apple-head-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .service-apple-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 360px;
    padding: 1.2rem 1.1rem 1.2rem;
    border-radius: 28px;
  }

  .service-apple-track {
    gap: 1rem;
  }

  .service-apple-head h2 {
    max-width: 100%;
  }

  .service-apple-card h3 {
    font-size: 2rem;
  }

  .service-apple-card p {
    font-size: 1rem;
  }

  .service-apple-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }
}
/* =========================================
   SERVICE APPLE CARD HOVER UPGRADE
========================================= */

.service-apple-card {
  position: relative;
  overflow: hidden;
}

/* Gradient Border Layer */
.service-apple-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, #3b5ccc, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;

  /* Mask Trick */
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

/* Glow */
.service-apple-card:hover {
  box-shadow:
    0 0 0 1px rgba(59, 92, 204, 0.25),
    0 20px 60px rgba(59, 92, 204, 0.18),
    0 10px 25px rgba(15, 23, 42, 0.06);
}

.service-apple-card:hover::before {
  opacity: 1;
}
/* =========================================
   SERVICE APPLE CARD – LEVEL 2 PREMIUM
========================================= */

.service-apple-card {
  transform: translateY(0);
  transition:
    transform 0.38s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.38s cubic-bezier(.22,.61,.36,1),
    border-color 0.38s ease,
    background 0.38s ease;
}

.service-apple-card::after {
  content: "";
  position: absolute;
  inset: auto auto -80px -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 92, 204, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.38s ease, transform 0.45s ease;
  transform: scale(0.8);
  pointer-events: none;
}

.service-apple-card:hover {
  transform: translateY(-10px) scale(1.01);
}

.service-apple-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.service-apple-card-content {
  transition: transform 0.35s ease;
}

.service-apple-card:hover .service-apple-card-content {
  transform: translateY(-2px);
}

.service-apple-card-topic {
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.service-apple-card:hover .service-apple-card-topic {
  background: rgba(59, 92, 204, 0.10);
  color: #2e4fb8;
  transform: translateY(-1px);
}

.service-apple-card h3,
.service-apple-card p {
  transition: color 0.3s ease, opacity 0.3s ease;
}

.service-apple-card:hover h3 {
  color: #0f1d4d;
}

.service-apple-card:hover p {
  color: #55637a;
}

.service-apple-card-visual {
  transition: transform 0.35s ease;
}

.service-apple-card:hover .service-apple-card-visual {
  transform: translateY(-4px);
}

.service-apple-card-icon {
  position: relative;
  transition:
    transform 0.35s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.service-apple-card-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.75), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.service-apple-card:hover .service-apple-card-icon {
  transform: translateY(-4px) scale(1.04);
  background: linear-gradient(180deg, #edf3ff 0%, #dce8ff 100%);
  box-shadow:
    0 16px 30px rgba(59, 92, 204, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.85);
}

.service-apple-card-icon iconify-icon {
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-apple-card:hover .service-apple-card-icon iconify-icon {
  transform: scale(1.06);
  color: #3152be;
}

.service-apple-card-trigger span {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.service-apple-card:hover .service-apple-card-trigger span {
  transform: translateX(3px) translateY(-2px) scale(1.04);
  background: linear-gradient(180deg, #0c1d52 0%, #21428b 100%);
  box-shadow: 0 14px 28px rgba(16, 33, 77, 0.28);
}

.service-apple-card-trigger iconify-icon {
  transition: transform 0.25s ease;
}

.service-apple-card:hover .service-apple-card-trigger iconify-icon {
  transform: translateX(1px);
}

@media (max-width: 767.98px) {
  .service-apple-card:hover {
    transform: translateY(-6px);
  }

  .service-apple-card:hover .service-apple-card-icon {
    transform: translateY(-2px) scale(1.02);
  }
}
.service-apple-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.service-apple-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-apple-card:hover {
  border: 1px solid rgba(255, 140, 0, 0.8);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.15);
}
/* =========================================
   FINAL FIX – SERVICE APPLE NAV BUTTONS ONLY
   nur für die neuen Cards
========================================= */

.service-apple-nav-btn,
.service-apple-nav-btn:hover,
.service-apple-nav-btn:focus,
.service-apple-nav-btn:active {
  background: linear-gradient(180deg, #10214d 0%, #19356e 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 14px 30px rgba(16, 33, 77, 0.18) !important;
  outline: none !important;
}

.service-apple-nav-btn iconify-icon,
.service-apple-nav-btn:hover iconify-icon,
.service-apple-nav-btn:focus iconify-icon,
.service-apple-nav-btn:active iconify-icon {
  color: #ffffff !important;
}

.service-apple-nav-btn:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.03);
}

.service-apple-nav-btn:disabled,
.service-apple-nav-btn[disabled] {
  background: linear-gradient(180deg, #10214d 0%, #19356e 100%) !important;
  color: #ffffff !important;
  opacity: 0.35 !important;
  pointer-events: none !important;
  box-shadow: 0 14px 30px rgba(16, 33, 77, 0.18) !important;
}

.service-apple-nav-btn:disabled iconify-icon,
.service-apple-nav-btn[disabled] iconify-icon {
  color: #ffffff !important;
  opacity: 1 !important;
}
/* =========================================
   SERVICE APPLE – ORANGE HOVER OUTLINE CLEAN
========================================= */

.service-apple-card {
  position: relative;
  z-index: 1;
}

/* Outline Layer */
.service-apple-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  pointer-events: none;

  border: 1.5px solid transparent;

  transition: 
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;

  z-index: 2;
}

/* Hover Effekt */
.service-apple-card:hover::after {
  border-color: #ff7a00;
  box-shadow: 
    0 0 0 1px rgba(255, 122, 0, 0.4),
    0 10px 30px rgba(255, 122, 0, 0.15);

  transform: scale(1.01);
}
.service-apple-card:hover {
  transform: translateY(-4px);
}
/* =========================================
   SERVICE APPLE – FINAL CLEAN HOVER
   nur für neue Cards
========================================= */

/* alte experimentelle Layer komplett aus */
.service-apple-card::before,
.service-apple-card::after {
  content: none !important;
}

/* saubere Basis */
.service-apple-card {
  border: 1px solid rgba(18, 31, 76, 0.06) !important;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease !important;
}

/* cleaner Hover nur über Border */
.service-apple-card:hover {
  border-color: rgba(255, 122, 0, 0.85) !important;
  box-shadow:
    0 34px 70px rgba(15, 23, 42, 0.10),
    0 10px 20px rgba(15, 23, 42, 0.04),
    0 0 0 1px rgba(255, 122, 0, 0.18) !important;
}
.service-apple-card-trigger span {
  transition: transform 0.25s ease;
}

.service-apple-card:hover .service-apple-card-trigger span {
  transform: translateX(4px);
}
.service-apple-card:hover {
  transform: translateY(-4px);
}
/* =========================================
   PREMIUM FLOATING HEADER
========================================= */

.main-header {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 9999;
  pointer-events: none;
}

.main-header .container {
  position: relative;
}

.main-header-shell {
  pointer-events: auto;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 10px;
}

.main-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0 1.25rem;
  border-radius: 999px;
background: rgba(18, 24, 38, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

/* BRAND */
.header-brand {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* DESKTOP NAV */
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.header-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  transition: color 0.28s ease;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #ff7a00;
  transition: width 0.28s ease;
}

.header-nav a:hover {
  color: #ffffff;
}

.header-nav a:hover::after {
  width: 100%;
}

/* RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* PHONE */
.header-phone {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

/* CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #ff8c1a 0%, #ff7a00 100%);
  box-shadow: 0 12px 28px rgba(255, 122, 0, 0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  color: #ffffff;
  background: linear-gradient(135deg, #ff972e 0%, #ff7a00 100%);
  box-shadow: 0 16px 34px rgba(255, 122, 0, 0.34);
}

/* MENU BUTTON */
.header-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 96px;
  left: 16px;
  right: 16px;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-inner {
  padding: 1.25rem;
  border-radius: 28px;
  background: rgba(18, 24, 38, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-inner a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.mobile-contact {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
  .header-nav {
    gap: 1.2rem;
  }

  .header-nav a {
    font-size: 0.92rem;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .main-header {
    top: 14px;
  }

  .main-header-inner {
    min-height: 64px;
    padding: 0 1rem;
  }

  .header-nav,
  .header-cta {
    display: none;
  }

  .header-menu-btn {
    display: inline-flex;
  }

  .header-brand {
    font-size: 1.08rem;
  }
}
.main-header-inner {
  background: rgba(18, 24, 38, 0.38);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.main-header.scrolled .main-header-inner {
  background: rgba(18, 24, 38, 0.75);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.06);

  transform: scale(0.98);
}
.main-header.scrolled .header-cta {
  transform: scale(0.95);
}
.main-header.scrolled .main-header-inner {
  background: rgba(18, 24, 38, 0.75);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: scale(0.98);
}
/* =========================================
   MOBILE HEADER REFINEMENT
========================================= */

@media (max-width: 991.98px) {
  .main-header {
    top: 10px;
  }

  .main-header-shell {
    padding: 0 6px;
  }

  .main-header-inner {
    min-height: 58px;
    padding: 0 0.85rem;
    border-radius: 22px;
    background: rgba(18, 24, 38, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }

  .header-brand {
    font-size: 0.98rem;
    line-height: 1;
    color: #fff;
  }

  .header-menu-btn {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.15rem;
    box-shadow: none;
  }

  .mobile-menu {
    top: 78px;
    left: 12px;
    right: 12px;
  }

  .mobile-menu-inner {
    padding: 1rem;
    border-radius: 24px;
    background: rgba(18, 24, 38, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    gap: 0.45rem;
  }

  .mobile-menu-inner a {
    display: block;
    padding: 0.88rem 0.95rem;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
  }

  .mobile-menu-inner a:hover,
  .mobile-menu-inner a:active {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(2px);
  }

  .mobile-contact {
    margin-top: 0.7rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    gap: 0.55rem;
  }

  .mobile-contact a {
    background: transparent;
    padding: 0.35rem 0;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
  }

  .main-header.scrolled .main-header-inner {
  background: rgba(33, 39, 54, 0.22);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    transform: none;
  }
}
/* =========================================
   FINAL MODERN BURGER HEADER
========================================= */

.main-header {
  position: fixed;
  top: 14px;
  left: 0;
  width: 100%;
  z-index: 9998;
  pointer-events: none;
}

.main-header .container {
  position: relative;
}

.main-header-shell {
  pointer-events: auto;
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 10px;
}

.main-header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem 0 1.2rem;
  border-radius: 999px;

  background: rgba(17, 24, 39, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.10);

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    min-height 0.28s ease,
    transform 0.28s ease;
}

.header-brand {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.header-brand:hover {
  color: #ffffff;
  opacity: 0.92;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.header-cta {
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #ff922e 0%, #ff7a00 100%);
  box-shadow: 0 10px 22px rgba(255, 122, 0, 0.22);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.header-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ffa144 0%, #ff7a00 100%);
  box-shadow: 0 14px 28px rgba(255, 122, 0, 0.28);
}

.header-menu-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.header-menu-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.header-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.28s ease, opacity 0.28s ease, width 0.28s ease;
}

.header-menu-btn.is-active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.header-menu-btn.is-active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* PANEL BACKDROP */
.header-panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, 0.24);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 9996;
}

.header-panel-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

/* SIDE PANEL */
.header-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(440px, 92vw);
  height: 100vh;
  z-index: 9997;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.22,.61,.36,1);
}

.header-panel.is-active {
  transform: translateX(0);
}

.header-panel-inner {
  height: 100%;
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;

  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.74) 0%, rgba(17, 24, 39, 0.82) 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.20);

  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.header-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-panel-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.header-panel-close {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.header-panel-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.header-panel-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.header-panel-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header-panel-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.header-panel-nav a {
  background: transparent !important;
  border: none !important;
  padding: 0.95rem 0.6rem !important;
  border-radius: 12px !important;
  font-size: 1.05rem !important;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.85);
  transition: all 0.25s ease;
}

/* Hover = Luxus */
.header-panel-nav a:hover {
  background: rgba(255,255,255,0.05) !important;
  transform: translateX(6px);
  color: #fff;
}

/* Aktiver Link */
.header-panel-nav a.is-current {
  color: #fff;
  background: rgba(255,255,255,0.08) !important;
}

.header-panel-contact {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.header-panel-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
}

.header-panel-contact a:hover {
  color: #ffffff;
}

.header-panel-cta {
  margin-top: 0.35rem;
  min-height: 46px;
  padding: 0 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff !important;
  background: linear-gradient(135deg, #ff922e 0%, #ff7a00 100%);
  box-shadow: 0 10px 22px rgba(255, 122, 0, 0.22);
}

/* SCROLLED */
.main-header.scrolled .main-header-inner {
  min-height: 60px;
  background: rgba(17, 24, 39, 0.30);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

/* MOBILE */
@media (max-width: 767.98px) {
  .main-header {
    top: 10px;
  }

  .main-header-shell {
    padding: 0 6px;
  }

  .main-header-inner {
    min-height: 58px;
    padding: 0 0.8rem 0 0.95rem;
    border-radius: 20px;
  }

  .header-brand {
    font-size: 0.95rem;
  }

  .header-cta {
    display: none !important;
  }

  .header-panel {
    width: 100vw;
  }

  .header-panel-inner {
    padding: 20px 16px 22px;
  }

  .header-panel-nav a {
    font-size: 1rem;
    padding: 0.9rem 0.95rem;
  }
}
/* =========================================
   HEADER PANEL – PREMIUM UPGRADE
========================================= */

/* Top header schlanker und edler */
.main-header-inner {
  min-height: 62px !important;
  padding: 0 0.9rem 0 1rem !important;
  background: rgba(14, 20, 34, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(28px) !important;
  -webkit-backdrop-filter: blur(28px) !important;
}

.header-brand {
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

.header-cta {
  min-height: 40px !important;
  padding: 0 0.95rem !important;
  font-size: 0.9rem !important;
  box-shadow: 0 12px 28px rgba(255, 122, 0, 0.22) !important;
}

.header-menu-btn {
  width: 42px !important;
  height: 42px !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Hintergrund hinter offenem Menü */
.header-panel-backdrop {
  background:
    radial-gradient(circle at 80% 20%, rgba(39, 90, 255, 0.10), transparent 30%),
    rgba(6, 10, 18, 0.42) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

/* Side panel moderner */
.header-panel {
  width: min(430px, 92vw) !important;
}

.header-panel-inner {
  background:
    linear-gradient(180deg, rgba(10, 16, 28, 0.66) 0%, rgba(8, 13, 24, 0.82) 100%) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    -24px 0 70px rgba(0, 0, 0, 0.24),
    inset 1px 0 0 rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(34px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(34px) saturate(120%) !important;
  position: relative;
  overflow: hidden;
}

.header-panel-inner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.16), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.header-panel-inner::after {
  content: "";
  position: absolute;
  bottom: 80px;
  left: -70px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(70, 120, 255, 0.12), transparent 70%);
  filter: blur(22px);
  pointer-events: none;
}

/* Kicker oben dezenter */
.header-panel-kicker {
  font-size: 0.72rem !important;
  letter-spacing: 0.14em !important;
  color: rgba(255, 255, 255, 0.48) !important;
}

/* Close Button edler */
.header-panel-close {
  width: 40px !important;
  height: 40px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Links weniger Button, mehr Premium-Menü */
.header-panel-nav {
  gap: 0.45rem !important;
  position: relative;
  z-index: 2;
}

.header-panel-nav a {
  padding: 1rem 1rem !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.025) !important;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.header-panel-nav a:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  transform: translateX(6px) !important;
}

/* Kontaktbereich ruhiger */
.header-panel-contact {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 1.1rem !important;
}

.header-panel-contact a {
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 0.92rem !important;
}

.header-panel-contact a:hover {
  color: #ffffff !important;
}

/* CTA unten noch hochwertiger */
.header-panel-cta {
  min-height: 48px !important;
  border-radius: 18px !important;
  font-size: 0.94rem !important;
  box-shadow:
    0 14px 30px rgba(255, 122, 0, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.14) !important;
}

/* Mobil noch cleaner */
@media (max-width: 767.98px) {
  .main-header-inner {
    min-height: 56px !important;
    border-radius: 18px !important;
  }

  .header-panel-inner {
    padding: 18px 14px 20px !important;
  }

  .header-panel-nav a {
    font-size: 0.98rem !important;
    padding: 0.9rem 0.95rem !important;
  }
}
/* =========================================
   HEADER PANEL – LEVEL 3 PREMIUM
========================================= */

/* weichere Gesamtbewegung */
.header-panel {
  transition: transform 0.42s cubic-bezier(.22,.61,.36,1) !important;
}

.header-panel-backdrop {
  transition: opacity 0.34s ease, visibility 0.34s ease !important;
}

/* Burger noch cleaner */
.header-menu-btn {
  position: relative;
  overflow: hidden;
}

.header-menu-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.header-menu-btn:hover::before {
  opacity: 1;
}

.header-menu-btn span {
  width: 18px !important;
  transform-origin: center;
}

.header-menu-btn.is-active span:first-child {
  transform: translateY(4px) rotate(45deg) !important;
}

.header-menu-btn.is-active span:last-child {
  transform: translateY(-4px) rotate(-45deg) !important;
}

/* Panel noch edler */
.header-panel-inner {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

/* Link-Liste mit stagger-ready animation */
.header-panel-nav a {
  opacity: 0;
  transform: translateX(18px);
  will-change: transform, opacity;
}

.header-panel.is-active .header-panel-nav a {
  animation: headerPanelLinkIn 0.48s cubic-bezier(.22,1,.36,1) forwards;
}

.header-panel.is-active .header-panel-nav a:nth-child(1) { animation-delay: 0.05s; }
.header-panel.is-active .header-panel-nav a:nth-child(2) { animation-delay: 0.09s; }
.header-panel.is-active .header-panel-nav a:nth-child(3) { animation-delay: 0.13s; }
.header-panel.is-active .header-panel-nav a:nth-child(4) { animation-delay: 0.17s; }
.header-panel.is-active .header-panel-nav a:nth-child(5) { animation-delay: 0.21s; }
.header-panel.is-active .header-panel-nav a:nth-child(6) { animation-delay: 0.25s; }
.header-panel.is-active .header-panel-nav a:nth-child(7) { animation-delay: 0.29s; }
.header-panel.is-active .header-panel-nav a:nth-child(8) { animation-delay: 0.33s; }
.header-panel.is-active .header-panel-nav a:nth-child(9) { animation-delay: 0.37s; }
.header-panel.is-active .header-panel-nav a:nth-child(10) { animation-delay: 0.41s; }

@keyframes headerPanelLinkIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Link-Look noch hochwertiger */
.header-panel-nav a {
  position: relative;
  overflow: hidden;
}

.header-panel-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06), transparent 55%);
  opacity: 0;
  transition: opacity 0.26s ease;
  pointer-events: none;
}

.header-panel-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb15f, #ff7a00);
  transform: translateY(-50%);
  transition: width 0.26s ease;
  pointer-events: none;
}

.header-panel-nav a:hover::before {
  opacity: 1;
}

.header-panel-nav a:hover::after {
  width: 18px;
}

.header-panel-nav a:hover {
  padding-left: 1.45rem !important;
}

/* aktive Seite optional per Klasse */
.header-panel-nav a.is-current {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
  color: #ffffff !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 8px 20px rgba(0,0,0,0.08);
}

.header-panel-nav a.is-current::after {
  width: 18px;
}

/* Kontaktbereich sanfter erscheinen */
.header-panel-contact {
  opacity: 0;
  transform: translateY(12px);
}

.header-panel.is-active .header-panel-contact {
  animation: headerPanelContactIn 0.48s cubic-bezier(.22,1,.36,1) 0.34s forwards;
}

@keyframes headerPanelContactIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA unten stärker */
.header-panel-cta {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease !important;
}

.header-panel-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 34px rgba(255, 122, 0, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.14) !important;
}

/* Backdrop etwas cineastischer */
.header-panel-backdrop.is-active {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 122, 0, 0.08), transparent 24%),
    radial-gradient(circle at 78% 72%, rgba(60, 110, 255, 0.10), transparent 28%),
    rgba(5, 10, 18, 0.48) !important;
}

/* Mobile etwas ruhiger */
@media (max-width: 767.98px) {
  .header-panel-inner {
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
  }

  .header-panel-nav a:hover {
    padding-left: 1.2rem !important;
  }

  .header-panel-nav a::after {
    left: 12px;
  }
}
/* =========================================
   FINAL HEADER – CLEAN MODERN PANEL
========================================= */

.main-header {
  position: fixed;
  top: 16px;
  left: 0;
  width: 100%;
  z-index: 9998;
  pointer-events: none;
}

.main-header .container {
  position: relative;
}

.main-header-shell {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 12px;
  pointer-events: auto;
}

.main-header-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.9rem 0 1rem;
  border-radius: 999px;
  background: rgba(12, 18, 28, 0.22);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 16px 38px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  transition: all 0.28s ease;
}

body.menu-open .main-header-inner {
  background: rgba(10, 16, 24, 0.38);
  border-color: rgba(255,255,255,0.08);
}

.main-header.scrolled .main-header-inner {
  min-height: 58px;
  background: rgba(12, 18, 28, 0.30);
}

.header-brand {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.header-brand:hover {
  color: #fff;
  opacity: 0.9;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.header-cta {
  min-height: 40px;
  padding: 0 0.95rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff9738 0%, #ff7a00 100%);
  box-shadow: 0 12px 24px rgba(255,122,0,0.24);
  transition: all 0.22s ease;
}

.header-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(255,122,0,0.30);
}

.header-menu-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  transition: all 0.22s ease;
}

.header-menu-btn:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-1px);
}

.header-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.28s ease;
}

.header-menu-btn.is-active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.header-menu-btn.is-active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.header-panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9996;
  opacity: 0;
  visibility: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,122,0,0.07), transparent 24%),
    radial-gradient(circle at 76% 74%, rgba(72,120,255,0.08), transparent 26%),
    rgba(5, 10, 18, 0.46);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.header-panel-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.header-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(410px, 92vw);
  height: 100vh;
  z-index: 9997;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.22,.61,.36,1);
}

.header-panel.is-active {
  transform: translateX(0);
}

.header-panel-inner {
  position: relative;
  height: 100%;
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background:
    linear-gradient(180deg, rgba(10,16,28,0.72) 0%, rgba(7,12,22,0.84) 100%);
  border-left: 1px solid rgba(255,255,255,0.07);
  box-shadow: -30px 0 80px rgba(0,0,0,0.30);
  backdrop-filter: blur(30px) saturate(125%);
  -webkit-backdrop-filter: blur(30px) saturate(125%);
}

.header-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.header-panel-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.46);
}

.header-panel-close {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}

.header-panel-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.header-panel-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.header-panel-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header-panel-nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.header-panel-nav a {
  display: block;
  padding: 0.9rem 0.45rem;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255,255,255,0.90);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: transparent;
  border: none;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    padding-left 0.22s ease;
  opacity: 0;
  transform: translateX(18px);
}

.header-panel.is-active .header-panel-nav a {
  animation: headerPanelLinkIn 0.44s cubic-bezier(.22,1,.36,1) forwards;
}

.header-panel.is-active .header-panel-nav a:nth-child(1) { animation-delay: 0.04s; }
.header-panel.is-active .header-panel-nav a:nth-child(2) { animation-delay: 0.08s; }
.header-panel.is-active .header-panel-nav a:nth-child(3) { animation-delay: 0.12s; }
.header-panel.is-active .header-panel-nav a:nth-child(4) { animation-delay: 0.16s; }
.header-panel.is-active .header-panel-nav a:nth-child(5) { animation-delay: 0.20s; }
.header-panel.is-active .header-panel-nav a:nth-child(6) { animation-delay: 0.24s; }
.header-panel.is-active .header-panel-nav a:nth-child(7) { animation-delay: 0.28s; }
.header-panel.is-active .header-panel-nav a:nth-child(8) { animation-delay: 0.32s; }
.header-panel.is-active .header-panel-nav a:nth-child(9) { animation-delay: 0.36s; }
.header-panel.is-active .header-panel-nav a:nth-child(10) { animation-delay: 0.40s; }

@keyframes headerPanelLinkIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.header-panel-nav a:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
  transform: translateX(4px);
  padding-left: 0.8rem;
}

.header-panel-nav a.is-current {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.header-panel-contact {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  z-index: 2;
}

.header-panel-contact a {
  color: rgba(255,255,255,0.76);
  text-decoration: none;
  font-size: 0.93rem;
  line-height: 1.5;
}

.header-panel-contact a:hover {
  color: #fff;
}

.header-panel-cta {
  margin-top: 0.35rem;
  min-height: 46px;
  padding: 0 1rem;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  font-size: 0.94rem;
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(135deg, #ff9738 0%, #ff7a00 100%);
  box-shadow: 0 14px 30px rgba(255,122,0,0.24);
}

@media (max-width: 767.98px) {
  .main-header {
    top: 10px;
  }

  .main-header-shell {
    padding: 0 6px;
  }

  .main-header-inner {
    min-height: 56px;
    padding: 0 0.8rem 0 0.95rem;
    border-radius: 20px;
  }

  .header-brand {
    font-size: 0.94rem;
  }

  .header-cta {
    display: none !important;
  }

  .header-panel {
    width: 100vw;
  }

  .header-panel-inner {
    padding: 18px 14px 20px;
  }

  .header-panel-nav a {
    font-size: 0.98rem;
    padding: 0.86rem 0.5rem;
  }

  .header-panel-nav a:hover {
    padding-left: 0.7rem;
  }
}
/* Scoped nur für Privatrechtsschutz Abschnitt 01 */

/* =========================================================
   GLOBAL SEO INLINE COMPONENT
   Für Privat / Firma / Verkehr / Vermieter / Zahn
   Scoped nur innerhalb von #leistungen
========================================================= */

#leistungen :is(
  .seo-inline-block,
  .privat-seo-inline-block,
  .firma-seo-inline-block,
  .verkehr-seo-inline-block,
  .vermieter-seo-inline-block,
  .zahn-seo-inline-block
) {
  max-width: 860px;
  margin-top: 18px;
  padding: 24px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#leistungen :is(
  .seo-inline-block,
  .privat-seo-inline-block,
  .firma-seo-inline-block,
  .verkehr-seo-inline-block,
  .vermieter-seo-inline-block,
  .zahn-seo-inline-block
):hover {
  transform: translateY(-3px);
}

#leistungen :is(
  .seo-inline-head,
  .privat-seo-inline-head,
  .firma-seo-inline-head,
  .verkehr-seo-inline-head,
  .vermieter-seo-inline-head,
  .zahn-seo-inline-head
) {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

#leistungen :is(
  .seo-inline-kicker,
  .privat-seo-inline-kicker,
  .firma-seo-inline-kicker,
  .verkehr-seo-inline-kicker,
  .vermieter-seo-inline-kicker,
  .zahn-seo-inline-kicker
) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}

#leistungen :is(
  .seo-inline-kicker,
  .privat-seo-inline-kicker,
  .firma-seo-inline-kicker,
  .verkehr-seo-inline-kicker,
  .vermieter-seo-inline-kicker,
  .zahn-seo-inline-kicker
) iconify-icon {
  font-size: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}

#leistungen :is(
  .seo-inline-block,
  .privat-seo-inline-block,
  .firma-seo-inline-block,
  .verkehr-seo-inline-block,
  .vermieter-seo-inline-block,
  .zahn-seo-inline-block
) p {
  margin-bottom: 14px;
  font-size: 1.02rem;
  line-height: 1.72;
  color: rgba(17, 24, 39, 0.78);
}

#leistungen :is(
  .seo-inline-block,
  .privat-seo-inline-block,
  .firma-seo-inline-block,
  .verkehr-seo-inline-block,
  .vermieter-seo-inline-block,
  .zahn-seo-inline-block
) p:last-child {
  margin-bottom: 0;
}

#leistungen :is(
  .seo-inline-block,
  .privat-seo-inline-block,
  .firma-seo-inline-block,
  .verkehr-seo-inline-block,
  .vermieter-seo-inline-block,
  .zahn-seo-inline-block
) strong {
  font-weight: 700;
  color: inherit;
}

#leistungen :is(
  .seo-inline-block,
  .privat-seo-inline-block,
  .firma-seo-inline-block,
  .verkehr-seo-inline-block,
  .vermieter-seo-inline-block,
  .zahn-seo-inline-block
) a {
  font-weight: 600;
  text-decoration: none;
}

#leistungen :is(
  .seo-inline-block,
  .privat-seo-inline-block,
  .firma-seo-inline-block,
  .verkehr-seo-inline-block,
  .vermieter-seo-inline-block,
  .zahn-seo-inline-block
) a:hover,
#leistungen :is(
  .seo-inline-block,
  .privat-seo-inline-block,
  .firma-seo-inline-block,
  .verkehr-seo-inline-block,
  .vermieter-seo-inline-block,
  .zahn-seo-inline-block
) a:focus {
  text-decoration: underline;
}

#leistungen :is(
  .seo-inline-links,
  .privat-seo-inline-links,
  .firma-seo-inline-links,
  .verkehr-seo-inline-links,
  .vermieter-seo-inline-links,
  .zahn-seo-inline-links
) {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(0, 103, 166, 0.08), rgba(0, 103, 166, 0.03));
  border: 1px solid rgba(0, 103, 166, 0.15);
  font-size: 0.95rem;
}

#leistungen :is(
  .seo-inline-links,
  .privat-seo-inline-links,
  .firma-seo-inline-links,
  .verkehr-seo-inline-links,
  .vermieter-seo-inline-links,
  .zahn-seo-inline-links
) span {
  font-weight: 600;
  color: rgba(17, 24, 39, 0.72);
}

#leistungen :is(
  .seo-inline-links,
  .privat-seo-inline-links,
  .firma-seo-inline-links,
  .verkehr-seo-inline-links,
  .vermieter-seo-inline-links,
  .zahn-seo-inline-links
) a {
  font-weight: 700;
  color: var(--color-primary);
}

@media (max-width: 991.98px) {
  #leistungen :is(
    .seo-inline-block,
    .privat-seo-inline-block,
    .firma-seo-inline-block,
    .verkehr-seo-inline-block,
    .vermieter-seo-inline-block,
    .zahn-seo-inline-block
  ) {
    margin-top: 16px;
    padding: 20px 20px;
    border-radius: 18px;
  }

  #leistungen :is(
    .seo-inline-block,
    .privat-seo-inline-block,
    .firma-seo-inline-block,
    .verkehr-seo-inline-block,
    .vermieter-seo-inline-block,
    .zahn-seo-inline-block
  ) p {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  #leistungen :is(
    .seo-inline-links,
    .privat-seo-inline-links,
    .firma-seo-inline-links,
    .verkehr-seo-inline-links,
    .vermieter-seo-inline-links,
    .zahn-seo-inline-links
  ) {
    gap: 8px 14px;
  }
}

@media (max-width: 575.98px) {
  #leistungen :is(
    .seo-inline-block,
    .privat-seo-inline-block,
    .firma-seo-inline-block,
    .verkehr-seo-inline-block,
    .vermieter-seo-inline-block,
    .zahn-seo-inline-block
  ) {
    padding: 16px 15px;
    border-radius: 16px;
  }

  #leistungen :is(
    .seo-inline-kicker,
    .privat-seo-inline-kicker,
    .firma-seo-inline-kicker,
    .verkehr-seo-inline-kicker,
    .vermieter-seo-inline-kicker,
    .zahn-seo-inline-kicker
  ) {
    font-size: 0.76rem;
    margin-bottom: 8px;
  }

  #leistungen :is(
    .seo-inline-block,
    .privat-seo-inline-block,
    .firma-seo-inline-block,
    .verkehr-seo-inline-block,
    .vermieter-seo-inline-block,
    .zahn-seo-inline-block
  ) p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  #leistungen :is(
    .seo-inline-links,
    .privat-seo-inline-links,
    .firma-seo-inline-links,
    .verkehr-seo-inline-links,
    .vermieter-seo-inline-links,
    .zahn-seo-inline-links
  ) {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}
/* FIX: Headline + CTA sauber umbrechen */
.service-apple-head-top {
  display: flex;
  flex-wrap: wrap; /* 🔥 wichtig */
  align-items: flex-start;
  gap: 12px;
}

/* Headline bekommt volle Breite */
.service-apple-head-top h1,
.service-apple-head-top h2 {
  flex: 1 1 100%;
  max-width: 100%;
}

/* CTA Button sauber darunter */
.service-apple-head-link {
  flex: 0 0 auto;
  margin-top: 8px;
}
/* =========================================================
   FIX: Service Headline + CTA sauber untereinander
   Verhindert Überlagerungen bei langen Headlines
========================================================= */

.service-apple-head-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.service-apple-head-top h1,
.service-apple-head-top h2,
.service-apple-head-top h3 {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
  word-break: break-word;
}

.service-apple-head-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}

/* optional etwas mehr Luft bei sehr großen Headlines */
@media (max-width: 991.98px) {
  .service-apple-head-top {
    gap: 10px;
  }
}

@media (max-width: 575.98px) {
  .service-apple-head-top {
    gap: 8px;
  }

  .service-apple-head-link {
    margin-top: 0;
  }
}
/* =========================
   PREMIUM GLASS SEO BLOCK
   ========================= */

.premium-seo-block {
  position: relative;
  padding: 32px;
  border-radius: 22px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.85),
    rgba(248,250,252,0.75)
  );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.6);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.5);

  margin-top: 20px;
}

/* Header */
.premium-seo-head {
  margin-bottom: 18px;
}

/* Kicker (🔥 Premium Grün) */
.premium-seo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;

  padding: 6px 14px;
  border-radius: 999px;

  background: linear-gradient(135deg, #00a86b, #34d399);
  color: #fff;
}

.premium-seo-kicker iconify-icon {
  font-size: 16px;
}

/* Content */
.premium-seo-content p {
  margin-bottom: 12px;
  color: var(--color-text);
}

/* Lead */
.premium-seo-lead {
  font-size: 17px;
  line-height: 1.6;
}

/* Links Block */
.premium-seo-links {
  margin: 18px 0;
  padding: 14px 16px;

  border-radius: 14px;
  background: rgba(0,0,0,0.03);

  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Links Titel */
.premium-seo-links span {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}

/* Link Liste */
.premium-seo-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Links */
.premium-seo-link-list a {
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
}

/* Hover Effekt */
.premium-seo-link-list a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-primary);
  transition: 0.3s;
}

.premium-seo-link-list a:hover::after {
  width: 100%;
}

/* Footer */
.premium-seo-footer {
  margin-top: 8px;
  color: var(--color-text);
}
body.page-privat .premium-seo-kicker {
  background: linear-gradient(135deg, #0067a6, #1585c9);
}

body.page-privat .premium-seo-link-list a {
  color: #0067a6;
}

body.page-privat .premium-seo-link-list a::after {
  background: #0067a6;
}
body.page-firma .premium-seo-kicker {
  background: linear-gradient(135deg, #18354a, #2c6aa0);
}

body.page-firma .premium-seo-link-list a {
  color: #18354a;
}

body.page-firma .premium-seo-link-list a::after {
  background: #18354a;
}
body.page-verkehr .premium-seo-kicker {
  background: linear-gradient(135deg, #0d6efd, #4da3ff);
}

body.page-verkehr .premium-seo-link-list a {
  color: #0d6efd;
}

body.page-verkehr .premium-seo-link-list a::after {
  background: #0d6efd;
}
body.page-vermieter .premium-seo-kicker {
  background: linear-gradient(135deg, #8b6b2e, #b6924a);
}

body.page-vermieter .premium-seo-link-list a {
  color: #8b6b2e;
}

body.page-vermieter .premium-seo-link-list a::after {
  background: #8b6b2e;
}
body.page-zahn .premium-seo-kicker {
  background: linear-gradient(135deg, #00a86b, #34d399);
}

body.page-zahn .premium-seo-link-list a {
  color: #00a86b;
}

body.page-zahn .premium-seo-link-list a::after {
  background: #00a86b;
}
/* =========================
   NAV HIGHLIGHT BADGE
========================= */

.nav-highlight {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 999px;

  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #fff;

  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);

  transform: translateY(-1px);
}

/* Hover Effekt */
.nav-highlight:hover .nav-badge {
  transform: translateY(-2px) scale(1.05);
}
/* =========================
   PREMIUM FOOTER
========================= */

.footer-premium .footer-title {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.footer-premium .footer-sub {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.footer-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 16px;
}

.footer-trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Rating kompakter */
.footer-rating-compact {
  padding: 22px;
  border-radius: 16px;
}

.footer-rating-compact .footer-rating-score {
  font-size: 42px;
  line-height: 1;
}

.footer-rating-compact p {
  margin-bottom: 10px;
}

.footer-rating-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #7cc9ff;
  text-decoration: none;
}

.footer-rating-link:hover {
  text-decoration: underline;
}

/* Bottom cleaner */
.footer-bottom-premium {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
/* =========================
   WHATSAPP PANEL FIX
========================= */

/* Hauptbox (Popup) */
.wa-panel {
  width: 320px;
  max-width: calc(100vw - 30px);

  border-radius: 16px;
  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* Header kleiner */
.wa-panel-header {
  padding: 14px 16px;
  font-size: 14px;
}

/* Content kompakter */
.wa-panel-body {
  padding: 14px 16px;
}

/* Text nicht so riesig */
.wa-panel-body p {
  font-size: 13px;
  line-height: 1.5;
}

/* Button innen */
.wa-panel .wa-cta {
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 10px;
}

/* MOBILE (sehr wichtig) */
@media (max-width: 768px) {
  .wa-panel {
    width: 90%;
    right: 5%;
    bottom: 80px; /* Abstand zum Button */
  }
}
/* =========================
   WHATSAPP BUTTON UPGRADE
========================= */

.wa-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.wa-button iconify-icon {
  font-size: 26px;
}

/* Hover */
.wa-button:hover {
  transform: translateY(-3px);
}
/* =========================================================
   WHATSAPP WIDGET – MOBILE / SIZE TUNING
   Nur für das WhatsApp Popup
========================================================= */

/* Popup / Panel */
.wa-panel,
.whatsapp-panel,
.wa-chat-panel {
  width: 360px;
  max-width: calc(100vw - 24px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

/* Grüner Header kompakter */
.wa-panel-header,
.whatsapp-panel-header,
.wa-chat-header {
  padding: 18px 18px 16px;
  min-height: auto;
}

/* Header-Logo/Icon etwas kleiner */
.wa-panel-header .wa-avatar,
.whatsapp-panel-header .wa-avatar,
.wa-chat-header .wa-avatar,
.wa-panel-header .wa-logo,
.whatsapp-panel-header .wa-logo,
.wa-chat-header .wa-logo {
  width: 54px;
  height: 54px;
  border-radius: 18px;
}

/* Titel im Header */
.wa-panel-header h3,
.whatsapp-panel-header h3,
.wa-chat-header h3,
.wa-panel-header .wa-title,
.whatsapp-panel-header .wa-title,
.wa-chat-header .wa-title {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 4px;
}

/* Unterzeile im Header */
.wa-panel-header p,
.whatsapp-panel-header p,
.wa-chat-header p,
.wa-panel-header .wa-subtitle,
.whatsapp-panel-header .wa-subtitle,
.wa-chat-header .wa-subtitle {
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

/* Close Button oben */
.wa-panel-header .wa-close,
.whatsapp-panel-header .wa-close,
.wa-chat-header .wa-close,
#wa-close {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  flex-shrink: 0;
}

/* Body kompakter */
.wa-panel-body,
.whatsapp-panel-body,
.wa-chat-body {
  padding: 18px;
}

/* Begrüßung */
.wa-panel-body h4,
.whatsapp-panel-body h4,
.wa-chat-body h4,
.wa-panel-body .wa-greeting,
.whatsapp-panel-body .wa-greeting,
.wa-chat-body .wa-greeting {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 14px;
}

/* Auswahlkarten / Optionen */
.wa-option,
.whatsapp-option,
.wa-chat-option,
.wa-panel .wa-card,
.whatsapp-panel .wa-card,
.wa-chat-panel .wa-card {
  padding: 18px 18px;
  border-radius: 22px;
  min-height: unset;
}

/* Icon in den Karten */
.wa-option iconify-icon,
.whatsapp-option iconify-icon,
.wa-chat-option iconify-icon,
.wa-panel .wa-card iconify-icon,
.whatsapp-panel .wa-card iconify-icon,
.wa-chat-panel .wa-card iconify-icon {
  font-size: 28px;
  flex-shrink: 0;
}

/* Text in Karten */
.wa-option,
.whatsapp-option,
.wa-chat-option,
.wa-panel .wa-card,
.whatsapp-panel .wa-card,
.wa-chat-panel .wa-card {
  font-size: 17px;
  line-height: 1.45;
}

/* Abstand zwischen Karten */
.wa-options,
.whatsapp-options,
.wa-chat-options {
  gap: 12px;
}

/* Grüner CTA unten */
.wa-cta,
.whatsapp-cta,
.wa-chat-cta,
.wa-panel .wa-button-primary,
.whatsapp-panel .wa-button-primary,
.wa-chat-panel .wa-button-primary {
  min-height: 64px;
  padding: 14px 18px;
  border-radius: 22px;
  font-size: 17px;
  line-height: 1.3;
}

/* Floating Button unten rechts */
.wa-button,
#wa-toggle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.wa-button iconify-icon,
#wa-toggle iconify-icon {
  font-size: 30px;
}

/* Desktop etwas kompakter, aber noch großzügig */
@media (min-width: 769px) {
  .wa-panel,
  .whatsapp-panel,
  .wa-chat-panel {
    width: 400px;
  }
}

/* Mobile deutlich angenehmer */
@media (max-width: 768px) {
  .wa-panel,
  .whatsapp-panel,
  .wa-chat-panel {
    width: min(360px, calc(100vw - 20px));
    border-radius: 22px;
  }

  .wa-panel-header,
  .whatsapp-panel-header,
  .wa-chat-header {
    padding: 16px;
  }

  .wa-panel-body,
  .whatsapp-panel-body,
  .wa-chat-body {
    padding: 16px;
  }

  .wa-option,
  .whatsapp-option,
  .wa-chat-option,
  .wa-panel .wa-card,
  .whatsapp-panel .wa-card,
  .wa-chat-panel .wa-card {
    padding: 16px;
    font-size: 15px;
    line-height: 1.4;
    border-radius: 18px;
  }

  .wa-cta,
  .whatsapp-cta,
  .wa-chat-cta,
  .wa-panel .wa-button-primary,
  .whatsapp-panel .wa-button-primary,
  .wa-chat-panel .wa-button-primary {
    min-height: 58px;
    font-size: 16px;
    border-radius: 18px;
  }

  .wa-button,
  #wa-toggle {
    width: 64px;
    height: 64px;
  }

  .wa-button iconify-icon,
  #wa-toggle iconify-icon {
    font-size: 26px;
  }
}
/* =========================================================
   WHATSAPP PANEL – PREMIUM COMPACT FIX
========================================================= */

/* PANEL */
.wa-panel {
  width: 340px;
  max-width: calc(100vw - 20px);
  border-radius: 20px;
  overflow: hidden;
}

/* HEADER (grün) */
.wa-panel-header {
  padding: 14px 16px;
}

/* Logo kleiner */
.wa-panel-header .wa-avatar,
.wa-panel-header .wa-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

/* Titel */
.wa-panel-header h3 {
  font-size: 16px;
  margin-bottom: 2px;
}

/* Untertitel */
.wa-panel-header p {
  font-size: 12px;
  line-height: 1.3;
}

/* CLOSE BUTTON */
.wa-panel-header .wa-close {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

/* BODY */
.wa-panel-body {
  padding: 14px;
}

/* Hallo Text */
.wa-panel-body h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

/* OPTIONEN */
.wa-option {
  padding: 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.4;
}

/* Icons kleiner */
.wa-option iconify-icon {
  font-size: 22px;
}

/* Abstand */
.wa-options {
  gap: 8px;
}

/* CTA BUTTON */
.wa-cta {
  margin-top: 10px;
  padding: 12px;
  font-size: 15px;
  border-radius: 16px;
}

/* FLOAT BUTTON */
#wa-toggle {
  width: 64px;
  height: 64px;
}

#wa-toggle iconify-icon {
  font-size: 26px;
}

/* MOBILE */
@media (max-width: 768px) {
  .wa-panel {
    width: min(320px, calc(100vw - 16px));
  }

  .wa-option {
    padding: 12px;
    font-size: 13px;
  }

  .wa-cta {
    font-size: 14px;
    padding: 10px;
  }
}
.wa-cta {
  background: #25d366;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
/* =========================================================
   WHATSAPP PANEL – FINAL SIZE OPTIMIZATION
========================================================= */

/* PANEL kleiner */
.wa-panel {
  width: 320px;
  max-width: calc(100vw - 16px);
  border-radius: 18px;
}

/* HEADER kompakter */
.wa-panel-header {
  padding: 12px 14px;
}

/* Titel */
.wa-panel-header h3 {
  font-size: 15px;
  font-weight: 600;
}

/* Untertitel */
.wa-panel-header p {
  font-size: 11px;
  opacity: 0.9;
}

/* BODY */
.wa-panel-body {
  padding: 12px;
}

/* Hallo Text */
.wa-panel-body h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

/* OPTIONEN – kleiner & cleaner */
.wa-option {
  padding: 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.35;
}

/* Icons kleiner */
.wa-option iconify-icon {
  font-size: 20px;
}

/* Abstand enger */
.wa-options {
  gap: 6px;
}

/* CTA Button */
.wa-cta {
  margin-top: 8px;
  padding: 11px;
  font-size: 14px;
  border-radius: 14px;
}

/* FLOAT BUTTON etwas kleiner */
#wa-toggle {
  width: 60px;
  height: 60px;
}

#wa-toggle iconify-icon {
  font-size: 24px;
}
@media (max-width: 768px) {

  /* Panel deutlich kleiner */
  .wa-panel {
    width: min(300px, calc(100vw - 20px));
    max-height: 80vh;   /* verhindert Fullscreen-Effekt */
    overflow-y: auto;
  }

  /* Schrift nochmal kleiner */
  .wa-panel-body h4 {
    font-size: 14px;
  }

  .wa-option {
    font-size: 12.5px;
    padding: 10px;
  }

  .wa-cta {
    font-size: 13px;
    padding: 10px;
  }

  /* Header kompakter */
  .wa-panel-header {
    padding: 10px 12px;
  }
}
/* =========================================================
   WHATSAPP – DEZENTER PREMIUM MODE
========================================================= */

/* Panel Startzustand */
.wa-panel {
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
}

/* Panel aktiv */
.wa-panel.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* leichter Glass Effekt */
.wa-panel {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.5);
}
/* sanfter Pulse */
@keyframes wa-soft-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

#wa-toggle {
  animation: wa-soft-pulse 3.5s infinite;
}
.wa-option {
  transition: all 0.2s ease;
}

.wa-option:hover {
  transform: translateY(-2px);
  background: rgba(0,0,0,0.04);
}
.wa-panel-header {
  background: linear-gradient(135deg, #25d366, #1da851);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.wa-panel.active + #wa-toggle,
.wa-open #wa-toggle {
  animation: none;
}
/* leichte Glaswirkung für moderne UI */
.card,
.service-apple-card {
  backdrop-filter: blur(6px);
}

/* Buttons moderner */
.btn-primary {
  background: linear-gradient(135deg, #0067a6, #1585c9);
  border-radius: 12px;
}
/* =========================
   PREMIUM SEO LINKS – TEXT VERSION
========================= */

.premium-seo-links {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.03);
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.75;
}

.premium-seo-links a {
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}

.premium-seo-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.25s ease;
}

.premium-seo-links a:hover::after {
  width: 100%;
}

.premium-seo-footer {
  margin-top: 14px;
  color: var(--color-text);
}

/* Mobile */
@media (max-width: 768px) {
  .premium-seo-links {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.65;
    border-radius: 14px;
  }
}
/* =========================
   PKV HIGHLIGHT AUF STARTSEITE
========================= */

.pkv-home-highlight {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(245, 105, 0, 0.12), transparent 22%),
        radial-gradient(circle at 85% 20%, rgba(108, 140, 255, 0.16), transparent 24%),
        linear-gradient(120deg, #020b37 0%, #041455 42%, #0b267f 100%);
}

.pkv-home-shell {
    position: relative;
    z-index: 2;
}

.pkv-home-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .85rem 1.2rem;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pkv-home-content h2 {
    color: #fff;
    font-size: clamp(2.4rem, 4vw, 4.7rem);
    line-height: .95;
    letter-spacing: -.03em;
    margin-bottom: 1rem;
    max-width: 11ch;
}

.pkv-home-content h2 span {
    background: linear-gradient(90deg, #fff4d7 0%, #ffcf8a 42%, #f56900 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pkv-home-lead {
    color: rgba(255,255,255,.88);
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 680px;
    margin-bottom: 1.4rem;
}

.pkv-home-points {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-bottom: 1.5rem;
}

.pkv-home-points div {
    display: inline-flex;
    align-items: center;
    padding: .9rem 1.1rem;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    color: #fff;
    font-weight: 600;
    backdrop-filter: blur(12px);
}

.pkv-home-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pkv-home-actions .btn-outline-light {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
}

.pkv-home-card-wrap {
    position: relative;
}

.pkv-home-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, #fff7ef 100%);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 32px;
    box-shadow: 0 32px 70px rgba(0, 11, 45, .35);
    padding: 2.6rem 2rem;
}

.pkv-home-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff9828, #f56900);
    color: #fff;
    border-radius: 999px;
    padding: .65rem 1rem;
    font-weight: 800;
}

.pkv-home-mini {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem .95rem;
    border-radius: 999px;
    background: #fff0dd;
    color: #cb6600;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pkv-home-card h3 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: .96;
    color: #13224b;
    margin-bottom: .75rem;
}

.pkv-home-card p {
    color: #69779a;
    line-height: 1.72;
    margin-bottom: 1rem;
}

.pkv-home-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkv-home-card li {
    position: relative;
    padding: .95rem 0 .95rem 1.55rem;
    border-bottom: 1px solid rgba(18,31,76,.08);
    color: #1e2b52;
    font-weight: 600;
}

.pkv-home-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: .95rem;
    color: #f56900;
    font-weight: 900;
}

.pkv-home-card-highlight {
    margin-top: 1.3rem;
    padding: 1rem 1.15rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff0dd, #ffe0bd);
    font-weight: 800;
    color: #16224b;
}

/* =========================
   ARAG AWARDS SLIDER
========================= */

.arag-awards-slider-section {
    background: #f7f8fc;
    overflow: hidden;
    border-top: 1px solid rgba(18,31,76,.06);
    border-bottom: 1px solid rgba(18,31,76,.06);
}

.arag-awards-head {
    text-align: center;
    margin-bottom: 1.4rem;
}

.arag-awards-kicker {
    display: inline-block;
    padding: .65rem 1rem;
    border-radius: 999px;
    background: #edf2ff;
    color: #3f6db8;
    font-weight: 800;
    margin-bottom: .8rem;
}

.arag-awards-head h3 {
    color: #1c2951;
    margin-bottom: .5rem;
}

.arag-awards-head p {
    color: #60708c;
    margin-bottom: 0;
}

.arag-awards-slider {
    overflow: hidden;
    position: relative;
}

.arag-awards-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: aragAwardsScroll 32s linear infinite;
}

.arag-award-card {
    min-width: 280px;
    max-width: 280px;
    background: #fff;
    border: 1px solid rgba(18,31,76,.08);
    border-radius: 22px;
    padding: 1.2rem 1.1rem;
    box-shadow: 0 14px 32px rgba(10,18,34,.08);
}

.arag-award-card .award-date {
    display: inline-block;
    font-size: .82rem;
    font-weight: 800;
    color: #f56900;
    margin-bottom: .5rem;
}

.arag-award-card strong {
    display: block;
    color: #1c2951;
    font-size: 1rem;
    margin-bottom: .35rem;
}

.arag-award-card p {
    color: #62718e;
    margin-bottom: 0;
    font-size: .95rem;
    line-height: 1.5;
}

@keyframes aragAwardsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.arag-awards-slider:hover .arag-awards-track {
    animation-play-state: paused;
}

@media (max-width: 991.98px) {
    .pkv-home-content h2 {
        max-width: 100%;
    }

    .pkv-home-actions {
        flex-direction: column;
    }

    .pkv-home-actions .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .pkv-home-points {
        display: grid;
        grid-template-columns: 1fr;
    }

    .arag-award-card {
        min-width: 240px;
        max-width: 240px;
    }
}
.arag-awards-slider-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(245, 105, 0, 0.08), transparent 24%),
        radial-gradient(circle at 90% 10%, rgba(108, 140, 255, 0.10), transparent 26%),
        linear-gradient(180deg, #f8f9fd 0%, #eef2f9 100%);
    border-top: 1px solid rgba(18,31,76,.06);
    border-bottom: 1px solid rgba(18,31,76,.06);
}

.arag-awards-head {
    text-align: center;
    margin-bottom: 1.75rem;
}

.arag-awards-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .7rem 1.05rem;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(18,31,76,.08);
    color: #3f6db8;
    font-weight: 800;
    margin-bottom: .8rem;
    backdrop-filter: blur(12px);
}

.arag-awards-head h3 {
    color: #14224a;
    margin-bottom: .45rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.arag-awards-head p {
    color: #62718e;
    max-width: 760px;
    margin: 0 auto;
}

.arag-awards-slider {
    overflow: hidden;
    position: relative;
}

.arag-awards-track {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    animation: aragAwardsScroll 38s linear infinite;
    padding: .3rem 0;
}

.arag-awards-slider:hover .arag-awards-track {
    animation-play-state: paused;
}

@keyframes aragAwardsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.arag-award-card {
    min-width: 300px;
    max-width: 300px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 28px;
    padding: 1rem;
    background:
        linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
    backdrop-filter: blur(18px);
    box-shadow:
        0 18px 40px rgba(8,18,38,.08),
        inset 0 1px 0 rgba(255,255,255,.65);
    text-align: left;
    cursor: pointer;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.arag-award-card:hover {
     transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 55px rgba(0,0,0,.12);
    border-color: rgba(245,105,0,.4);
    border-color: rgba(245,105,0,.22);
}

.arag-award-card-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: .8rem;
    margin-bottom: .9rem;
    width: 100% !important;
}

.arag-award-card .award-date {
    display: inline-flex;
    align-items: center;
    padding: .45rem .75rem;
    border-radius: 999px;
    background: #fff4e9;
    color: #f56900;
    font-size: .84rem;
    font-weight: 800;
    line-height: 1;
}

.award-open {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef3ff;
    color: #28407a;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform .2s ease, background .2s ease;
}

.arag-award-card:hover .award-open {
    transform: translateY(-1px) rotate(4deg);
    background: #e4ecff;
}

.arag-award-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
    padding: 1.2rem;
    border-radius: 22px;
    margin-bottom: 1rem;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(245,105,0,.10), transparent 38%),
        radial-gradient(circle at bottom right, rgba(108,140,255,.10), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
    border: 1px solid rgba(18,31,76,.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.arag-award-image-wrap img {
    max-width: 100%;
    max-height: 185px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 14px 18px rgba(0,0,0,.10));
    transition: transform .28s ease;
}

.arag-award-card:hover .arag-award-image-wrap img {
    transform: scale(1.05);
}

.arag-award-copy strong {
    display: block;
    color: #182652;
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: .45rem;
    letter-spacing: -.02em;
}

.arag-award-copy p {
    margin: 0;
    color: #61708d;
    font-size: 1rem;
    line-height: 1.5;
}

/* MODAL */
.award-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

.award-modal.is-open {
    display: block;
}

.award-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 24, 32, .62);
    backdrop-filter: blur(4px);
}

.award-modal-dialog {
    position: relative;
    width: min(1260px, calc(100% - 32px));
    max-height: calc(100vh - 30px);
    margin: 15px auto;
    background: #eceae6;
    overflow: auto;
    padding: 2.5rem;
    box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.award-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    color: #0b1736;
    font-size: 1.8rem;
    cursor: pointer;
}

.award-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    min-height: 70vh;
}

.award-modal-image-box {
    background: #f7f7f7;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.award-modal-image-box img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.award-modal-content-col h3 {
    color: #000;
    font-size: clamp(2rem, 3.2vw, 4rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    max-width: 11ch;
}

.award-modal-date {
    font-size: clamp(1.5rem, 2.2vw, 2.4rem);
    color: #09152f;
    margin-bottom: 2rem;
}

.award-modal-content-col p {
    color: #111;
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.7;
    max-width: 25ch;
    margin: 0;
}

@media (max-width: 767.98px) {
    .arag-award-card {
        min-width: 260px;
        max-width: 260px;
        padding: .85rem;
        border-radius: 24px;
    }

    .arag-award-image-wrap {
        height: 210px;
    }

    .arag-award-image-wrap img {
        max-height: 155px;
    }

    .arag-award-copy strong {
        font-size: 1.1rem;
    }

    .arag-award-copy p {
        font-size: .94rem;
    }
}

@media (max-width: 991.98px) {
    .award-modal-dialog {
        padding: 1.5rem;
    }

    .award-modal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: auto;
    }

    .award-modal-image-box {
        min-height: 280px;
    }

    .award-modal-content-col h3,
    .award-modal-content-col p {
        max-width: 100%;
    }
}
.arag-award-card {
    display: block !important;
    width: 300px !important;
    min-width: 300px !important;
    max-width: 300px !important;
    flex: 0 0 300px !important;

    border: 1px solid rgba(255,255,255,.55);
    border-radius: 28px;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(8,18,38,.08), inset 0 1px 0 rgba(255,255,255,.65);
    text-align: left;
    cursor: pointer;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;

    appearance: none;
    -webkit-appearance: none;
    border-collapse: separate;
    white-space: normal !important;
    overflow: hidden;
}
.arag-award-image-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;

    height: 240px !important;
    min-height: 240px !important;

    padding: 1.2rem !important;
    border-radius: 22px;
    margin-bottom: 1rem;
    overflow: hidden;

    background:
        radial-gradient(circle at top left, rgba(245,105,0,.10), transparent 38%),
        radial-gradient(circle at bottom right, rgba(108,140,255,.10), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
    border: 1px solid rgba(18,31,76,.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);

    box-sizing: border-box !important;
}
.arag-award-copy {
    display: block !important;
    width: 100% !important;
}

.arag-award-copy strong {
    display: block !important;
    color: #182652;
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: .45rem;
    letter-spacing: -.02em;
    white-space: normal !important;
}

.arag-award-copy p {
    display: block !important;
    margin: 0;
    color: #61708d;
    font-size: 1rem;
    line-height: 1.5;
    white-space: normal !important;
}
.arag-awards-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 1.2rem;
    width: max-content;
    animation: aragAwardsScroll 38s linear infinite;
    padding: .3rem 0;
}
.arag-award-image-wrap {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
@keyframes aragAwardsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.arag-awards-track {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    animation: aragAwardsScroll 40s linear infinite;
}
.pkv-spotlight-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 20%, rgba(245, 105, 0, 0.10), transparent 24%),
        radial-gradient(circle at 85% 15%, rgba(108, 140, 255, 0.14), transparent 28%),
        linear-gradient(135deg, #020b37 0%, #06175e 46%, #15308d 100%);
}

.pkv-spotlight-shell {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 28px 70px rgba(0, 11, 45, .25);
}

.pkv-spotlight-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.pkv-spotlight-bg-glow-1 {
    width: 320px;
    height: 320px;
    top: -80px;
    left: -60px;
    background: rgba(245, 105, 0, .14);
}

.pkv-spotlight-bg-glow-2 {
    width: 360px;
    height: 360px;
    right: -80px;
    bottom: -120px;
    background: rgba(108, 140, 255, .16);
}

.pkv-spotlight-copy {
    position: relative;
    z-index: 2;
}

.pkv-spotlight-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .85rem 1.15rem;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    font-weight: 800;
    margin-bottom: 1.15rem;
    backdrop-filter: blur(12px);
}

.pkv-spotlight-kicker iconify-icon {
    color: #ffbd73;
    font-size: 1rem;
}

.pkv-spotlight-copy h2 {
    color: #fff;
    font-size: clamp(2.6rem, 3vw, 5rem);
    line-height: .95;
    letter-spacing: -.04em;
    margin-bottom: 1rem;
    max-width: 10ch;
}

.pkv-spotlight-copy h2 span {
    background: linear-gradient(90deg, #fff4d7 0%, #ffcf8a 45%, #f56900 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pkv-spotlight-lead {
    color: rgba(255,255,255,.88);
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 60ch;
    margin-bottom: 1.5rem;
}

.pkv-spotlight-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-bottom: 1.5rem;
}

.pkv-spotlight-chips span {
    display: inline-flex;
    align-items: center;
    padding: .9rem 1rem;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    color: #fff;
    font-weight: 600;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

.pkv-spotlight-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pkv-spotlight-actions .btn {
    min-height: 56px;
    border-radius: 999px;
    padding: 0 1.45rem;
    font-weight: 700;
}

.pkv-spotlight-actions .btn-primary {
    background: linear-gradient(135deg, #7ca2ff, #5e87f2) !important;
    border: none !important;
    box-shadow: 0 20px 38px rgba(94, 135, 242, .28);
}

.pkv-spotlight-actions .btn-outline-light {
    background: rgba(255,255,255,.07) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    color: #fff !important;
}

.pkv-spotlight-visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 40px 40px 80px;
}

.pkv-spotlight-main-card {
    position: relative;
    z-index: 3;
    width: min(100%, 620px);
     margin-left: 40px;
    margin-top: 20px;
    padding: 1.4rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88));
    border: 1px solid rgba(255,255,255,.58);
    box-shadow: 0 30px 80px rgba(0, 11, 45, .30);
    backdrop-filter: blur(18px);
    animation: pkvFloatCard 5.8s ease-in-out infinite;
}

@keyframes pkvFloatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.pkv-spotlight-main-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pkv-spotlight-main-top .mini-label {
    display: inline-flex;
    align-items: center;
    padding: .65rem .9rem;
    border-radius: 999px;
    background: #fff0dd;
    color: #cb6600;
    font-weight: 800;
    font-size: .92rem;
}

.pkv-spotlight-main-top .mini-pill {
    display: inline-flex;
    align-items: center;
    padding: .65rem .95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff9828, #f56900);
    color: #fff;
    font-weight: 800;
    font-size: .9rem;
}

.pkv-spotlight-main-head {
    margin-bottom: 1.2rem;
}

.pkv-spotlight-main-head h3 {
    color: #13224b;
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    line-height: 1.02;
    letter-spacing: -.03em;
    margin-bottom: .75rem;
    max-width: 14ch;
}

.pkv-spotlight-main-head p {
    color: #68779a;
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 52ch;
}

.pkv-spotlight-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .95rem;
    margin-bottom: 1rem;
}

.pkv-mini-card {
    position: relative;
    overflow: hidden;
    padding: 1.1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
    border: 1px solid rgba(18,31,76,.08);
    box-shadow: 0 16px 30px rgba(10,18,34,.08);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.pkv-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(10,18,34,.12);
    border-color: rgba(245,105,0,.18);
}

.pkv-mini-card.is-active {
    background: linear-gradient(180deg, #fff7ef 0%, #fff 100%);
    border-color: rgba(245,105,0,.18);
}

.pkv-mini-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff4e9, #ffe3c3);
    color: #f56900;
    font-size: 1.35rem;
    box-shadow: 0 12px 22px rgba(245,105,0,.14);
    margin-bottom: .8rem;
}

.pkv-mini-card strong {
    display: block;
    color: #182652;
    font-size: 1.06rem;
    line-height: 1.25;
    margin-bottom: .3rem;
}

.pkv-mini-card span {
    display: block;
    color: #61708d;
    line-height: 1.45;
    font-size: .95rem;
}

.pkv-spotlight-main-footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .9rem;
}

.pkv-footer-stat {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #f8f9fd, #eef3ff);
    border: 1px solid rgba(18,31,76,.06);
}

.pkv-footer-stat .value {
    display: block;
    color: #16224b;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: .25rem;
}

.pkv-footer-stat .label {
    display: block;
    color: #66779a;
    font-size: .92rem;
    line-height: 1.45;
}

.pkv-spotlight-floating-badge {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .8rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
    font-weight: 700;
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 32px rgba(0,0,0,.12);
}

.pkv-spotlight-floating-badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #86ffb0;
    box-shadow: 0 0 0 6px rgba(134,255,176,.16);
}

.pkv-spotlight-floating-badge.badge-top {
    top: 24px;
    left: auto;
    right: 170px;
    animation: pkvFloatBadgeA 4.8s ease-in-out infinite;
}

.pkv-spotlight-floating-badge.badge-bottom {
    bottom: 18px;
    right: 40px;
    left: auto;
    animation: pkvFloatBadgeB 5.4s ease-in-out infinite;
}

@keyframes pkvFloatBadgeA {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pkvFloatBadgeB {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.pkv-spotlight-side-orb {
    position: absolute;
 right: -50px;
    top: 110px;
    width: 140px;
    height: 140px;
    z-index: 1;
    pointer-events: none;
}

.orb-core {
    position: absolute;
    inset: 36px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,195,119,.95), rgba(245,105,0,.88));
    box-shadow: 0 20px 40px rgba(245,105,0,.30);
}

.orb-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
}

.orb-ring-1 {
    animation: orbPulse 5s linear infinite;
}

.orb-ring-2 {
    inset: 14px;
    animation: orbPulse 5s linear infinite reverse;
}

@keyframes orbPulse {
    0% { transform: scale(1); opacity: .7; }
    50% { transform: scale(1.06); opacity: 1; }
    100% { transform: scale(1); opacity: .7; }
}

.orb-label {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: 1.15rem;
    letter-spacing: .08em;
}

@media (max-width: 1199.98px) {
    .pkv-spotlight-copy h2 {
        max-width: 100%;
    }

    .pkv-spotlight-main-head h3 {
        max-width: 100%;
    }

    .pkv-spotlight-visual {
        min-height: auto;
    }
}

@media (max-width: 991.98px) {
    .pkv-spotlight-shell {
        padding: 1.35rem;
    }

    .pkv-spotlight-main-card {
        animation: none;
    }

    .pkv-spotlight-floating-badge.badge-top {
        top: -6px;
        left: 0;
    }

    .pkv-spotlight-floating-badge.badge-bottom {
        bottom: -10px;
        right: 0;
    }

    .pkv-spotlight-side-orb {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .pkv-spotlight-copy h2 {
        font-size: clamp(2.3rem, 11vw, 3.6rem);
    }

    .pkv-spotlight-chips {
        display: grid;
        grid-template-columns: 1fr;
    }

    .pkv-spotlight-actions {
        flex-direction: column;
    }

    .pkv-spotlight-actions .btn {
        width: 100%;
    }

    .pkv-spotlight-feature-grid,
    .pkv-spotlight-main-footer {
        grid-template-columns: 1fr;
    }

    .pkv-spotlight-floating-badge {
        position: static;
        margin-bottom: .9rem;
    }

    .pkv-spotlight-visual {
        display: block;
    }
}
.pkv-spotlight-main-card,
.pkv-spotlight-copy {
    z-index: 3;
}

.pkv-spotlight-side-orb,
.pkv-spotlight-floating-badge {
    z-index: 2;
}
.pkv-spotlight-copy h2 {
    max-width: 8.5ch;
}
.pkv-spotlight-visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 40px 40px 80px;
}

.pkv-spotlight-main-card {
    position: relative;
    z-index: 3;
    width: min(100%, 620px);
    margin-left: 50px;
    margin-top: 30px;
}

.pkv-spotlight-main-card,
.pkv-spotlight-copy {
    z-index: 3;
}

.pkv-spotlight-floating-badge,
.pkv-spotlight-side-orb {
    z-index: 2;
}

.pkv-spotlight-floating-badge.badge-top {
    top: 24px;
    left: auto;
    right: 150px;
}

.pkv-spotlight-floating-badge.badge-bottom {
    bottom: 8px;
    right: 24px;
    left: auto;
    padding: .7rem .9rem;
    font-size: .92rem;
}

.pkv-spotlight-side-orb {
    position: absolute;
    right: -40px;
    top: 105px;
    width: 140px;
    height: 140px;
    z-index: 1;
    pointer-events: none;
}

.pkv-spotlight-copy h2 {
    max-width: 8.5ch;
}
/* =========================
   PKV SPOTLIGHT FINAL
========================= */

.pkv-spotlight {
    position: relative;
    overflow: hidden;
}

/* GRID */
.pkv-spotlight .row {
    align-items: center;
}

/* LEFT TEXT */
.pkv-spotlight-copy {
    position: relative;
    z-index: 3;
}

.pkv-spotlight-copy h2 {
    max-width: 9ch;
}

/* RIGHT VISUAL */
.pkv-spotlight-visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 40px 40px 80px;
}

/* MAIN CARD */
.pkv-spotlight-main-card {
    position: relative;
    z-index: 3;
    width: min(100%, 620px);
    margin-left: 40px;
    margin-top: 30px;
}

/* FLOATING BADGES */
.pkv-spotlight-floating-badge {
    position: absolute;
    z-index: 2;
    backdrop-filter: blur(14px);
}

/* TOP BADGE */
.pkv-spotlight-floating-badge.badge-top {
    top: 20px;
    right: 150px;
}

/* BOTTOM BADGE */
.pkv-spotlight-floating-badge.badge-bottom {
    bottom: 10px;
    right: 20px;
    padding: .7rem .9rem;
    font-size: .92rem;
}

/* ORB */
.pkv-spotlight-side-orb {
    position: absolute;
    right: -40px;
    top: 100px;
    width: 140px;
    height: 140px;
    z-index: 1;
    pointer-events: none;
}

/* Z-INDEX CLEAN */
.pkv-spotlight-copy,
.pkv-spotlight-main-card {
    z-index: 3;
}

.pkv-spotlight-floating-badge,
.pkv-spotlight-side-orb {
    z-index: 2;
}
/* =========================
   MOBILE FIX
========================= */

@media (max-width: 991px) {

    .pkv-spotlight .row {
        flex-direction: column;
        gap: 40px;
    }

    .pkv-spotlight-copy {
        text-align: center;
    }

    .pkv-spotlight-copy h2 {
        max-width: 100%;
    }

    .pkv-spotlight-tags,
    .pkv-spotlight-actions {
        justify-content: center;
    }

    .pkv-spotlight-visual {
        padding: 0;
        min-height: auto;
    }

    .pkv-spotlight-main-card {
        margin: 0;
        width: 100%;
    }

    /* FLOAT ELEMENTS AUSBLENDEN */
    .pkv-spotlight-floating-badge,
    .pkv-spotlight-side-orb {
        display: none;
    }
}
.pkv-spotlight-main-card {
    transition: transform .4s ease, box-shadow .4s ease;
}

.pkv-spotlight-main-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 90px rgba(0,0,0,.35);
}
@media (max-width: 768px) {

    .arag-awards-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        display: flex;
        gap: 16px;
        padding-bottom: 10px;
    }

}
.funnel-emergency-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-top:24px;
    padding:28px;
    background:linear-gradient(135deg, #c00000 0%, #e30613 100%);
    color:#fff;
    border-radius:22px;
    box-shadow:0 18px 40px rgba(124, 0, 0, 0.22);
    border:1px solid rgba(255,255,255,0.12);
}

.funnel-emergency-card[hidden]{
    display:none !important;
}

.funnel-emergency-card__icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:62px;
    height:62px;
    min-width:62px;
    border-radius:18px;
    background:rgba(255,255,255,0.14);
    font-size:30px;
    line-height:1;
    box-shadow:inset 0 1px 0 rgba(255,255,255,0.14);
}

.funnel-emergency-card__content{
    flex:1 1 auto;
}

.funnel-emergency-card__content h3{
    margin:0 0 10px;
    font-size:28px;
    line-height:1.2;
    font-weight:700;
    color:#fff;
}

.funnel-emergency-card__content p{
    margin:0 0 18px;
    font-size:17px;
    line-height:1.65;
    color:rgba(255,255,255,0.94);
    max-width:680px;
}

.funnel-emergency-card__cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:0 24px;
    border-radius:999px;
    background:#fff;
    color:#c00000;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    letter-spacing:0.01em;
    box-shadow:0 10px 24px rgba(0,0,0,0.14);
    transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.funnel-emergency-card__cta:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 28px rgba(0,0,0,0.18);
    background:#fff;
    color:#a40000;
}

.funnel-emergency-card__cta:focus-visible{
    outline:3px solid rgba(255,255,255,0.45);
    outline-offset:3px;
}

.privat-option-card--emergency{
    border-color:rgba(227, 6, 19, 0.22);
}

.privat-option-card--emergency:hover{
    border-color:rgba(227, 6, 19, 0.45);
}

@media (max-width: 767.98px){
    .funnel-emergency-card{
        flex-direction:column;
        padding:22px;
        border-radius:18px;
    }

    .funnel-emergency-card__icon{
        width:56px;
        height:56px;
        min-width:56px;
        border-radius:16px;
        font-size:28px;
    }

    .funnel-emergency-card__content h3{
        font-size:24px;
    }

    .funnel-emergency-card__content p{
        font-size:16px;
        line-height:1.55;
    }

    .funnel-emergency-card__cta{
        width:100%;
        text-align:center;
    }
}
.premium-seo-links-clean{
    margin-top:28px;
}

.premium-seo-links-intro{
    margin:0 0 18px;
    font-size:16px;
    line-height:1.65;
    color:#667085;
}

.premium-seo-links-grid{
    display:grid;
    gap:12px;
}

.premium-link-card{
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:18px 20px;
    background:#ffffff;
    border:1px solid rgba(15, 35, 95, 0.07);
    border-radius:18px;
    text-decoration:none;
    color:#0b67a3;
    box-shadow:0 6px 18px rgba(15, 23, 42, 0.03);
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease,
        background-color .22s ease;
}

.premium-link-card:hover{
    transform:translateY(-2px);
    border-color:rgba(11, 103, 163, 0.18);
    box-shadow:0 14px 30px rgba(11, 103, 163, 0.08);
}

.premium-link-card:hover .premium-link-icon{
    transform:translateX(2px);
    background:rgba(11, 103, 163, 0.12);
}

.premium-link-card--featured{
    border-color:rgba(11, 103, 163, 0.16);
    background:linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    box-shadow:0 10px 26px rgba(11, 103, 163, 0.07);
}

.premium-link-card--featured::after{
    content:"Beliebt";
    position:absolute;
    top:14px;
    right:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:24px;
    padding:0 10px;
    border-radius:999px;

    background:rgba(255, 140, 0, 0.12);
    color:#ff7a00;

    font-size:11px;
    font-weight:700;
    letter-spacing:.04em;
    text-transform:uppercase;

    box-shadow:0 0 0 rgba(255,122,0,0);
    animation:badgePulse 2.4s ease-in-out infinite;
}
@keyframes badgePulse{
    0%{
        box-shadow:0 0 0 0 rgba(255,122,0,0.0);
    }
    50%{
        box-shadow:0 0 0 6px rgba(255,122,0,0.08);
    }
    100%{
        box-shadow:0 0 0 0 rgba(255,122,0,0.0);
    }
}

.premium-link-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:26px;
    height:26px;
    min-width:26px;
    margin-top:2px;
    border-radius:999px;
    background:rgba(11, 103, 163, 0.08);
    color:#0b67a3;
    font-size:13px;
    font-weight:700;
    transition:transform .22s ease, background-color .22s ease;
}

.premium-link-content{
    display:flex;
    flex-direction:column;
    gap:4px;
    min-width:0;
}

.premium-link-text{
    display:block;
    color:#0b67a3;
    font-size:17px;
    font-weight:700;
    line-height:1.35;
}

.premium-link-subtext{
    display:block;
    color:#667085;
    font-size:14px;
    line-height:1.55;
    font-weight:400;
}

@media (max-width: 767.98px){
    .premium-seo-links-clean{
        margin-top:22px;
    }

    .premium-seo-links-intro{
        margin-bottom:14px;
        font-size:15px;
        line-height:1.55;
    }

    .premium-seo-links-grid{
        gap:10px;
    }

    .premium-link-card{
        gap:12px;
        padding:15px 14px;
        border-radius:15px;
    }

    .premium-link-card--featured::after{
        top:10px;
        right:10px;
        min-height:22px;
        padding:0 8px;
        font-size:10px;
    }

    .premium-link-icon{
        width:22px;
        height:22px;
        min-width:22px;
        font-size:12px;
    }

    .premium-link-text{
        font-size:15px;
        line-height:1.35;
        padding-right:46px;
    }

    .premium-link-subtext{
        font-size:13px;
        line-height:1.45;
    }
}
.reviews-slider-section-light{
    background:linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.reviews-slider-header{
    max-width:760px;
    margin:0 auto 34px;
    text-align:center;
}

.reviews-kicker{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    padding:0 14px;
    border-radius:999px;
    background:rgba(11, 103, 163, 0.08);
    color:#0b67a3;
    font-size:12px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
    margin-bottom:14px;
}

.reviews-slider-header h2{
    margin:0 0 12px;
}

.reviews-slider-header p{
    margin:0 auto 20px;
    max-width:680px;
    color:#667085;
    font-size:17px;
    line-height:1.7;
}

.google-rating-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    min-height:52px;
    padding:0 18px;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(15, 35, 95, 0.08);
    box-shadow:0 10px 24px rgba(15, 23, 42, 0.05);
    text-decoration:none;
    color:#0f172a;
    font-weight:700;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.google-rating-link:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(15, 23, 42, 0.08);
    border-color:rgba(11, 103, 163, 0.18);
}

.google-rating-link img{
    height:18px;
    width:auto;
    display:block;
}

.reviews-slider{
    overflow:hidden;
    position:relative;
}

.reviews-track{
    display:flex;
    gap:20px;
    transition:transform .5s ease;
    will-change:transform;
}

.review-card--premium{
    flex:0 0 calc((100% - 40px) / 3);
    min-width:calc((100% - 40px) / 3);
    background:#fff;
    border:1px solid rgba(15, 35, 95, 0.06);
    border-radius:24px;
    padding:22px;
    box-shadow:0 16px 34px rgba(15, 23, 42, 0.05);
    display:flex;
    flex-direction:column;
    gap:14px;
}

.review-card-top{
    display:flex;
    align-items:center;
    gap:12px;
}

.review-avatar{
    width:48px;
    height:48px;
    min-width:48px;
    border-radius:50%;
    overflow:hidden;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, #e8eef6 0%, #dbe7f3 100%);
    color:#0b67a3;
    font-size:18px;
    font-weight:700;
}

.review-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.review-meta{
    display:flex;
    flex-direction:column;
    gap:2px;
    min-width:0;
}

.review-name{
    font-size:15px;
    line-height:1.3;
    color:#0f172a;
    font-weight:700;
}

.review-date{
    font-size:13px;
    line-height:1.3;
    color:#667085;
}

.review-stars{
    color:#f5a623;
    font-size:18px;
    letter-spacing:2px;
    line-height:1;
}

.review-text{
    margin:0;
    color:#334155;
    font-size:16px;
    line-height:1.7;
    flex-grow:1;
}

.review-source{
    display:inline-flex;
    align-items:center;
    width:max-content;
    min-height:30px;
    padding:0 10px;
    border-radius:999px;
    background:rgba(11, 103, 163, 0.07);
    color:#0b67a3;
    font-size:12px;
    font-weight:700;
}

.review-image{
    border-radius:18px;
    overflow:hidden;
    margin-top:2px;
}

.review-image img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
}

@media (max-width: 991.98px){
    .review-card--premium{
        flex:0 0 calc((100% - 20px) / 2);
        min-width:calc((100% - 20px) / 2);
    }
}

@media (max-width: 767.98px){
    .reviews-slider-header{
        margin-bottom:24px;
    }

    .reviews-slider-header p{
        font-size:15px;
        line-height:1.6;
    }

    .google-rating-link{
        min-height:46px;
        padding:0 15px;
        font-size:14px;
    }

    .reviews-track{
        gap:16px;
    }

    .review-card--premium{
        flex:0 0 100%;
        min-width:100%;
        padding:18px;
        border-radius:20px;
    }

    .review-avatar{
        width:42px;
        height:42px;
        min-width:42px;
        font-size:16px;
    }

    .review-text{
        font-size:15px;
        line-height:1.65;
    }

    .review-image img{
        height:160px;
    }
}
/* =========================================
   PREMIUM CHECK – DARK PREMIUM VERSION
   passend zu deinem HTML
========================================= */

:root{
    --pc-section-bg:#1f2a2e;
    --pc-sidebar-bg-1:#071127;
    --pc-sidebar-bg-2:#0a1838;
    --pc-main-bg:#f3f4f7;
    --pc-card:#ffffff;

    --pc-text:#182033;
    --pc-text-soft:#6f7684;
    --pc-text-dark:#ffffff;
    --pc-text-dark-soft:#b8c1d6;

    --pc-primary:#4c78f0;
    --pc-primary-dark:#2f63ea;
    --pc-primary-soft:#dfe8ff;

    --pc-line-dark:rgba(255,255,255,0.06);
    --pc-line-light:rgba(24,32,51,0.08);

    --pc-radius-xl:28px;
    --pc-radius-lg:20px;
    --pc-radius-md:16px;
    --pc-radius-sm:12px;
    --pc-radius-pill:999px;

    --pc-shadow-main:0 24px 60px rgba(0,0,0,0.20);
    --pc-shadow-soft:0 10px 30px rgba(15,23,42,0.08);
    --pc-shadow-card:0 14px 34px rgba(0,0,0,0.10);
}

/* SECTION */

.premium-check-section{
    background:#1f2a2e;
    padding:90px 20px;
}

.premium-check-shell{
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns:360px minmax(0, 1fr);
    gap:24px;
    align-items:stretch;
}

/* SIDEBAR */

.premium-check-sidebar{
    background:
        radial-gradient(circle at top left, rgba(76,120,240,0.12), transparent 30%),
        linear-gradient(180deg, var(--pc-sidebar-bg-1) 0%, var(--pc-sidebar-bg-2) 100%);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:var(--pc-radius-xl);
    padding:32px 26px;
    box-shadow:var(--pc-shadow-main);
    color:var(--pc-text-dark);
    display:flex;
    flex-direction:column;
    min-height:100%;
}

.premium-check-sidebar__top{
    margin-bottom:28px;
}

.premium-check-badge{
    display:inline-flex;
    align-items:center;
    min-height:42px;
    padding:0 18px;
    border-radius:var(--pc-radius-pill);
    background:rgba(76,120,240,0.14);
    border:1px solid rgba(76,120,240,0.14);
    color:#dce6ff;
    font:700 12px/1 Roboto, sans-serif;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:22px;
}

.premium-check-sidebar__title{
    margin:0 0 14px;
    font-family:"Bebas Neue", sans-serif;
    font-size:30px;
    line-height:.92;
    letter-spacing:.02em;
    text-transform:uppercase;
    color:#ffffff;
}

.premium-check-sidebar__text{
    margin:0;
    color:var(--pc-text-dark-soft);
    font:400 17px/1.75 Roboto, sans-serif;
    max-width:18ch;
}

/* STEPS */

.premium-check-steps{
    display:flex;
    flex-direction:column;
    gap:0;
    margin-top:12px;
}

.premium-check-step{
    position:relative;
    display:grid;
    grid-template-columns:58px 1fr;
    gap:16px;
    align-items:start;
    padding:22px 0;
    border-top:1px solid var(--pc-line-dark);
    opacity:.62;
    transition:opacity .22s ease, transform .22s ease;
}

.premium-check-step:first-child{
    border-top:none;
    padding-top:0;
}

.premium-check-step.is-active{
    opacity:1;
    transform:translateX(4px);
}

.premium-check-step.is-active::before{
    content:"";
    position:absolute;
    left:-14px;
    top:10px;
    bottom:10px;
    width:4px;
    border-radius:999px;
    background:linear-gradient(180deg, #73a0ff 0%, #4c78f0 100%);
    box-shadow:0 0 16px rgba(76,120,240,0.35);
}

.premium-check-step__number{
    width:48px;
    height:48px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(76,120,240,0.10);
    border:1px solid rgba(76,120,240,0.12);
    color:#d8e3ff;
    font:700 15px/1 Roboto, sans-serif;
}

.premium-check-step.is-active .premium-check-step__number{
    background:linear-gradient(180deg, #6f98ff 0%, #4c78f0 100%);
    color:#fff;
    box-shadow:0 12px 28px rgba(76,120,240,0.28);
}

.premium-check-step__content strong{
    display:block;
    margin-bottom:6px;
    color:#ffffff;
    font:700 17px/1.3 Roboto, sans-serif;
}

.premium-check-step__content span{
    display:block;
    color:var(--pc-text-dark-soft);
    font:400 14px/1.65 Roboto, sans-serif;
}

/* TRUST */

.premium-check-trust{
    margin-top:26px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.premium-check-trust span{
    display:inline-flex;
    align-items:center;
    min-height:38px;
    padding:0 14px;
    border-radius:var(--pc-radius-pill);
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.05);
    color:#e3ebff;
    font:600 13px/1 Roboto, sans-serif;
}

.premium-check-trust + .premium-check-summary{
    margin-top:18px;
}

/* SUMMARY */

.premium-check-summary{
    margin-top:0;
    padding:22px 20px 18px;
    border-radius:24px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 12px 30px rgba(0,0,0,0.10);
}

.premium-check-summary__kicker{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:0 12px;
    border-radius:var(--pc-radius-pill);
    background:rgba(255,255,255,0.08);
    color:#dce6ff;
    font:800 11px/1 Roboto, sans-serif;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:16px;
}

.premium-check-summary h3{
    margin:0 0 16px;
    color:#ffffff;
    font-family:"Bebas Neue", sans-serif;
    font-size:32px;
    line-height:.92;
    letter-spacing:.03em;
    text-transform:uppercase;
}

.premium-check-summary__line{
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:16px;
    padding:13px 0;
    border-top:1px solid rgba(255,255,255,0.07);
}

.premium-check-summary__line:first-of-type{
    border-top:none;
    padding-top:0;
}

.premium-check-summary__line span{
    color:#aeb9d1;
    font:400 14px/1.4 Roboto, sans-serif;
}

.premium-check-summary__line strong{
    color:#ffffff;
    text-align:right;
    font:700 15px/1.4 Roboto, sans-serif;
}

/* MAIN */

.premium-check-main{
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg, #f4f5f8 0%, #eceef3 100%);
    border-radius:var(--pc-radius-xl);
    padding:38px 40px 34px;
    box-shadow:var(--pc-shadow-main);
    min-height:760px;
}

.premium-check-main::after{
    content:"";
    position:absolute;
    right:-80px;
    bottom:-80px;
    width:240px;
    height:240px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(76,120,240,0.08) 0%, transparent 72%);
    pointer-events:none;
}

/* STEP PANELS */

.premium-check-step-panel{
    display:none;
    position:relative;
    z-index:1;
    opacity:0;
    transform:translateY(12px);
    pointer-events:none;
    transition:opacity .24s ease, transform .24s ease;
}

.premium-check-step-panel.is-active{
    display:block;
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
}

/* PANEL HEAD */

.premium-check-panel__head{
    margin-bottom:28px;
}

.premium-check-panel__meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin-bottom:18px;
}

.premium-check-panel__kicker{
    display:inline-flex;
    align-items:center;
    min-height:32px;
    padding:0 14px;
    border-radius:var(--pc-radius-pill);
    background:var(--pc-primary-soft);
    color:var(--pc-primary-dark);
    font:800 11px/1 Roboto, sans-serif;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.premium-check-progress{
    display:flex;
    gap:10px;
}

.premium-check-progress span{
    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#d9dde5;
    color:#596273;
    border:1px solid rgba(24,32,51,0.05);
    font:700 13px/1 Roboto, sans-serif;
    transition:all .18s ease;
}

.premium-check-progress span.is-active{
    background:linear-gradient(180deg, #6f98ff 0%, #4c78f0 100%);
    color:#fff;
    box-shadow:0 10px 24px rgba(76,120,240,0.22);
}

.premium-check-panel__title{
    margin:0 0 16px;
    max-width:12ch;
    color:var(--pc-text);
    font-family:"Bebas Neue", sans-serif;
    font-size:clamp(2rem, 2vw, 6rem);
    line-height:.92;
    letter-spacing:.02em;
    text-transform:uppercase;
}

.premium-check-panel__text{
    margin:0;
    max-width:58ch;
    color:var(--pc-text-soft);
    font:400 17px/1.8 Roboto, sans-serif;
}

/* GRID */

.premium-check-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:18px;
    align-items:stretch;
}

.premium-check-grid > .premium-check-card:last-child:nth-child(odd){
    grid-column:1 / -1;
}

/* CARDS */

.premium-check-card{
    position:relative;
    overflow:hidden;
    appearance:none;
    border:1px solid rgba(24,32,51,0.06);
    background:linear-gradient(180deg, #ffffff 0%, #f9fafc 100%);
    border-radius:18px;
    box-shadow:0 14px 30px rgba(15,23,42,0.08);
    min-height:122px;
    padding:22px 22px;
    display:flex;
    align-items:center;
    gap:16px;
    text-align:left;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease,
        background .22s ease;
    cursor:pointer;
}

.premium-check-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(76,120,240,0.035) 0%, transparent 72%);
    opacity:0;
    transition:opacity .18s ease;
    pointer-events:none;
}

.premium-check-card:hover::before{
    opacity:1;
}

.premium-check-card:hover{
    transform:translateY(-3px);
    border-color:rgba(76,120,240,0.28);
    background:linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
    box-shadow:0 18px 36px rgba(15,23,42,0.12);
}

.premium-check-card:focus-visible{
    outline:none;
    box-shadow:
        0 0 0 4px rgba(76,120,240,0.12),
        0 18px 36px rgba(15,23,42,0.12);
}

.premium-check-card.is-selected{
    border-color:var(--pc-primary);
    background:linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    box-shadow:
        0 18px 38px rgba(76,120,240,0.12),
        0 0 0 3px rgba(76,120,240,0.08);
    transform:translateY(-2px);
}

.premium-check-card__icon{
    width:64px;
    height:64px;
    min-width:64px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#edf2ff;
    color:var(--pc-primary);
}

.premium-check-card__icon iconify-icon{
    font-size:28px;
}

.premium-check-card__body{
    display:flex;
    flex-direction:column;
    gap:6px;
    min-width:0;
}

.premium-check-card__body strong{
    display:block;
    color:var(--pc-text);
    font:700 20px/1.25 Roboto, sans-serif;
}

.premium-check-card__body small{
    display:block;
    color:var(--pc-text-soft);
    font:400 15px/1.45 Roboto, sans-serif;
}

/* RESULT */

.premium-check-result{
    margin-top:6px;
    background:#ffffff;
    border:1px solid rgba(24,32,51,0.06);
    border-radius:22px;
    padding:24px;
    box-shadow:var(--pc-shadow-soft);
}

.premium-check-result__kicker{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:0 10px;
    border-radius:var(--pc-radius-pill);
    background:var(--pc-primary-soft);
    color:var(--pc-primary-dark);
    font:800 11px/1 Roboto, sans-serif;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:12px;
}

.premium-check-result strong{
    display:block;
    color:var(--pc-text);
    font:700 28px/1.2 Roboto, sans-serif;
    margin-bottom:8px;
}

.premium-check-result p{
    margin:0;
    color:var(--pc-text-soft);
    font:400 16px/1.7 Roboto, sans-serif;
}

/* ACTIONS */

.premium-check-actions{
    margin-top:20px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.premium-check-btn{
    position:relative;
    overflow:hidden;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 18px;
    border-radius:14px;
    text-decoration:none;
    font:700 15px/1 Roboto, sans-serif;
    border:none;
    cursor:pointer;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background-color .18s ease,
        border-color .18s ease,
        color .18s ease;
}

.premium-check-btn:hover{
    transform:translateY(-1px);
}

.premium-check-btn--primary{
    background:linear-gradient(180deg, #4c78f0 0%, #2f63ea 100%);
    color:#fff;
    box-shadow:0 12px 24px rgba(76,120,240,0.22);
}

.premium-check-btn--primary:hover{
    box-shadow:0 16px 28px rgba(76,120,240,0.26);
}

.premium-check-btn--ghost{
    background:#ffffff;
    border:1px solid rgba(24,32,51,0.10);
    color:var(--pc-text);
    box-shadow:0 8px 18px rgba(15,23,42,0.05);
}

.premium-check-btn--ghost:hover{
    background:#f7f9fc;
    border-color:rgba(24,32,51,0.16);
    color:var(--pc-text);
}

.premium-check-btn:focus-visible{
    outline:none;
    box-shadow:0 0 0 4px rgba(76,120,240,0.14);
}

/* MOBILE */

@media (max-width: 1100px){
    .premium-check-shell{
        grid-template-columns:1fr;
    }

    .premium-check-main{
        min-height:auto;
    }
}

@media (max-width: 767.98px){
    .premium-check-section{
        padding:72px 16px;
    }

    .premium-check-shell{
        gap:16px;
    }

    .premium-check-sidebar,
    .premium-check-main{
        border-radius:22px;
    }

    .premium-check-sidebar{
        padding:22px 18px;
    }

    .premium-check-main{
        padding:24px 18px;
    }

    .premium-check-sidebar__title{
        font-size:42px;
    }

    .premium-check-sidebar__text{
        font-size:15px;
        max-width:100%;
    }

    .premium-check-panel__meta{
        flex-direction:column;
        align-items:flex-start;
    }

    .premium-check-panel__title{
        max-width:100%;
        font-size:3rem;
    }

    .premium-check-panel__text{
        font-size:15px;
        line-height:1.65;
    }

    .premium-check-grid{
        grid-template-columns:1fr;
        gap:14px;
    }

    .premium-check-card{
        min-height:98px;
        padding:18px 16px;
        border-radius:16px;
    }

    .premium-check-card__icon{
        width:52px;
        height:52px;
        min-width:52px;
    }

    .premium-check-card__icon iconify-icon{
        font-size:24px;
    }

    .premium-check-card__body strong{
        font-size:16px;
    }

    .premium-check-card__body small{
        font-size:13px;
    }

    .premium-check-summary{
        padding:18px 16px 16px;
    }

    .premium-check-summary h3{
        font-size:42px;
    }

    .premium-check-actions{
        flex-direction:column;
    }

    .premium-check-btn{
        width:100%;
    }
}
/* =========================================
   PREMIUM CHECK – MODERN COMPACT PATCH
========================================= */

/* SECTION etwas straffer */
.premium-check-section{
    padding:72px 20px;
}

.premium-check-shell{
    gap:20px;
    max-width:1240px;
}

/* SIDEBAR kompakter */
.premium-check-sidebar{
    padding:26px 22px;
}

.premium-check-sidebar__top{
    margin-bottom:22px;
}

.premium-check-badge{
    min-height:38px;
    padding:0 16px;
    margin-bottom:18px;
}

.premium-check-sidebar__title{
    font-size:32px;
    margin-bottom:10px;
}

.premium-check-sidebar__text{
    font-size:15px;
    line-height:1.7;
    max-width:17ch;
}

/* Steps links kompakter */
.premium-check-steps{
    margin-top:8px;
}

.premium-check-step{
    grid-template-columns:52px 1fr;
    gap:14px;
    padding:18px 0;
}

.premium-check-step__number{
    width:42px;
    height:42px;
    border-radius:14px;
    font-size:14px;
}

.premium-check-step__content strong{
    font-size:15px;
    margin-bottom:4px;
}

.premium-check-step__content span{
    font-size:13px;
    line-height:1.55;
}

/* NEU: completed state links */
.premium-check-step.is-complete{
    opacity:1;
}

.premium-check-step.is-complete::before{
    content:"";
    position:absolute;
    left:-12px;
    top:8px;
    bottom:8px;
    width:3px;
    border-radius:999px;
    background:linear-gradient(180deg, #34d399 0%, #10b981 100%);
    box-shadow:0 0 14px rgba(16,185,129,0.28);
}

.premium-check-step.is-complete .premium-check-step__number{
    background:linear-gradient(180deg, #34d399 0%, #10b981 100%);
    border-color:rgba(16,185,129,0.18);
    color:#fff;
    box-shadow:0 10px 20px rgba(16,185,129,0.22);
}

/* Trust etwas feiner */
.premium-check-trust{
    margin-top:22px;
    gap:8px;
}

.premium-check-trust span{
    min-height:36px;
    padding:0 12px;
    font-size:12px;
}

/* Summary kleiner und klarer */
.premium-check-trust + .premium-check-summary{
    margin-top:16px;
}

.premium-check-summary{
    padding:18px 16px 15px;
    border-radius:20px;
}

.premium-check-summary__kicker{
    margin-bottom:14px;
}

.premium-check-summary h3{
    font-size:22px;
    margin:0 0 14px;
}

.premium-check-summary__line{
    padding:11px 0;
}

.premium-check-summary__line span{
    font-size:13px;
}

.premium-check-summary__line strong{
    font-size:14px;
}

/* MAIN kompakter */
.premium-check-main{
    padding:30px 32px 28px;
    min-height:700px;
}

/* Head rechts */
.premium-check-panel__head{
    margin-bottom:24px;
}

.premium-check-panel__meta{
    margin-bottom:14px;
}

.premium-check-panel__kicker{
    min-height:30px;
    padding:0 12px;
}

.premium-check-panel__title{
    font-size:clamp(3.1rem, 2.6vw, 4.8rem);
    max-width:11ch;
    margin:0 0 14px;
    line-height:.9;
}

.premium-check-panel__text{
    font-size:16px;
    line-height:1.7;
    max-width:54ch;
}

/* Progress oben rechts */
.premium-check-progress{
    gap:8px;
}

.premium-check-progress span{
    width:32px;
    height:32px;
    font-size:12px;
}

.premium-check-progress span.is-active{
    transform:scale(1.04);
}

/* NEU: completed state oben rechts */
.premium-check-progress span.is-complete{
    background:linear-gradient(180deg, #34d399 0%, #10b981 100%);
    color:#fff;
    box-shadow:0 8px 18px rgba(16,185,129,0.20);
}

/* Grid kompakter */
.premium-check-grid{
    gap:16px;
}

/* Karten moderner */
.premium-check-card{
    min-height:108px;
    padding:20px;
    border-radius:20px;
    box-shadow:0 10px 24px rgba(15,23,42,0.07);
    transition:
        transform .24s ease,
        box-shadow .24s ease,
        border-color .24s ease,
        background .24s ease;
}

.premium-check-card::before{
    background:linear-gradient(135deg, rgba(76,120,240,0.045) 0%, transparent 74%);
}

.premium-check-card:hover{
    transform:translateY(-4px);
    border-color:rgba(76,120,240,0.34);
    background:linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
    box-shadow:0 18px 34px rgba(15,23,42,0.11);
}

.premium-check-card.is-selected{
    border-color:#4c78f0;
    background:linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    box-shadow:
        0 16px 32px rgba(76,120,240,0.14),
        0 0 0 4px rgba(76,120,240,0.08);
    transform:translateY(-2px);
}

.premium-check-card__icon{
    width:56px;
    height:56px;
    min-width:56px;
}

.premium-check-card__icon iconify-icon{
    font-size:24px;
}

.premium-check-card__body strong{
    font-size:17px;
    line-height:1.25;
}

.premium-check-card__body small{
    font-size:14px;
    line-height:1.45;
}

/* Letzte Full-Width Karte ruhiger */
.premium-check-grid > .premium-check-card:last-child:nth-child(odd){
    min-height:100px;
}

/* Result etwas hochwertiger */
.premium-check-result{
    border-radius:20px;
    padding:22px;
}

.premium-check-result strong{
    font-size:24px;
}

/* Buttons */
.premium-check-actions{
    margin-top:18px;
    gap:10px;
}

.premium-check-btn{
    min-height:48px;
    padding:0 16px;
    border-radius:13px;
    font-size:14px;
}

/* Mobile */
@media (max-width: 767.98px){
    .premium-check-section{
        padding:56px 16px;
    }

    .premium-check-shell{
        gap:14px;
    }

    .premium-check-sidebar{
        padding:20px 16px;
    }

    .premium-check-main{
        padding:24px 18px 22px;
        min-height:auto;
    }

    .premium-check-sidebar__title{
        font-size:40px;
    }

    .premium-check-panel__title{
        font-size:2.8rem;
        max-width:100%;
    }

    .premium-check-grid{
        gap:14px;
    }

    .premium-check-card{
        min-height:96px;
        padding:18px 16px;
    }

    .premium-check-card__icon{
        width:50px;
        height:50px;
        min-width:50px;
    }

    .premium-check-summary h3{
        font-size:38px;
    }
}
/* =========================================
   SEO TEXT BLOCK – FINAL CLEAN SPACING FIX
========================================= */

.seo-text-block{
    background:#1f2a2e;
    padding:28px 0 56px;
    position:relative;
    z-index:1;
}

.seo-text-block .container{
    max-width:1180px;
}

.seo-text-block__card{
    max-width:1080px;
    margin:0 auto;
    background:rgba(255,255,255,0.96);
    border:1px solid rgba(15,23,42,0.06);
    border-radius:26px;
    padding:30px 38px 28px;
    box-shadow:0 14px 34px rgba(0,0,0,0.10);
}

.seo-text-block__kicker{
    display:none;
}

.seo-text-block h2{
    margin:0 0 16px;
    max-width:24ch;
    color:#101828;
    font-family:"Bebas Neue", sans-serif;
    font-size:clamp(1.7rem, 2.2vw, 2.7rem);
    line-height:1.02;
    letter-spacing:.01em;
    text-transform:uppercase;
}

.seo-text-block__content{
    max-width:960px;
}

.seo-text-block__content p{
    margin:0 0 16px;
    color:#475467;
    font:400 16px/1.8 Roboto, sans-serif;
}

.seo-text-block__content p:last-child{
    margin-bottom:0;
}

.seo-text-block__lead{
    color:#344054;
    font-size:17px;
}

.seo-text-block strong{
    color:#1d2939;
    font-weight:700;
}

.seo-text-block__topics{
    margin-top:20px;
    padding-top:16px;
    border-top:1px solid rgba(15,23,42,0.08);
}

.seo-text-block__topics-label{
    display:block;
    margin-bottom:10px;
    color:#344054;
    font:700 13px/1.4 Roboto, sans-serif;
}

.seo-text-block__links{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.seo-text-block__links a{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:0 12px;
    border-radius:999px;
    background:#ffffff;
    border:1px solid rgba(15,23,42,0.08);
    color:#1d2939;
    text-decoration:none;
    font:600 13px/1 Roboto, sans-serif;
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        color .18s ease,
        background-color .18s ease;
}

.seo-text-block__links a:hover{
    transform:translateY(-1px);
    border-color:#4c78f0;
    color:#2f63ea;
    background:#f9fbff;
    box-shadow:0 8px 18px rgba(15,23,42,0.05);
}

/* WICHTIG: Abstand zum Schnellcheck */
.seo-text-block + .premium-check-section{
    padding-top:32px;
}

/* Falls der Schnellcheck direkt danach kommt */
.premium-check-section{
    position:relative;
    z-index:1;
}

/* Mobile */
@media (max-width: 767.98px){
    .seo-text-block{
        padding:18px 0 40px;
    }

    .seo-text-block__card{
        padding:22px 20px 22px;
        border-radius:22px;
    }

    .seo-text-block h2{
        max-width:100%;
        font-size:2rem;
        line-height:1;
        margin-bottom:14px;
    }

    .seo-text-block__content p{
        font-size:15px;
        line-height:1.75;
        margin-bottom:14px;
    }

    .seo-text-block__lead{
        font-size:16px;
    }

    .seo-text-block__topics{
        margin-top:18px;
        padding-top:14px;
    }

    .seo-text-block__links a{
        min-height:32px;
        padding:0 10px;
        font-size:12px;
    }

    .seo-text-block + .premium-check-section{
        padding-top:18px;
    }
}
.seo-text-block{
    padding:28px 0 56px;
}

.seo-text-block + .premium-check-section{
    padding-top:32px;
}
/* =========================================
   SECTION SEPARATION: SEO BLOCK / QUICKCHECK
========================================= */

.seo-text-block{
    position:relative;
    z-index:1;
    padding:28px 0 72px;
}

.premium-check-section{
    position:relative;
    z-index:1;
    padding:72px 20px 90px;
}

/* echter Abstand zwischen beiden Bereichen */
.seo-text-block + .premium-check-section{
    margin-top:28px;
}

/* optional: eigener Trenner-Effekt */
.seo-text-block + .premium-check-section::before{
    content:"";
    position:absolute;
    top:-34px;
    left:50%;
    transform:translateX(-50%);
    width:min(1180px, calc(100% - 40px));
    height:1px;
    background:linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.10) 20%,
        rgba(255,255,255,0.10) 80%,
        rgba(255,255,255,0) 100%
    );
    pointer-events:none;
}

/* zusätzlicher dunkler Zwischenraum */
.seo-text-block::after{
    content:"";
    display:block;
    width:100%;
    height:18px;
}

/* mobile */
@media (max-width: 767.98px){
    .seo-text-block{
        padding:18px 0 48px;
    }

    .premium-check-section{
        padding:48px 16px 72px;
    }

    .seo-text-block + .premium-check-section{
        margin-top:18px;
    }

    .seo-text-block + .premium-check-section::before{
        top:-22px;
        width:calc(100% - 32px);
    }

    .seo-text-block::after{
        height:10px;
    }
}
.seo-text-block{
    padding:100px 20px;
    background:#1f2a2e;
}

.seo-text-block .container{
    max-width:1000px;
    margin:0 auto;

    background:#ffffff;
    padding:60px 60px;
    border-radius:24px;

    /* softer Shadow statt hart */
    box-shadow:0 30px 80px rgba(0,0,0,0.12);
}
.seo-text-block{
    padding:100px 20px;
    background:
        linear-gradient(
            180deg,
            #1f2a2e 0%,
            #1f2a2e 60%,
            rgba(31,42,46,0) 100%
        );
}
/* =========================================
   SEO TEXT BLOCK – FINAL PREMIUM SECTION
========================================= */



.seo-text-block{
    position:relative;
    padding:40px 20px 34px;
    background:transparent;
}

/* dunkle Bühne, aber bewusst kleiner und eingerückt */
.seo-text-block__frame{
    position:relative;
    max-width:1080px;
    margin:0 auto;
    padding:26px;
    border-radius:28px;
    background:
        radial-gradient(circle at top left, rgba(76,120,240,0.06), transparent 28%),
        linear-gradient(180deg, #1f2a2e 0%, #182327 100%);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
    overflow:hidden;
}

.seo-text-block__frame::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:34px;
    border:1px solid rgba(255,255,255,0.05);
    pointer-events:none;
}

/* eigentliche Content-Card */
.seo-text-block__card{
    position:relative;
    z-index:1;
    max-width:920px;
    margin:0 auto;
    background:linear-gradient(180deg, #f8fafc 0%, #f2f4f7 100%);
    border:1px solid rgba(15,23,42,0.06);
    border-radius:24px;
    padding:26px 30px 24px;
    box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

.seo-text-block__kicker{
    display:inline-flex;
    align-items:center;
    min-height:32px;
    padding:0 12px;
    margin-bottom:16px;
    border-radius:999px;
    background:#e8efff;
    color:#2f63ea;
    font:700 11px/1 Roboto, sans-serif;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.seo-text-block h2{
    margin:0 0 18px;
    max-width:22ch;
    color:#101828;
    font-family:"Bebas Neue", sans-serif;
    font-size:clamp(1.2rem, 1.2vw, 3.8rem);
    line-height:.96;
    letter-spacing:.01em;
    text-transform:uppercase;
}

.seo-text-block__content{
    max-width:860px;
}

.seo-text-block__content p{
    margin:0 0 14px;
    color:#475467;
    font:400 15px/1.75 Roboto, sans-serif;
}

.seo-text-block__content p:last-child{
    margin-bottom:0;
}

.seo-text-block__lead{
    color:#344054;
    font-size:15px;
}

.seo-text-block strong{
    color:#1d2939;
    font-weight:700;
}

.seo-text-block__topics{
    margin-top:22px;
    padding-top:18px;
    border-top:1px solid rgba(15,23,42,0.08);
}

.seo-text-block__topics-label{
    display:block;
    margin-bottom:10px;
    color:#344054;
    font:700 13px/1.4 Roboto, sans-serif;
}

.seo-text-block__links{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.seo-text-block__links a{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:0 12px;
    border-radius:999px;
    background:#ffffff;
    border:1px solid rgba(15,23,42,0.08);
    color:#1d2939;
    text-decoration:none;
    font:600 13px/1 Roboto, sans-serif;
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        color .18s ease,
        background-color .18s ease;
}

.seo-text-block__links a:hover{
    transform:translateY(-1px);
    border-color:#4c78f0;
    color:#2f63ea;
    background:#f9fbff;
    box-shadow:0 8px 18px rgba(15,23,42,0.05);
}

/* klare Trennung zum Schnellcheck danach */
.seo-text-block + .premium-check-section{
    margin-top:18px;
    padding-top:28px;
}

.seo-text-block + .premium-check-section::before{
    content:"";
    position:absolute;
    top:-18px;
    left:50%;
    transform:translateX(-50%);
    width:min(1120px, calc(100% - 40px));
    height:1px;
    background:linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.10) 20%,
        rgba(255,255,255,0.10) 80%,
        rgba(255,255,255,0) 100%
    );
    pointer-events:none;
}

/* mobile */
@media (max-width: 991.98px){
    .seo-text-block{
        padding:52px 16px 48px;
    }

    .seo-text-block__frame{
        padding:26px;
        border-radius:26px;
    }

    .seo-text-block__card{
        padding:28px 24px 24px;
        border-radius:22px;
    }

    .seo-text-block h2{
        max-width:100%;
        font-size:clamp(2rem, 6vw, 3rem);
    }
}

@media (max-width: 767.98px){
    .seo-text-block{
        padding:40px 12px 38px;
    }

    .seo-text-block__frame{
        padding:18px;
        border-radius:22px;
    }

    .seo-text-block__card{
        padding:22px 18px 20px;
        border-radius:18px;
    }

    .seo-text-block__kicker{
        margin-bottom:12px;
    }

    .seo-text-block h2{
        font-size:2rem;
        line-height:1;
        margin-bottom:14px;
    }

    .seo-text-block__content p{
        font-size:15px;
        line-height:1.75;
        margin-bottom:14px;
    }

    .seo-text-block__lead{
        font-size:16px;
    }

    .seo-text-block__topics{
        margin-top:18px;
        padding-top:14px;
    }

    .seo-text-block__links a{
        min-height:32px;
        padding:0 10px;
        font-size:12px;
    }

    .seo-text-block + .premium-check-section{
        margin-top:10px;
        padding-top:18px;
    }

    .seo-text-block + .premium-check-section::before{
        top:-10px;
        width:calc(100% - 24px);
    }
}
.seo-text-block{
    position:relative;
    padding:40px 20px 34px;
    background:transparent;
}

.seo-text-block .container{
    max-width:1240px;
    position:relative;
    z-index:2;
}

.seo-text-block__frame{
    position:relative;
    max-width:1080px;
    margin:0 auto;
    padding:26px;
    border-radius:28px;
    background:
        radial-gradient(circle at top left, rgba(76,120,240,0.06), transparent 28%),
        linear-gradient(180deg, #1f2a2e 0%, #182327 100%);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
    overflow:hidden;
}

.seo-text-block__frame::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:28px;
    border:1px solid rgba(255,255,255,0.05);
    pointer-events:none;
}

.seo-text-block__card{
    position:relative;
    z-index:1;
    max-width:920px;
    margin:0 auto;
    background:linear-gradient(180deg, #f8fafc 0%, #f2f4f7 100%);
    border:1px solid rgba(15,23,42,0.06);
    border-radius:24px;
    padding:26px 30px 24px;
    box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

.seo-text-block__kicker{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 12px;
    margin-bottom:12px;
    border-radius:999px;
    background:#e8efff;
    color:#2f63ea;
    font:700 11px/1 Roboto, sans-serif;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.seo-text-block h2{
    margin:0 0 16px;
    max-width:24ch;
    color:#101828;
    font-family:"Bebas Neue", sans-serif;
    font-size:clamp(1.7rem, 2.2vw, 2.7rem);
    line-height:1.02;
    letter-spacing:.01em;
    text-transform:uppercase;
}

.seo-text-block__content{
    max-width:820px;
}

.seo-text-block__content p{
    margin:0 0 14px;
    color:#475467;
    font:400 15px/1.75 Roboto, sans-serif;
}

.seo-text-block__content p:last-child{
    margin-bottom:0;
}

.seo-text-block__lead{
    color:#344054;
    font-size:15px;
}

.seo-text-block strong{
    color:#1d2939;
    font-weight:700;
}

.seo-text-block__topics{
    margin-top:18px;
    padding-top:14px;
    border-top:1px solid rgba(15,23,42,0.08);
}

.seo-text-block__topics-label{
    display:block;
    margin-bottom:10px;
    color:#344054;
    font:700 13px/1.4 Roboto, sans-serif;
}

.seo-text-block__links{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.seo-text-block__links a{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:0 12px;
    border-radius:999px;
    background:#ffffff;
    border:1px solid rgba(15,23,42,0.08);
    color:#1d2939;
    text-decoration:none;
    font:600 13px/1 Roboto, sans-serif;
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        color .18s ease,
        background-color .18s ease;
}

.seo-text-block__links a:hover{
    transform:translateY(-1px);
    border-color:#4c78f0;
    color:#2f63ea;
    background:#f9fbff;
    box-shadow:0 8px 18px rgba(15,23,42,0.05);
}

.seo-text-block + .premium-check-section{
    margin-top:18px;
    padding-top:28px;
}

.seo-text-block + .premium-check-section::before{
    content:"";
    position:absolute;
    top:-18px;
    left:50%;
    transform:translateX(-50%);
    width:min(1120px, calc(100% - 40px));
    height:1px;
    background:linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.10) 20%,
        rgba(255,255,255,0.10) 80%,
        rgba(255,255,255,0) 100%
    );
    pointer-events:none;
}

@media (max-width: 991.98px){
    .seo-text-block{
        padding:30px 16px 28px;
    }

    .seo-text-block__frame{
        padding:18px;
        border-radius:24px;
    }

    .seo-text-block__card{
        padding:22px 20px 20px;
        border-radius:20px;
    }

    .seo-text-block h2{
        max-width:100%;
        font-size:clamp(1.8rem, 5vw, 2.5rem);
    }
}

@media (max-width: 767.98px){
    .seo-text-block{
        padding:22px 12px 24px;
    }

    .seo-text-block__frame{
        padding:14px;
        border-radius:20px;
    }

    .seo-text-block__card{
        padding:18px 16px;
        border-radius:18px;
    }

    .seo-text-block h2{
        font-size:1.8rem;
        line-height:1.02;
        margin-bottom:12px;
    }

    .seo-text-block__content p{
        font-size:14px;
        line-height:1.7;
        margin-bottom:12px;
    }

    .seo-text-block__lead{
        font-size:14px;
    }

    .seo-text-block__links a{
        min-height:32px;
        padding:0 10px;
        font-size:12px;
    }
}
/* ========================================
   SEO CLEAN SECTION (MODERN PREMIUM)
======================================== */

.seo-text-clean{
    padding:56px 20px 48px;
    background:#f5f7fa; /* hell – trennt klar vom dunklen Bereich */
}

.seo-text-clean__inner{
    max-width:920px;
    margin:0 auto;
}

/* Kicker */
.seo-text-clean__kicker{
    display:inline-block;
    margin-bottom:12px;
    font:600 12px/1 Roboto, sans-serif;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#2f63ea;
}

/* Headline */
.seo-text-clean h2{
    margin:0 0 14px;
    font-family:"Bebas Neue", sans-serif;
    font-size:clamp(1.8rem, 2.5vw, 2.8rem);
    line-height:1.05;
    color:#101828;
    max-width:24ch;
}

/* Lead */
.seo-text-clean__lead{
    margin:0 0 18px;
    font:400 15px/1.75 Roboto, sans-serif;
    color:#344054;
}

/* Content */
.seo-text-clean__content p{
    margin:0 0 14px;
    font:400 15px/1.7 Roboto, sans-serif;
    color:#475467;
}

/* Strong */
.seo-text-clean strong{
    color:#1d2939;
}

/* Topics */
.seo-text-clean__topics{
    margin-top:18px;
    padding-top:14px;
    border-top:1px solid #e4e7ec;
}

.seo-text-clean__topics span{
    display:block;
    margin-bottom:10px;
    font:600 13px/1.4 Roboto, sans-serif;
    color:#344054;
}

/* Pills */
.seo-text-clean__links{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.seo-text-clean__links a{
    display:inline-flex;
    align-items:center;
    padding:6px 12px;
    border-radius:999px;
    font:500 13px/1 Roboto, sans-serif;
    background:#ffffff;
    border:1px solid #e4e7ec;
    color:#1d2939;
    text-decoration:none;

    transition:all .2s ease;
}

.seo-text-clean__links a:hover{
    border-color:#2f63ea;
    color:#2f63ea;
    background:#f9fbff;
    transform:translateY(-1px);
}
/* ========================================
   SEO CLEAN SECTION – MODERNER / PREMIUMER
======================================== */

.seo-text-clean{
    padding:56px 20px 48px;
    background:#f5f7fa;
}

.seo-text-clean__inner{
    max-width:940px;
    margin:0 auto;
    position:relative;
}

.seo-text-clean__kicker{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 12px;
    margin-bottom:14px;
    border-radius:999px;
    background:#e9f0ff;
    color:#2f63ea;
    font:700 11px/1 Roboto, sans-serif;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.seo-text-clean h2{
    margin:0 0 14px;
    max-width:22ch;
    font-family:"Bebas Neue", sans-serif;
    font-size:clamp(2rem, 2.7vw, 3.1rem);
    line-height:1;
    letter-spacing:.01em;
    color:#101828;
}

.seo-text-clean__lead{
    margin:0 0 18px;
    max-width:60ch;
    font:400 16px/1.8 Roboto, sans-serif;
    color:#344054;
}

.seo-text-clean__content{
    max-width:62ch;
}

.seo-text-clean__content p{
    margin:0 0 14px;
    font:400 15px/1.75 Roboto, sans-serif;
    color:#475467;
}

.seo-text-clean strong{
    color:#1d2939;
}

.seo-text-clean__topics{
    margin-top:22px;
    padding-top:16px;
    border-top:1px solid #e4e7ec;
}

.seo-text-clean__topics span{
    display:block;
    margin-bottom:10px;
    font:600 13px/1.4 Roboto, sans-serif;
    color:#344054;
}

.seo-text-clean__links{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    align-items:center;
}

.seo-text-clean__links a{
    display:inline-flex;
    align-items:center;
    min-height:36px;
    padding:0 13px;
    border-radius:999px;
    background:#ffffff;
    border:1px solid #e4e7ec;
    color:#1d2939;
    text-decoration:none;
    font:600 13px/1 Roboto, sans-serif;
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        color .18s ease,
        background-color .18s ease;
}

.seo-text-clean__links a:hover{
    transform:translateY(-1px);
    border-color:#2f63ea;
    color:#2f63ea;
    background:#f9fbff;
    box-shadow:0 8px 18px rgba(15,23,42,0.05);
}

/* Highlight-Link für Ratgeber */
.seo-text-clean__link-featured{
    background:linear-gradient(180deg, #fff7e8 0%, #fff1cc 100%) !important;
    border:1px solid #f2d08a !important;
    color:#8a5a00 !important;
    box-shadow:0 6px 16px rgba(138,90,0,0.08);
}

.seo-text-clean__link-featured:hover{
    background:linear-gradient(180deg, #fff9ee 0%, #fff3d7 100%) !important;
    border-color:#e3b95c !important;
    color:#7a4f00 !important;
    box-shadow:0 10px 20px rgba(138,90,0,0.12);
}
.seo-text-clean__links{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
}

.seo-text-clean__links a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding:0 16px;
    border-radius:999px;
    background:#ffffff;
    border:1px solid #e4e7ec;
    color:#1d2939;
    text-decoration:none;
    font:600 13px/1 Roboto, sans-serif;
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        color .18s ease,
        background-color .18s ease;
}

.seo-text-clean__links a:hover{
    transform:translateY(-1px);
    border-color:#2f63ea;
    color:#2f63ea;
    background:#f9fbff;
    box-shadow:0 8px 18px rgba(15,23,42,0.05);
}

/* Featured Link moderner und besser integriert */
.seo-text-clean__link-featured{
    background:linear-gradient(180deg, #fff8ea 0%, #fff2d6 100%) !important;
    border:1px solid #efc46d !important;
    color:#8c5a00 !important;
    box-shadow:0 8px 18px rgba(140,90,0,0.08);
    gap:8px;
    padding:0 18px !important;
}

.seo-text-clean__link-featured:hover{
    background:linear-gradient(180deg, #fffaf0 0%, #fff4dc 100%) !important;
    border-color:#e0b252 !important;
    color:#7a4f00 !important;
    box-shadow:0 10px 20px rgba(140,90,0,0.12);
}

.seo-text-clean__link-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:18px;
    height:18px;
    border-radius:999px;
    background:rgba(140,90,0,0.10);
    font-size:11px;
    line-height:1;
}
/* Featured Link – integriert + moderner */
.seo-text-clean__link-featured{
    background:rgba(47,99,234,0.08) !important;
    border:1px solid rgba(47,99,234,0.25) !important;
    color:#2f63ea !important;
    gap:8px;
    padding:0 18px !important;
}

.seo-text-clean__link-featured:hover{
    background:rgba(47,99,234,0.12) !important;
    border-color:#2f63ea !important;
    color:#1d4ed8 !important;
    transform:translateY(-1px);
    box-shadow:0 8px 18px rgba(47,99,234,0.15);
}

/* Icon moderner */
.seo-text-clean__link-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:18px;
    height:18px;
    border-radius:999px;
    background:rgba(47,99,234,0.15);
    font-size:11px;
}
.seo-text-clean__link-featured{
    font-weight:700;
}
.seo-text-clean{
    margin-bottom:80px;
}
/* DARK SEO BLOCK – isoliert & sicher */
.seo-text-block-dark {
  max-width: 720px;
  line-height: 1.7;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}

.seo-text-block-dark h3 {
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.seo-text-block-dark p {
  margin-bottom: 16px;
  color: rgba(255,255,255,0.85);
}

.seo-text-block-dark a {
  color: #6ea8ff;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.seo-text-block-dark a:hover {
  opacity: 0.8;
}

.seo-text-block-dark strong {
  color: #ffffff;
}
/* DARK SEO BLOCK – global sauber gelöst */
.seo-text-block--dark {
  color: rgba(255,255,255,0.92);
}

.seo-text-block--dark h2,
.seo-text-block--dark h3 {
  color: #ffffff;
}

.seo-text-block--dark p {
  color: rgba(255,255,255,0.85);
}

.seo-text-block--dark a {
  color: #6ea8ff;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.seo-text-block--dark a:hover {
  opacity: 0.8;
}

.seo-text-block--dark strong {
  color: #ffffff;
}
.home-costs-editorial{
  background:
    radial-gradient(circle at 12% 0%, rgba(217,242,85,.10), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(73,122,255,.10), transparent 24%),
    #f5f3ee;
}

.home-costs-editorial-head{
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.home-costs-editorial-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 28px;
  border-radius:999px;
  background:linear-gradient(180deg,#eef4ff 0%, #dde8ff 100%);
  color:#3f6df6;
  border:1px solid rgba(73,122,255,.10);
  box-shadow:0 14px 34px rgba(73,122,255,.10);
  font-family: var(--font-display, inherit);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.03em;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.home-costs-editorial-head h2{
  font-size: clamp(2.3rem, 4.5vw, 4.9rem);
  line-height: .92;
  letter-spacing: -.055em;
  margin: 18px 0 14px;
  color:#0b1533;
}

.home-costs-editorial-head p{
  max-width: 760px;
  margin: 0 auto;
  color:#667085;
  line-height:1.8;
  font-size:1.04rem;
}

.home-costs-editorial-layout{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 22px;
  align-items: stretch;
}

.home-costs-feature-main{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height: 580px;
  padding: 36px;
  border-radius: 36px;
  text-decoration:none;
  color:#fff;
  background:
    radial-gradient(circle at 12% 14%, rgba(217,242,85,.16), transparent 20%),
    radial-gradient(circle at 78% 20%, rgba(73,122,255,.24), transparent 28%),
    linear-gradient(135deg, #091327 0%, #0b1b46 52%, #071129 100%);
  box-shadow:
    0 34px 90px rgba(15,23,42,.22),
    inset 0 1px 0 rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

.home-costs-feature-main::after{
  content:"";
  position:absolute;
  inset:auto -80px -120px auto;
  width:260px;
  height:260px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(73,122,255,.18), transparent 68%);
  pointer-events:none;
}

.home-costs-feature-main:hover{
  color:#fff;
  transform:translateY(-4px);
}

.home-costs-feature-label{
  display:inline-flex;
  width:max-content;
  min-height:40px;
  align-items:center;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  font-size:.84rem;
  font-weight:800;
  letter-spacing:-.02em;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.home-costs-feature-main h3{
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
  line-height: .92;
  letter-spacing: -.06em;
  margin: 22px 0 16px;
  color:#fff;
  max-width: 10ch;
}

.home-costs-feature-main p{
  max-width: 54ch;
  color: rgba(255,255,255,.80);
  line-height: 1.82;
  font-size: 1.03rem;
}

.home-costs-feature-points{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.home-costs-feature-points a,
.home-costs-feature-points span{
  display:inline-flex;
  min-height:42px;
  align-items:center;
  padding:0 16px;
  border-radius:999px;
  background:linear-gradient(135deg, #ff9a3d, #f56900);
  border:1px solid rgba(245,105,0,.35);
  color:#ffffff;
  box-shadow:0 14px 30px rgba(245,105,0,.28);
  font-family: var(--font-display, inherit);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.03em;
  font-size: .95rem;
}

.home-costs-feature-points a{
  text-decoration:none;
}

.home-costs-feature-points a:hover{
  color:#ffffff;
  transform:translateY(-1px);
}

.home-costs-feature-cta{
  margin-top:30px;
  display:flex;
  align-items:center;
  gap:8px;
  color:#d9f255;
  font-weight:800;
  letter-spacing:-.02em;
  font-size:1.02rem;
}

.home-costs-side-list{
  display:grid;
  gap:18px;
}

.home-costs-side-item{
  position:relative;
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  padding:26px;
  border-radius:28px;
  text-decoration:none;
  color:#0f172a;
  background:
    radial-gradient(circle at top right, rgba(217,242,85,.15), transparent 22%),
    radial-gradient(circle at left bottom, rgba(73,122,255,.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 18px 44px rgba(15,23,42,.06);
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.home-costs-side-item:hover{
  transform:translateY(-4px);
  color:#0f172a;
  box-shadow:0 26px 50px rgba(15,23,42,.10);
  border-color:rgba(73,122,255,.14);
}

.home-costs-side-topic{
  display:inline-flex;
  min-height:34px;
  align-items:center;
  padding:0 12px;
  border-radius:999px;
  background:linear-gradient(180deg,#eef4ff 0%, #dde8ff 100%);
  color:#284ea9;
  box-shadow:0 8px 18px rgba(73,122,255,.08);
  font-family: var(--font-display, inherit);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.03em;
  font-size: .84rem;
  margin-bottom:12px;
}

.home-costs-side-item strong{
  display:block;
  font-size:1.42rem;
  line-height:1.12;
  letter-spacing:-.035em;
  margin-bottom:10px;
  color:#0f172a;
}

.home-costs-side-item p{
  margin:0;
  color:#667085;
  line-height:1.68;
}

.home-costs-side-arrow{
  flex-shrink:0;
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#091327 0%, #0d1e4f 100%);
  color:#fff;
  box-shadow:0 14px 28px rgba(15,23,42,.16);
}

.home-costs-editorial-bottom{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

@media (max-width: 1199.98px){
  .home-costs-editorial-layout{
    grid-template-columns: 1fr;
  }

  .home-costs-feature-main{
    min-height: 470px;
  }
}

@media (max-width: 767.98px){
  .home-costs-feature-main{
    padding:24px;
    min-height:auto;
  }

  .home-costs-feature-main h3{
    max-width:100%;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .home-costs-side-item{
    padding:20px;
  }

  .home-costs-side-item strong{
    font-size:1.18rem;
  }

  .home-costs-editorial-kicker{
    min-height:46px;
    padding:0 20px;
    font-size:1rem;
  }

.home-costs-feature-points a,
  .home-costs-feature-points span,
  .home-costs-side-topic{
    font-size:.82rem;
  }
}

/* =========================================================
   MODERN FUNNEL WIDTH + CARD OVERRIDES
   mirrored from 365-funnel-modern-test for wider premium funnels
========================================================= */
.privat-funnel-shell {
  background:
    radial-gradient(circle at top right, rgba(85, 152, 220, 0.08), transparent 28%),
    radial-gradient(circle at 14% 118%, rgba(240, 138, 56, 0.10), transparent 25%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
  border: 1px solid rgba(20, 53, 86, 0.08);
  border-radius: 38px;
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.privat-progress-wrap {
  margin-bottom: 30px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 32, 44, 0.06);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
}

.privat-progress-head {
  align-items: center;
  margin-bottom: 14px;
  font-size: 13px;
}

.privat-progress-stage,
.privat-progress-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(247, 250, 253, 0.96);
  border: 1px solid rgba(18, 32, 44, 0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.98);
}

.privat-progress-stage {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b6fb8;
}

.privat-progress-status {
  gap: 4px;
  color: #4c6177;
  font-weight: 600;
}

.privat-progress-bar {
  height: 12px;
  margin-bottom: 14px;
  background: linear-gradient(180deg, rgba(18, 32, 44, 0.06), rgba(18, 32, 44, 0.03));
}

.privat-progress-bar span {
  background: linear-gradient(135deg, #2b6aa0 0%, #1b86cf 62%, #f08a38 100%);
  box-shadow:
    0 10px 24px rgba(43, 106, 160, 0.24),
    0 0 0 1px rgba(255,255,255,0.28) inset;
}

.privat-progress-dots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.privat-progress-dots span {
  width: auto;
  height: auto;
  min-height: 56px;
  border-radius: 18px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 3px;
  background: rgba(244, 247, 251, 0.82);
  border: 1px solid rgba(18, 32, 44, 0.06);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.privat-progress-dots span strong {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1;
  color: #1b3550;
}

.privat-progress-dots span small {
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.2;
  color: #657789;
}

.privat-progress-dots span.is-active {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(243,249,255,0.96) 100%);
  border-color: rgba(43, 106, 160, 0.16);
  box-shadow: 0 18px 32px rgba(43, 106, 160, 0.10);
  transform: translateY(-2px);
}

.privat-progress-dots span.is-active strong {
  color: #0b6fb8;
}

.privat-funnel-main,
.privat-summary-card,
.privat-side-note {
  border-radius: 30px;
  border: 1px solid rgba(18, 32, 44, 0.07);
  box-shadow:
    0 20px 46px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.privat-funnel-main {
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(113, 185, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,251,255,0.96) 100%);
}

.privat-funnel-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.privat-funnel-side {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
  align-items: start;
}

.step-copy {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(18, 32, 44, 0.06);
}

.step-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 10px;
}

.step-copy p {
  font-size: 16px;
  line-height: 1.72;
  max-width: 54ch;
}

.privat-option-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  border: 1px solid rgba(18, 32, 44, 0.08);
  background:
    radial-gradient(circle at top right, rgba(107, 171, 234, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-radius: 28px;
  min-height: 148px;
  padding: 24px 22px 22px;
  box-shadow:
    0 16px 30px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255,255,255,0.96);
  overflow: hidden;
  isolation: isolate;
}

.privat-option-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.36), transparent 46%);
  pointer-events: none;
}

.privat-option-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(240, 138, 56, 0.62), rgba(14, 111, 184, 0.16));
  opacity: 0.34;
  transform: scaleX(0.52);
  transform-origin: left center;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.privat-option-card:hover,
.privat-option-card.is-selected {
  border-color: rgba(43, 106, 160, 0.24);
  box-shadow:
    0 24px 44px rgba(15, 23, 42, 0.08),
    0 10px 20px rgba(43, 106, 160, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.98);
  transform: translateY(-4px);
}

.privat-option-card.is-selected {
  background:
    radial-gradient(circle at top right, rgba(111, 187, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
}

.privat-option-card:hover::after,
.privat-option-card.is-selected::after {
  opacity: 1;
  transform: scaleX(1);
}

.option-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin-bottom: 4px;
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(14, 111, 184, 0.12), rgba(240, 138, 56, 0.14));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 10px 22px rgba(14, 111, 184, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.option-icon iconify-icon {
  font-size: 24px;
}

.privat-option-card:hover .option-icon,
.privat-option-card.is-selected .option-icon {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, rgba(14, 111, 184, 0.16), rgba(240, 138, 56, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 16px 26px rgba(14, 111, 184, 0.10);
}

.privat-option-card strong {
  font-family: var(--font-headline);
  font-size: 21px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 15ch;
}

.privat-option-card small {
  font-size: 14.5px;
  line-height: 1.58;
  color: #718194;
  max-width: 28ch;
}

.step-tip {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(43, 106, 160, 0.06), rgba(240, 138, 56, 0.06));
  border: 1px solid rgba(18, 32, 44, 0.05);
}

.privat-contact-card {
  margin-top: 24px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(111, 187, 255, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.96);
}

.contact-card-head h4 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.privat-contact-grid input {
  height: 60px;
  border-radius: 20px;
  border-color: rgba(18, 32, 44, 0.10);
  background: rgba(255,255,255,0.98);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.96);
}

.privat-step-actions {
  margin-top: 26px;
}

.privat-back,
.privat-submit {
  min-height: 54px;
  padding: 0 24px;
  font-family: var(--font-ui);
  font-size: 15px;
  letter-spacing: -0.01em;
}

.privat-summary-card {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(111, 187, 255, 0.10), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  position: static;
  top: auto;
}

.summary-kicker,
.funnel-info-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(247, 153, 78, 0.10);
  color: #be6b24;
  border: 1px solid rgba(240, 138, 56, 0.12);
}

.privat-summary-card h4 {
  margin-top: 12px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(26px, 2vw, 30px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.summary-line {
  padding: 14px 0;
}

.summary-line strong {
  font-family: var(--font-ui);
}

.summary-note {
  margin-top: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(43, 106, 160, 0.08), rgba(240, 138, 56, 0.08));
}

.summary-checklist {
  margin-top: 20px;
  padding-top: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.funnel-info-box {
  margin-top: 0;
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(248,250,253,0.98) 100%);
  border: 1px solid rgba(18, 32, 44, 0.06);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}

.funnel-info-box h4 {
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #13253b;
}

.funnel-info-box p {
  line-height: 1.68;
}

.funnel-info-points {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.funnel-info-points div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.55;
  color: #516477;
}

.funnel-info-points iconify-icon {
  margin-top: 2px;
  font-size: 16px;
  color: #f08a38;
}

.privat-success-card {
  border-radius: 30px;
  box-shadow:
    0 28px 58px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.98);
}

@media (max-width: 991.98px) {
  .privat-funnel-side {
    grid-template-columns: 1fr;
  }

  .privat-progress-dots {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .privat-progress-dots span {
    min-height: 52px;
    padding: 9px 10px;
  }

  .privat-progress-dots span small {
    font-size: 10.5px;
  }

  .privat-funnel-main {
    padding: 24px;
  }

  .summary-checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .privat-funnel-section {
    overflow: hidden;
  }

  .privat-funnel-topbar {
    gap: 16px;
    margin-bottom: 18px;
  }

  .privat-funnel-intro h2 {
    font-size: clamp(32px, 11vw, 44px);
    line-height: 0.98;
    letter-spacing: -0.05em;
  }

  .privat-funnel-intro p {
    font-size: 15px;
    line-height: 1.68;
  }

  .privat-funnel-trust {
    gap: 8px;
  }

  .trust-pill {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
    letter-spacing: 0.03em;
  }

  .privat-funnel-shell {
    border-radius: 28px;
    padding: 22px 14px;
  }

  .privat-progress-wrap {
    padding: 14px 12px 12px;
    border-radius: 18px;
  }

  .privat-progress-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .privat-progress-stage,
  .privat-progress-status {
    min-height: 32px;
    padding: 0 12px;
    font-size: 10.5px;
  }

  .privat-progress-dots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .privat-progress-dots span {
    min-height: 44px;
    flex-direction: row;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
  }

  .privat-progress-dots span strong {
    font-size: 13px;
  }

  .privat-progress-dots span small {
    font-size: 10px;
  }

  .privat-funnel-main,
  .privat-summary-card,
  .privat-side-note,
  .funnel-info-box,
  .privat-contact-card,
  .privat-success-card {
    border-radius: 22px;
  }

  .step-copy h3 {
    font-size: clamp(23px, 7.2vw, 31px);
    margin-bottom: 8px;
  }

  .step-copy p,
  .funnel-info-box p {
    font-size: 15px;
    line-height: 1.66;
  }

  .privat-option-card {
    min-height: 132px;
    padding: 18px 15px 16px;
    border-radius: 22px;
    gap: 10px;
  }

  .privat-option-card strong {
    font-size: 18px;
    max-width: none;
  }

  .privat-option-card small {
    font-size: 13.5px;
    line-height: 1.52;
    max-width: none;
  }

  .option-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .option-icon iconify-icon {
    font-size: 21px;
  }

  .option-badge {
    top: 12px;
    right: 12px;
    padding: 5px 9px;
    font-size: 10px;
  }

  .step-tip {
    margin-top: 14px;
    padding: 14px 14px;
    border-radius: 18px;
    font-size: 13.5px;
  }

  .privat-funnel-side {
    margin-top: 16px;
    gap: 14px;
  }

  .privat-summary-card {
    padding: 18px 16px;
  }

  .privat-summary-card h4 {
    font-size: clamp(24px, 8vw, 30px);
    line-height: 0.98;
  }

  .summary-line {
    padding: 10px 0;
  }

  .summary-line span,
  .summary-line strong {
    font-size: 14px;
  }

  .summary-note {
    padding: 12px 12px;
    border-radius: 16px;
    font-size: 13px;
  }

  .summary-checklist {
    gap: 8px;
  }

  .summary-checklist div {
    font-size: 13px;
    line-height: 1.5;
  }

  .funnel-info-box {
    padding: 18px 16px;
  }

  .funnel-info-box h4 {
    font-size: clamp(24px, 8vw, 31px);
    line-height: 0.98;
  }

  .funnel-info-points {
    gap: 10px;
  }

  .funnel-info-points div {
    font-size: 13px;
    line-height: 1.48;
  }

  .privat-contact-card {
    margin-top: 18px;
    padding: 18px 16px;
  }

  .contact-card-head h4 {
    font-size: clamp(25px, 8vw, 31px);
    line-height: 0.98;
  }

  .contact-card-head p {
    font-size: 14px;
    line-height: 1.6;
  }

  .privat-contact-grid {
    gap: 10px;
  }

  .privat-contact-grid input {
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
  }

  .privat-checkbox {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.55;
  }

  .privat-step-actions {
    gap: 10px;
    margin-top: 16px;
  }

  .privat-submit,
  .privat-back {
    min-height: 52px;
    border-radius: 16px;
    font-size: 14px;
  }

  .privat-success-card {
    padding: 22px 16px;
  }

  .privat-success-card h3 {
    font-size: clamp(28px, 9vw, 34px);
    line-height: 0.98;
  }
}

@media (min-width: 1200px) {
  .privat-funnel-container {
    max-width: 1640px;
  }

  .privat-funnel-grid {
    grid-template-columns: minmax(0, 1.78fr) minmax(300px, 0.58fr);
    gap: 20px;
    align-items: start;
  }

  .privat-funnel-side {
    display: block;
  }

  .privat-summary-card {
    position: sticky;
    top: 110px;
    padding: 22px;
  }

  .funnel-info-box {
    margin-top: 18px;
    padding: 18px;
  }

  .summary-checklist {
    grid-template-columns: 1fr;
  }

  .privat-option-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privat-option-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .privat-option-card {
    min-height: 174px;
    padding: 25px 24px;
  }

  .privat-option-card strong {
    font-size: 22px;
  }

  .privat-option-card small {
    font-size: 15px;
  }
}





