/* Contact page base styles shared with the English version. */
/* Lead-Form Skin im Swiss-Marketer Stil */
.lead-form-shell {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 clamp(64px, 10vw, 144px);
  overflow: hidden;
}
.lead-form-shell::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 60% at 0% 0%, rgba(220, 0, 24, 0.06), transparent 60%),
    radial-gradient(50% 50% at 100% 100%, rgba(10, 10, 10, 0.04), transparent 60%),
    var(--paper);
}

.lead-hero {
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 56px);
  text-align: center;
  padding: 0 var(--gutter);
}
.lead-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--swiss-red);
  font-weight: 600;
  margin-bottom: 20px;
}
.lead-hero__eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--swiss-red);
  box-shadow: 0 0 0 5px rgba(220, 0, 24, 0.15);
  animation: dotPulse 2s ease-in-out infinite;
}
.lead-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 16px;
}
.lead-hero h1 .red { color: var(--swiss-red); }
.lead-hero h1 .serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.lead-hero p {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 auto;
}

/* Hero CTA Pair: AI Assistant + Meeting Request */
.kontakt-hero-ctas {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: stretch;
}
.kontakt-hero-ctas__meeting {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #DC0018 0%, #a30012 100%);
  color: white;
  text-decoration: none;
  font-family: var(--font-sans, "Plus Jakarta Sans", system-ui, sans-serif);
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow:
    0 4px 12px rgba(220, 0, 24, 0.22),
    0 16px 36px rgba(220, 0, 24, 0.28);
  position: relative;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease;
  isolation: isolate;
}
.kontakt-hero-ctas__meeting::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 60%,
    transparent 100%);
  background-size: 200% 100%;
  background-position: 200% 0;
  animation: kontaktCtaShimmer 3.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes kontaktCtaShimmer {
  0%   { background-position: 200% 0; }
  60%  { background-position: -100% 0; }
  100% { background-position: -100% 0; }
}
.kontakt-hero-ctas__meeting:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 6px 18px rgba(220, 0, 24, 0.32),
    0 22px 50px rgba(220, 0, 24, 0.38);
}
.kontakt-hero-ctas__meeting:active { transform: translateY(0) scale(.99); }
.kontakt-hero-ctas__meeting-icon {
  position: relative; z-index: 1;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.kontakt-hero-ctas__meeting-text {
  position: relative; z-index: 1;
  display: inline-flex; flex-direction: column;
  font-size: 14.5px; line-height: 1.1;
}
.kontakt-hero-ctas__meeting-text small {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.88;
  letter-spacing: 0.02em;
  margin-top: 3px;
}
.kontakt-hero-ctas__meeting-arrow {
  position: relative; z-index: 1;
  font-size: 18px;
  line-height: 1;
  transition: transform .28s cubic-bezier(.16,1,.3,1);
}
.kontakt-hero-ctas__meeting:hover .kontakt-hero-ctas__meeting-arrow {
  transform: translateX(3px);
}
@media (prefers-reduced-motion: reduce) {
  .kontakt-hero-ctas__meeting::before { animation: none; }
  .kontakt-hero-ctas__meeting,
  .kontakt-hero-ctas__meeting-arrow { transition: none; }
}

/* Main card */
.lead-card {
  /* Zentrierung: width = min(max, available); margin auto teilt Restplatz gleichmässig. */
  width: min(1080px, calc(100% - var(--gutter) * 2));
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow:
    0 1px 1px rgba(0,0,0,0.04),
    0 12px 32px rgba(0,0,0,0.06),
    0 40px 80px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
}

/* Sidebar */
.lead-sidebar {
  padding: clamp(20px, 3vw, 32px);
  background: linear-gradient(180deg, var(--paper-2) 0%, rgba(243, 243, 238, 0.5) 100%);
  border-bottom: 1px solid var(--line);
}
.lead-sidebar h2 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.lead-sidebar p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-3);
  margin-bottom: 20px;
}

.step-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1.5px solid transparent;
  background: rgba(255,255,255,0.6);
  transition: all 0.3s var(--ease);
  cursor: default;
}
.step-item.is-active {
  background: var(--paper);
  border-color: var(--ink);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateX(4px);
}
.step-item.is-done { opacity: 0.7; }
.step-indicator {
  width: 36px; height: 36px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  background: var(--line);
  color: var(--ink-3);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.step-item.is-active .step-indicator {
  background: var(--swiss-red);
  color: white;
  box-shadow: 0 6px 14px rgba(220, 0, 24, 0.3);
}
.step-item.is-done .step-indicator {
  background: var(--ink);
  color: var(--paper);
}
.step-item.is-done .step-indicator::after { content: '✓'; }
.step-item.is-done .step-indicator .num { display: none; }
.step-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.step-text strong {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.step-text span {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

.lead-sidebar__foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* Direkter Draht — WhatsApp + Telefon CTA in Sidebar */
.lead-sidebar__direct {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lead-sidebar__direct-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 2px;
}
.lead-sidebar__direct-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all .25s var(--ease);
}
.lead-sidebar__direct-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.lead-sidebar__direct-btn--wa {
  background: #25D366;
  color: white;
  border-color: #20BD5C;
}
.lead-sidebar__direct-btn--wa:hover {
  background: #1ebd5b;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}
.lead-sidebar__direct-btn--tel {
  color: var(--ink);
}
.lead-sidebar__direct-btn--tel:hover {
  border-color: var(--ink);
  color: var(--swiss-red);
}

/* Form area */
.lead-form-area {
  padding: clamp(20px, 3vw, 40px);
  min-width: 0;
}

/* Progress */
.lead-progress { margin-bottom: clamp(20px, 3vw, 32px); }
.lead-progress__labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.lead-progress__track {
  width: 100%;
  height: 6px;
  background: var(--paper-3);
  border-radius: 999px;
  overflow: hidden;
}
.lead-progress__fill {
  height: 100%;
  width: 33%;
  background: var(--swiss-red);
  border-radius: inherit;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(220, 0, 24, 0.4);
}

/* Step header */
.lead-step-head { margin-bottom: clamp(20px, 3vw, 32px); }
.lead-step-head h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.lead-step-head p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
}

/* Step panes */
.lead-step-pane { display: none; }
.lead-step-pane.active {
  display: block;
  animation: leadFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes leadFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Topic-Auswahl (Klick-Step 1) ─────────────────────────────────────── */
.lead-topic-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 560px) { .lead-topic-grid { grid-template-columns: 1fr 1fr; } }
.lead-topic-card {
  position: relative;
  display: flex; align-items: flex-start; gap: 13px;
  padding: 18px 46px 18px 18px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  cursor: pointer;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.lead-topic-card:hover { border-color: var(--ink-3); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(15,23,42,0.07); }
.lead-topic-card__radio { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.lead-topic-card:has(.lead-topic-card__radio:checked) { border-color: var(--swiss-red); box-shadow: 0 0 0 4px rgba(220,0,24,0.10); }
.lead-topic-card:has(.lead-topic-card__radio:focus-visible) { outline: 2px solid var(--swiss-red); outline-offset: 2px; }
.lead-topic-card__ico {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(220,0,24,0.08); color: var(--swiss-red);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.lead-topic-card__ico svg { width: 21px; height: 21px; }
.lead-topic-card:has(.lead-topic-card__radio:checked) .lead-topic-card__ico { background: var(--swiss-red); color: #fff; }
.lead-topic-card__body { display: flex; flex-direction: column; min-width: 0; }
.lead-topic-card__t { font-weight: 700; font-size: 15.5px; color: var(--ink); line-height: 1.2; }
.lead-topic-card__d { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; line-height: 1.4; }
.lead-topic-card__check {
  position: absolute; top: 16px; right: 16px;
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--line); display: grid; place-items: center;
  color: #fff; font-size: 11px; line-height: 1;
  opacity: 0; transform: scale(0.6);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.lead-topic-card:has(.lead-topic-card__radio:checked) .lead-topic-card__check { background: var(--swiss-red); border-color: var(--swiss-red); opacity: 1; transform: scale(1); }

.lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.lead-field { display: flex; flex-direction: column; }
.lead-field--full { grid-column: 1 / -1; }
.lead-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.lead-field label .req { color: var(--swiss-red); }
.lead-field input:not([type="checkbox"]):not([type="radio"]),
.lead-field select,
.lead-field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.45;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  transition: all 0.2s var(--ease);
  appearance: none;
}
.lead-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234A4A48'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 44px;
}
.lead-field textarea { min-height: 120px; resize: vertical; }
.lead-field input:not([type="checkbox"]):not([type="radio"]):hover,
.lead-field select:hover,
.lead-field textarea:hover { border-color: var(--ink-3); }
.lead-field input:not([type="checkbox"]):not([type="radio"]):focus,
.lead-field select:focus,
.lead-field textarea:focus {
  outline: none;
  border-color: var(--swiss-red);
  box-shadow: 0 0 0 4px rgba(220, 0, 24, 0.12);
  background: var(--paper);
}
.lead-field .hint {
  margin-top: 6px;
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--font-mono);
}
.lead-field.is-invalid input:not([type="checkbox"]):not([type="radio"]),
.lead-field.is-invalid select,
.lead-field.is-invalid textarea,
input.is-invalid:not([type="checkbox"]):not([type="radio"]), select.is-invalid, textarea.is-invalid {
  border-color: var(--swiss-red) !important;
  background: rgba(220, 0, 24, 0.04) !important;
  box-shadow: 0 0 0 4px rgba(220, 0, 24, 0.12) !important;
}
/* Inline field error */
.lead-field__err {
  display: none;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--swiss-red);
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.4;
}
.lead-field__err::before {
  content: '⚠ ';
  font-family: var(--font-mono);
}
.lead-field.is-invalid .lead-field__err { display: block; }
.lead-field.is-invalid .lead-check {
  border-color: var(--swiss-red);
  box-shadow: 0 0 0 4px rgba(220, 0, 24, 0.12);
}

/* Checkbox */
.lead-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--paper-2);
  cursor: pointer;
  touch-action: manipulation;
  transition: all 0.2s var(--ease);
}
.lead-check:hover,
.lead-check:focus-within { border-color: var(--ink-3); }
.lead-check:focus-within { box-shadow: 0 0 0 4px rgba(220, 0, 24, 0.08); }
.lead-check input {
  width: 20px; height: 20px;
  min-width: 20px; min-height: 20px;
  margin-top: 1px;
  flex-shrink: 0;
  appearance: auto;
  -webkit-appearance: checkbox;
  accent-color: var(--swiss-red);
  cursor: pointer;
  touch-action: manipulation;
}
.lead-check label {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  cursor: pointer;
}
.lead-check label a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--swiss-red);
  text-underline-offset: 2px;
}

/* Error box */
.lead-error {
  display: none;
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(220, 0, 24, 0.06);
  border: 1.5px solid rgba(220, 0, 24, 0.3);
  color: var(--swiss-red);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
}

/* Actions */
.lead-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.lead-actions__note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-align: center;
}
.lead-btn-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.lead-btn {
  min-height: 52px;
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s var(--ease);
}
.lead-btn--secondary {
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--line-2);
}
.lead-btn--secondary:hover:not(:disabled) {
  background: var(--paper-2);
  border-color: var(--ink);
}
.lead-btn--primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 4px 0 var(--swiss-red), 0 12px 24px rgba(0,0,0,0.15);
}
.lead-btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--swiss-red), 0 16px 32px rgba(0,0,0,0.2);
}
.lead-btn--primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 0 var(--swiss-red), 0 6px 12px rgba(0,0,0,0.1);
}
.lead-btn:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; transform: none; }

/* Success state */
.lead-success {
  display: none;
  padding: clamp(32px, 5vw, 56px) 0;
  text-align: center;
  animation: leadFadeIn 0.5s var(--ease);
}
.lead-success__icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: var(--swiss-red);
  color: white;
  display: grid; place-items: center;
  font-size: 36px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(220, 0, 24, 0.3);
  animation: leadPop 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes leadPop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.lead-success h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.lead-success p {
  max-width: 52ch;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* Tablet+ */
@media (min-width: 640px) {
  .step-nav { grid-template-columns: repeat(3, 1fr); }
  .step-item.is-active { transform: none; }
  .lead-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .lead-btn-group { grid-template-columns: 1fr 1fr; }
}

/* Desktop */
@media (min-width: 960px) {
  .lead-card { grid-template-columns: 340px minmax(0, 1fr); }
  .lead-sidebar {
    padding: clamp(28px, 3vw, 40px);
    border-bottom: none;
    border-right: 1px solid var(--line);
  }
  .lead-form-area {
    padding: clamp(28px, 3vw, 48px);
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }
  .step-nav { grid-template-columns: 1fr; }
  .lead-actions { flex-direction: row; justify-content: space-between; align-items: center; gap: 24px; }
  .lead-actions__note { text-align: left; }
  .lead-btn-group {
    display: inline-flex;
    gap: 12px;
  }
  .lead-btn { min-width: 140px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lead-step-pane, .lead-progress__fill, .step-item, .lead-success, .lead-success__icon {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================================
   POST-ANFRAGE: Was passiert danach — 4-Step Timeline
   ============================================================ */
.kontakt-after {
  padding: clamp(56px, 8vw, 112px) 0;
  background: white;
  position: relative;
}
.kontakt-after__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.kontakt-after__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}
.kontakt-after__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--swiss-red);
  margin-bottom: 14px;
}
.kontakt-after__eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--swiss-red);
}
.kontakt-after__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 12px;
}
.kontakt-after__title .serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.kontakt-after__title .red { color: var(--swiss-red); }
.kontakt-after__sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 52ch;
  margin: 0 auto;
}
.kontakt-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}
.kontakt-timeline__step {
  position: relative;
  padding: 24px 22px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.kontakt-timeline__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.kontakt-timeline__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 4px 0 var(--swiss-red);
}
.kontakt-timeline__time {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--swiss-red);
  margin-bottom: 6px;
}
.kontakt-timeline__h {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 6px;
}
.kontakt-timeline__d {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-3);
}
@media (min-width: 700px) {
  .kontakt-timeline { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 1024px) {
  .kontakt-timeline { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  /* Connector line between cards */
  .kontakt-timeline::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 11%; right: 11%;
    height: 1px;
    background: linear-gradient(90deg,
      transparent, var(--line) 8%, var(--line) 92%, transparent);
    z-index: 0;
    pointer-events: none;
  }
  .kontakt-timeline__step { background: var(--paper); position: relative; z-index: 1; }
}

/* ============================================================
   ERREICHBARKEIT — Mini-Block
   ============================================================ */
.kontakt-reach {
  padding: clamp(48px, 7vw, 88px) 0;
  background: var(--paper-2);
}
.kontakt-reach__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (min-width: 800px) {
  .kontakt-reach__inner { grid-template-columns: 1.05fr 1.95fr; gap: 32px; align-items: center; }
}
.kontakt-reach__head h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.kontakt-reach__head h2 .serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.kontakt-reach__head p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-3);
}
.kontakt-reach__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 540px) {
  .kontakt-reach__cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (min-width: 1024px) {
  .kontakt-reach__cards { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}

/* Direct-Card highlighting */
.kontakt-reach__card--direct {
  background: linear-gradient(135deg, var(--paper) 0%, var(--paper-2) 100%);
  border-color: rgba(220, 0, 24, 0.18);
  position: relative;
  overflow: hidden;
}
.kontakt-reach__card--direct::before {
  content: '';
  position: absolute;
  top: -40%; right: -40%;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.10), transparent 70%);
  pointer-events: none;
}
.kontakt-reach__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.kontakt-reach__action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.kontakt-reach__action:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.kontakt-reach__action--wa {
  background: #25D366;
  color: white;
  border-color: #20BD5C;
}
.kontakt-reach__action--wa:hover {
  background: #1ebd5b;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}
.kontakt-reach__action--tel:hover {
  border-color: var(--ink);
  color: var(--swiss-red);
}
.kontakt-reach__card {
  padding: 20px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: left;
}
.kontakt-reach__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--paper-2);
  margin-bottom: 12px;
  color: var(--swiss-red);
}
.kontakt-reach__icon svg { width: 18px; height: 18px; }
.kontakt-reach__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 4px;
}
.kontakt-reach__value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.3;
}
.kontakt-reach__sub {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.4;
}

/* ============================================================
   TRUST STRIP — Final
   ============================================================ */
.kontakt-trust {
  padding: clamp(40px, 6vw, 72px) 0;
  background: white;
  border-top: 1px solid var(--line);
}
.kontakt-trust__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.kontakt-trust__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 22px;
}
.kontakt-trust__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 22px;
}
.kontakt-trust__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
}
.kontakt-trust__chip svg {
  width: 14px; height: 14px;
  color: var(--swiss-red);
  flex-shrink: 0;
}
