/* css/ki-potenzial.css – KI-Potenzial page — Dark Navy Edition */

body { background: #080f20; }

/* Suppress base.css hairline between consecutive band sections */
section.band + section.band { border-top: none; }

/* ── Hero ──────────────────────────────────────────────────────── */
.pot-hero {
  display: flex;
  align-items: center;
  min-height: 72vh;
  background:
    radial-gradient(ellipse 55% 60% at 75% 30%, rgba(30, 90, 210, 0.28) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 5% 80%, rgba(12, 50, 140, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #060d1c 0%, #080f20 100%);
  padding: var(--s-section) 0;
  overflow: hidden;
}

.pot-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xxl);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── Hero: Text-Spalte ─────────────────────────────────────────── */
.pot-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-xl);
}

.pot-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--s-xs);
  background:
    linear-gradient(rgba(8, 18, 50, 0.88), rgba(8, 18, 50, 0.88)) padding-box,
    conic-gradient(
      from var(--kicker-angle),
      rgba(201, 139, 58, 0.18) 0deg,
      rgba(201, 139, 58, 0.18) 270deg,
      rgba(201, 139, 58, 0.85) 292deg,
      rgba(255, 215, 70, 1.0)  315deg,
      rgba(201, 139, 58, 0.85) 338deg,
      rgba(201, 139, 58, 0.18) 358deg,
      rgba(201, 139, 58, 0.18) 360deg
    ) border-box;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  padding: 0 var(--s-md);
  height: 36px;
  animation: kicker-border-spin 2.8s linear infinite;
}

.pot-hero-kicker span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(160, 200, 255, 0.9);
}

.pot-hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.06;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin: 0;
}

.pot-hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: rgba(180, 210, 255, 0.72);
  margin: 0;
  max-width: 44ch;
}

.pot-hero-sub strong {
  color: #ffffff;
  font-weight: 600;
}

.pot-hero-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-md);
}

/* ── Trust Chips ───────────────────────────────────────────────── */
.pot-hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  padding-top: var(--s-xs);
}

.pot-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(140, 185, 255, 0.65);
  letter-spacing: 0.1px;
}

.pot-trust-chip svg {
  color: rgba(90, 173, 255, 0.7);
  flex-shrink: 0;
}

.pot-trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(90, 173, 255, 0.25);
  flex-shrink: 0;
}

/* ── Hero: Visual-Spalte ───────────────────────────────────────── */
.pot-hero-visual {
  display: flex;
  justify-content: center;
}

/* ── Dashboard Visual ──────────────────────────────────────────── */
.pot-dashboard {
  width: 100%;
  max-width: 560px;
  background: rgba(6, 12, 36, 0.72);
  border: 1px solid rgba(80, 140, 255, 0.22);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(80, 140, 255, 0.06),
    0 0 80px rgba(30, 90, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pot-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--s-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  gap: var(--s-md);
}

.pot-dash-header-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pot-dash-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(210, 225, 255, 0.9);
  letter-spacing: 0.2px;
}

.pot-dash-subtitle {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(130, 155, 210, 0.5);
  letter-spacing: 0.1px;
}

.pot-dash-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(74, 122, 92, 0.14);
  border: 1px solid rgba(74, 122, 92, 0.32);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: rgba(150, 210, 155, 0.9);
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.pot-dash-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5acc7a;
  box-shadow: 0 0 6px rgba(90, 204, 122, 0.8);
  animation: pot-blink 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pot-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(90, 204, 122, 0.8); }
  50%       { opacity: 0.35; box-shadow: none; }
}

.pot-dash-body {
  padding: var(--s-xl);
  display: flex;
  flex-direction: column;
  gap: var(--s-lg);
}

.pot-meter-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pot-meter-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-sm);
}

.pot-meter-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(195, 215, 255, 0.82);
  letter-spacing: 0.1px;
}

.pot-meter-value {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: rgba(140, 200, 255, 0.95);
  letter-spacing: 0.6px;
  flex-shrink: 0;
}

.pot-meter-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.pot-meter-fill {
  height: 100%;
  width: 0;
  border-radius: 4px;
  background-image:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.22) 50%, transparent 100%),
    linear-gradient(90deg, rgba(42, 100, 220, 0.95) 0%, rgba(88, 178, 255, 1) 100%);
  background-size: 40% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: -40% center, 0 0;
  box-shadow: 0 0 14px rgba(70, 150, 255, 0.55);
  animation:
    pot-bar-grow 0.9s cubic-bezier(0.22, 0, 0.18, 1) var(--delay, 0s) both,
    pot-shimmer 3s ease-in-out calc(var(--delay, 0s) + 1s) infinite;
}

@keyframes pot-bar-grow {
  from { width: 0; }
  to   { width: var(--w, 0); }
}

@keyframes pot-shimmer {
  0%   { background-position: -40% center, 0 0; }
  100% { background-position: 150% center, 0 0; }
}

.pot-dash-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--s-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  gap: var(--s-md);
}

.pot-dash-footnote {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(130, 155, 210, 0.45);
  line-height: 1.4;
}

.pot-dash-avg {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.pot-avg-ring {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.pot-avg-arc {
  filter: drop-shadow(0 0 4px rgba(80, 160, 255, 0.65));
  animation: pot-ring-fill 1.3s cubic-bezier(0.22, 0, 0.18, 1) 1.1s both;
}

@keyframes pot-ring-fill {
  from { stroke-dashoffset: 94.25; }
  to   { stroke-dashoffset: 30.16; }
}

.pot-dash-total {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: rgba(150, 200, 255, 0.95);
  letter-spacing: 0.5px;
}

/* ── Section-Hintergründe — alternierend Dark Navy ─────────────── */
.pot-chat-section     { background: #0d1628; }
.pot-bereiche-section { background: #080f20; }
.pot-zahlen-section   { background: #0d1628; }
.pot-prozess-section {
  background:
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(20, 60, 160, 0.1) 0%, transparent 60%),
    #080f20;
  background-image:
    radial-gradient(rgba(90, 173, 255, 0.05) 1px, transparent 1px),
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(20, 60, 160, 0.1) 0%, transparent 60%);
  background-size: 32px 32px, 100% 100%;
  background-color: #080f20;
}
.pot-tns-section      { background: #0d1628; }
.pot-cta-section {
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(20, 75, 200, 0.18) 0%, transparent 65%),
    #080f20;
}

/* ── Section-Head Textfarben auf Dark ─────────────────────────── */
.pot-chat-section .section-head .cap-u,
.pot-bereiche-section .section-head .cap-u,
.pot-zahlen-section .section-head .cap-u,
.pot-tns-section .section-head .cap-u {
  color: #5aadff;
}

.pot-chat-section .section-head h2,
.pot-chat-section .section-head .d-lg,
.pot-bereiche-section .section-head h2,
.pot-bereiche-section .section-head .d-lg,
.pot-zahlen-section .section-head h2,
.pot-zahlen-section .section-head .d-lg,
.pot-tns-section .section-head h2,
.pot-tns-section .section-head .d-lg {
  color: var(--on-dark);
}

.pot-chat-section .section-head p,
.pot-chat-section .section-head .b-md,
.pot-bereiche-section .section-head p,
.pot-bereiche-section .section-head .b-md,
.pot-zahlen-section .section-head p,
.pot-zahlen-section .section-head .b-md,
.pot-tns-section .section-head p,
.pot-tns-section .section-head .b-md {
  color: var(--on-dark-soft);
}

/* ── Section-Head Zentrierung ──────────────────────────────────── */
.pot-chat-section .section-head,
.pot-bereiche-section .section-head,
.pot-zahlen-section .section-head {
  text-align: center;
}

.pot-chat-section .section-head .b-md,
.pot-bereiche-section .section-head .b-md,
.pot-zahlen-section .section-head .b-md {
  margin-left: auto;
  margin-right: auto;
}

/* ── Feature-Cards (Bereiche — Dark Navy) ─────────────────────── */
.pot-bereiche-section .feature-card {
  background: rgba(90, 173, 255, 0.04);
  border: 1px solid rgba(90, 173, 255, 0.12);
}

.pot-bereiche-section .feature-card .icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(90, 173, 255, 0.1);
  border: 1px solid rgba(90, 173, 255, 0.25);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5aadff;
  flex-shrink: 0;
}

.pot-bereiche-section .feature-card .icon-wrap svg {
  width: 22px;
  height: 22px;
}

.pot-bereiche-section .feature-card h4 { color: var(--on-dark); }
.pot-bereiche-section .feature-card p  { color: var(--on-dark-soft); }

/* ── Zahlen-Cards (Dark Navy) ──────────────────────────────────── */
.pot-zahlen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-md);
}

.pot-zahl-card {
  background: rgba(20, 45, 100, 0.18);
  border: 1px solid rgba(90, 173, 255, 0.1);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}

.pot-zahl-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -1px;
  color: #5aadff;
}

.pot-zahl-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--on-dark);
  margin: 0;
  line-height: 1.4;
}

.pot-zahl-desc {
  font-size: 14px;
  color: var(--on-dark-soft);
  margin: 0;
  line-height: 1.55;
}

/* ── Prozess-Section ───────────────────────────────────────────── */
/* ── Prozess: Head ─────────────────────────────────────────────── */
.pot-prozess-head {
  margin-bottom: 72px;
  text-align: center;
}

.pot-prozess-head .cap-u {
  color: #5aadff;
  display: block;
  margin-bottom: var(--s-sm);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pot-prozess-head .d-lg {
  color: var(--on-dark);
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease 0.12s, transform 0.6s ease 0.12s;
}

.pot-prozess-head.in-view .cap-u,
.pot-prozess-head.in-view .d-lg {
  opacity: 1;
  transform: translateY(0);
}

/* ── Prozess: Grid ─────────────────────────────────────────────── */
.pot-prozess-grid {
  display: flex;
  flex-direction: column;
  gap: var(--s-xl);
  position: relative;
}

/* ── Prozess: Item ─────────────────────────────────────────────── */
.pot-prozess-item {
  display: flex;
  flex-direction: row;
  gap: var(--s-lg);
  align-items: flex-start;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pot-prozess-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Icon Box ──────────────────────────────────────────────────── */
.pot-step-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  background: #0c1d52;
  border: 1px solid rgba(90, 173, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #5aadff;
  position: relative;
  /* Kein z-index — natürliche DOM-Reihenfolge stellt Icons über ::before-Linie */
  transition: border-color 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

/* HUD-Eckenmarkierungen */
.pot-step-icon-wrap::before,
.pot-step-icon-wrap::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
  transition: opacity 0.4s ease 0.4s;
}

.pot-step-icon-wrap::before {
  top: -3px;
  left: -3px;
  border-top: 1.5px solid rgba(90, 173, 255, 0.75);
  border-left: 1.5px solid rgba(90, 173, 255, 0.75);
  border-radius: 3px 0 0 0;
}

.pot-step-icon-wrap::after {
  bottom: -3px;
  right: -3px;
  border-bottom: 1.5px solid rgba(90, 173, 255, 0.75);
  border-right: 1.5px solid rgba(90, 173, 255, 0.75);
  border-radius: 0 0 3px 0;
}

.pot-prozess-item.in-view .pot-step-icon-wrap::before,
.pot-prozess-item.in-view .pot-step-icon-wrap::after {
  opacity: 1;
}

.pot-step-icon-wrap:hover {
  border-color: rgba(90, 173, 255, 0.55);
  background: #122468;
  box-shadow:
    0 0 0 1px rgba(90, 173, 255, 0.1),
    0 0 20px rgba(90, 173, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pot-step-icon-wrap svg {
  width: 26px;
  height: 26px;
}

/* ── Step Body ─────────────────────────────────────────────────── */
.pot-step-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
}

.pot-step-number {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(90, 173, 255, 0.55);
}

.pot-step-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 19px;
  color: var(--on-dark);
  margin: 0 0 2px;
  line-height: 1.25;
}

.pot-step-desc {
  font-size: 15px;
  color: rgba(150, 182, 228, 0.62);
  margin: 0;
  line-height: 1.72;
}

/* ── Testimonial (Dark Quote-Card) ──────────────────────────────── */
.testimonial {
  background: rgba(20, 45, 100, 0.18);
  border: 1px solid rgba(90, 173, 255, 0.1);
  border-radius: var(--r-lg);
  padding: var(--s-lg) var(--s-xl) var(--s-xl);
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-mark {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.9;
  color: #5aadff;
  opacity: 0.4;
  display: block;
  margin-bottom: var(--s-sm);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.3px;
  color: var(--on-dark);
  margin: 0 0 var(--s-lg);
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
}

.testimonial-footer::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: #5aadff;
  flex-shrink: 0;
}

.testimonial-avatar { display: none; }

.testimonial-name {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}

.testimonial-role {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--on-dark-soft);
  opacity: 0.7;
}

/* ── CTA-Section ───────────────────────────────────────────────── */
.pot-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pot-cta-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 56px;
  letter-spacing: -2px;
  color: #ffffff;
  margin: 0 0 var(--s-xl);
  line-height: 1.02;
}

.pot-cta-sub {
  font-size: 18px;
  color: rgba(243, 243, 238, 0.8);
  margin: 0 0 var(--s-xxl);
  max-width: 44ch;
  line-height: 1.6;
}

.pot-cta-sub strong {
  color: #ffffff;
  font-weight: 700;
}

.pot-cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
  align-items: center;
  margin-bottom: var(--s-xl);
}

.pot-cta-hint {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(243, 243, 238, 0.28);
  margin: 0;
  letter-spacing: 0.5px;
}

/* ── Chat-Section (Dark Navy) ──────────────────────────────────── */
.pot-chat-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.pot-chat-container {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  background:
    linear-gradient(rgba(6, 12, 36, 0.6), rgba(6, 12, 36, 0.6)) padding-box,
    conic-gradient(from var(--btn-angle),
      rgba(90, 173, 255, 0.18) 0deg,
      rgba(90, 173, 255, 0.18) 250deg,
      rgba(255, 215, 70, 0.9) 315deg,
      rgba(90, 173, 255, 0.18) 360deg) border-box;
  border: 1.5px solid transparent;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: btn-gold-spin 4s linear infinite;
}

.pot-chat-messages {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
  padding: var(--s-xl);
  min-height: 260px;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.pot-chat-msg {
  min-width: 0;
  display: flex;
  gap: var(--s-sm);
  align-items: flex-end;
}

.pot-chat-msg--user { flex-direction: row-reverse; }

.pot-chat-avatar--logo {
  background: transparent;
  border-color: rgba(90, 173, 255, 0.2);
  overflow: hidden;
  padding: 0;
}

.pot-chat-avatar--logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pot-chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(90, 173, 255, 0.15);
  border: 1px solid rgba(90, 173, 255, 0.3);
  color: #5aadff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

.pot-chat-bubble {
  max-width: 72%;
  padding: var(--s-sm) var(--s-md);
  border-radius: var(--r-lg);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.pot-chat-msg--ai .pot-chat-bubble {
  background: rgba(20, 45, 100, 0.35);
  border: 1px solid rgba(90, 173, 255, 0.12);
  border-bottom-left-radius: var(--r-xs);
  color: var(--on-dark);
}

.pot-chat-bubble a {
  color: #5aadff;
  text-decoration: underline;
  word-break: break-word;
}

.pot-chat-bubble a:hover {
  color: #8cc6ff;
}

.pot-chat-msg--user .pot-chat-bubble {
  background: rgba(90, 173, 255, 0.16);
  border: 1px solid rgba(90, 173, 255, 0.25);
  border-bottom-right-radius: var(--r-xs);
  color: var(--on-dark);
}

.pot-chat-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: var(--s-md) var(--s-lg);
  min-width: 56px;
}

.pot-chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(90, 173, 255, 0.4);
  animation: pot-typing 1.2s ease-in-out infinite;
}

.pot-chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.pot-chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes pot-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30%           { transform: translateY(-6px); opacity: 1; }
}

.pot-chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-xs);
  padding: 0 var(--s-xl) var(--s-md);
}

.pot-suggestion-btn {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 var(--s-md);
  border-radius: var(--r-pill);
  border: 1px solid rgba(90, 173, 255, 0.2);
  background: rgba(90, 173, 255, 0.06);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #5aadff;
  cursor: pointer;
  transition: background 120ms, border-color 120ms;
}

.pot-suggestion-btn:hover {
  background: rgba(90, 173, 255, 0.12);
  border-color: rgba(90, 173, 255, 0.4);
}

.pot-chat-form {
  display: flex;
  gap: var(--s-sm);
  padding: var(--s-md) var(--s-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.pot-chat-input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--on-dark);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(90, 173, 255, 0.2);
  border-radius: var(--r-md);
  padding: 0 var(--s-md);
  height: 44px;
  outline: none;
  transition: border-color 120ms, box-shadow 120ms;
}

.pot-chat-input:focus {
  border-color: rgba(90, 173, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(90, 173, 255, 0.08);
}

.pot-chat-input::placeholder {
  color: rgba(90, 173, 255, 0.35);
}

.pot-chat-send {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  border: 1px solid rgba(90, 173, 255, 0.3);
  background: rgba(90, 173, 255, 0.12);
  color: #5aadff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 120ms, transform 120ms;
}

.pot-chat-send:hover { background: rgba(90, 173, 255, 0.22); }
.pot-chat-send:active { transform: scale(0.95); }

/* ── Responsive: Tablet (≥ 720px) ─────────────────────────────── */
@media (min-width: 720px) {
  .pot-hero-headline {
    font-size: 56px;
    letter-spacing: -2px;
  }

  .pot-hero-cta-buttons {
    flex-direction: row;
  }

  .pot-zahlen-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pot-cta-actions {
    flex-direction: row;
    justify-content: center;
  }

  .pot-cta-headline {
    font-size: 72px;
    letter-spacing: -2.5px;
  }
}

/* ── Responsive: Desktop (≥ 1024px) ───────────────────────────── */
@media (min-width: 1024px) {
  /* Hero 2-Spalten-Layout */
  .pot-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .pot-hero-content {
    align-items: flex-start;
    text-align: left;
  }

  .pot-hero-trust {
    justify-content: flex-start;
  }

  .pot-hero-headline {
    font-size: 64px;
    letter-spacing: -2.5px;
  }

  .pot-hero-visual {
    justify-content: flex-end;
  }

  .pot-zahlen-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Prozess: 3-Spalten-Flex */
  .pot-prozess-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  /* Durchgehende Verbindungslinie — hinter Icons (kein z-index, natürliche Reihenfolge) */
  .pot-prozess-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: rgba(90, 173, 255, 0.28);
    box-shadow: 0 0 8px rgba(90, 173, 255, 0.35), 0 0 20px rgba(90, 173, 255, 0.12);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  }

  .pot-prozess-grid.in-view::before {
    transform: scaleX(1);
  }

  /* Scan-Punkt der über die Linie gleitet */
  .pot-prozess-grid::after {
    content: '';
    position: absolute;
    top: 36px;
    left: 40px;
    width: 60px;
    height: 9px;
    background: radial-gradient(ellipse at center, rgba(90, 173, 255, 0.85) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(1.5px);
    opacity: 0;
    animation: pot-scan 3.8s ease-in-out infinite;
  }

  .pot-prozess-grid.in-view::after {
    animation-delay: 1.4s;
    opacity: 1;
  }

  @keyframes pot-scan {
    0%   { transform: translateX(0);    opacity: 0; }
    6%   { opacity: 1; }
    88%  { opacity: 0.7; }
    100% { transform: translateX(var(--scan-width, 900px)); opacity: 0; }
  }

  .pot-prozess-item {
    flex: 1;
    flex-direction: column;
    gap: var(--s-lg);
    min-width: 0;
    padding-right: var(--s-xxl);
  }

  .pot-prozess-item:last-child {
    padding-right: 0;
  }

  .pot-step-body {
    padding-top: 0;
  }

  .pot-cta-headline {
    font-size: 88px;
    letter-spacing: -3px;
  }
}
