/* css/kontakt.css – Kontaktseite · Dark Navy */

/* ---- @property for animations ---- */
@property --kicker-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes kicker-border-spin {
  to { --kicker-angle: 360deg; }
}

/* =====================================================
   NAV
   ===================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  background: rgba(8, 15, 32, 0.96);
  backdrop-filter: saturate(120%) blur(12px);
  -webkit-backdrop-filter: saturate(120%) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  width: 100%;
  gap: var(--s-lg);
}
.nav-logo {
  flex: 1;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  border-radius: var(--r-sm);
  display: block;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 0;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--on-dark-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(243, 243, 238, 0.2);
  padding: 0 var(--s-xs);
  white-space: nowrap;
  transition: color 120ms;
}
.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--on-dark);
  text-decoration-color: rgba(243, 243, 238, 0.5);
}
.nav-pipe {
  color: rgba(255, 255, 255, 0.15);
  font-size: 14px;
  user-select: none;
}
.nav-actions {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.btn-nav-cta {
  background:
    linear-gradient(rgba(8,15,32,0.92), rgba(8,15,32,0.92)) padding-box,
    conic-gradient(from var(--btn-angle),
      rgba(201,139,58,0.12) 0deg, rgba(201,139,58,0.12) 270deg,
      rgba(255,215,70,0.9) 315deg,
      rgba(201,139,58,0.12) 358deg) border-box;
  border: 1px solid transparent;
  color: var(--on-dark);
  animation: btn-gold-spin 3s linear infinite;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  height: 36px;
  padding: 0 var(--s-md);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: var(--s-xs);
  text-decoration: none;
  transition: filter 120ms;
}
.btn-nav-cta:hover {
  filter: brightness(1.1);
}
/* ---- Hamburger ---- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: var(--s-xs);
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--on-dark);
  border-radius: 2px;
  transition: transform 240ms ease, opacity 240ms ease;
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile Nav Drawer ---- */
.mobile-nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 49;
  background: rgba(8, 15, 32, 0.98);
  backdrop-filter: saturate(120%) blur(14px);
  -webkit-backdrop-filter: saturate(120%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: var(--s-lg) var(--s-xl);
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms ease, opacity 240ms ease;
}
.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
}
.mobile-nav-links a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: rgba(243, 243, 238, 0.72);
  text-decoration: none;
  padding: var(--s-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 120ms;
}
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-links a:hover { color: var(--on-dark); }
.mobile-nav-cta {
  align-self: flex-start;
  margin-top: var(--s-sm);
}

@media (min-width: 720px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none !important; }
  .mobile-nav { display: none !important; }
}
@media (max-width: 719px) {
  .nav-hamburger { display: flex; }
  .nav-actions { display: none; }
}

/* =====================================================
   WORDMARK
   ===================================================== */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: var(--s-xs);
  text-decoration: none;
  flex-shrink: 0;
}
.wordmark .peak { width: 22px; height: 22px; }
.wordmark-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.4px;
  color: var(--on-dark);
}
.wordmark-name em { font-style: normal; color: #5aadff; }
.wordmark-name-dark { color: var(--on-dark); }
.wordmark-name-dark em { color: #5aadff; }

/* =====================================================
   HERO
   ===================================================== */
.kontakt-hero {
  background:
    radial-gradient(ellipse 60% 70% at 20% 50%, rgba(20,75,200,0.20) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 82% 22%, rgba(80,150,255,0.09) 0%, transparent 60%),
    linear-gradient(180deg, #060d1c 0%, #080f20 100%);
  padding: 80px 0 72px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.kontakt-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-lg);
  position: relative;
  z-index: 1;
}

.hero-badge {
  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
    ) border-box;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  padding: 0 var(--s-md);
  height: 34px;
  animation: kicker-border-spin 2.8s linear infinite;
}
.hero-badge span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(160, 200, 255, 0.9);
}

.kontakt-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -1.8px;
  color: #ffffff;
  margin: 0;
  max-width: 18ch;
}

.kontakt-sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(180, 210, 255, 0.65);
  margin: 0;
  max-width: 52ch;
}

/* =====================================================
   KONTAKT MAIN SECTION  — Navy Sekundär + Video BG
   ===================================================== */
.kontakt-section {
  background: #0d1628;
  padding: var(--s-section) 0;
  position: relative;
  overflow: hidden;
}

.section-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.35;
  z-index: 0;
}

.section-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 22, 40, 0.65);
  z-index: 1;
}

.section-wrap {
  position: relative;
  z-index: 2;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xxl);
  align-items: start;
}

/* =====================================================
   FORM CARD
   ===================================================== */
.form-card {
  background: rgba(20, 45, 100, 0.18);
  border: 1px solid rgba(90, 173, 255, 0.1);
  border-radius: var(--r-xl);
  padding: var(--s-xxl);
}

/* Mode tabs */
.form-tabs {
  display: flex;
  background: rgba(8, 15, 32, 0.45);
  border: 1px solid rgba(90, 173, 255, 0.08);
  border-radius: var(--r-md);
  padding: 4px;
  gap: 4px;
  margin-bottom: var(--s-xl);
}

.form-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-xs);
  height: 40px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--on-dark-soft);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: background 140ms, color 140ms;
  white-space: nowrap;
  padding: 0 var(--s-md);
}
.form-tab svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.form-tab.is-active {
  background: rgba(90, 173, 255, 0.1);
  border: 1px solid rgba(90, 173, 255, 0.2);
  color: var(--on-dark);
}

/* Form layout */
.kontakt-form { display: flex; flex-direction: column; gap: var(--s-lg); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-md);
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--on-dark);
}
.field .field-hint {
  font-size: 12px;
  color: var(--on-dark-soft);
  font-weight: 400;
}

input.text-input,
select.text-input,
textarea.text-input {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--on-dark);
  background: rgba(8, 15, 32, 0.5);
  border-radius: var(--r-md);
  border: 1px solid rgba(90, 173, 255, 0.15);
  outline: none;
  transition: border-color 120ms, box-shadow 120ms;
}
input.text-input::placeholder,
textarea.text-input::placeholder {
  color: rgba(154, 157, 159, 0.45);
}
input.text-input,
select.text-input { height: 44px; padding: 0 14px; }
textarea.text-input {
  padding: 12px 14px;
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
}
input.text-input:focus,
select.text-input:focus,
textarea.text-input:focus {
  outline: none;
  border-color: transparent;
  background:
    linear-gradient(rgba(8, 15, 32, 0.5), rgba(8, 15, 32, 0.5)) padding-box,
    conic-gradient(
      from var(--btn-angle),
      rgba(201,139,58,0.15) 0deg,
      rgba(201,139,58,0.15) 260deg,
      rgba(255,215,70,0.95) 315deg,
      rgba(201,139,58,0.15) 360deg
    ) border-box;
  box-shadow: 0 0 0 3px rgba(255, 215, 70, 0.07), 0 0 12px rgba(255, 215, 70, 0.06);
  animation: btn-gold-spin 2s linear infinite;
}
input.text-input.is-error,
textarea.text-input.is-error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(179, 74, 58, 0.1);
}
.field-error {
  font-size: 12px;
  color: var(--error);
  display: none;
}
.field-error.is-visible { display: block; }

select.text-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%235aadff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
select.text-input option {
  background: #0d1628;
  color: var(--on-dark);
}

/* Panels shown/hidden by JS */
.form-panel { display: none; }
.form-panel.is-active { display: contents; }

/* Google Cal Divider */
.gcal-divider {
  display: flex;
  align-items: center;
  gap: var(--s-md);
}
.gcal-divider::before,
.gcal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(90, 173, 255, 0.12);
}
.gcal-divider-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(90, 173, 255, 0.6);
  white-space: nowrap;
}

/* =====================================================
   KALENDER-WIDGET
   ===================================================== */
.cal-widget {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}

/* Schritt-Leiste */
.cal-step-bar {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
}
.cal-step-ind {
  display: flex;
  align-items: center;
  gap: var(--s-xs);
  font-size: 13px;
  font-weight: 500;
  color: rgba(154, 157, 159, 0.5);
  transition: color 200ms;
}
.cal-step-ind.is-active { color: var(--on-dark); }
.cal-step-ind-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--on-dark-soft);
  transition: background 200ms, border-color 200ms, color 200ms;
}
.cal-step-ind.is-active .cal-step-ind-num {
  background: rgba(90, 173, 255, 0.15);
  border-color: #5aadff;
  color: #5aadff;
}
.cal-step-bar-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

/* Kalender-Ansicht */
.cal-view {
  background: rgba(8, 15, 32, 0.45);
  border: 1px solid rgba(90, 173, 255, 0.1);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
}

/* Monats-Navigation */
.cal-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-md);
}
.cal-month-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--on-dark);
}
.cal-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: rgba(90, 173, 255, 0.07);
  border: 1px solid rgba(90, 173, 255, 0.15);
  color: #5aadff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background 120ms;
}
.cal-nav-btn:hover { background: rgba(90, 173, 255, 0.15); }

/* Kalender-Grid */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-weekday {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--on-dark-soft);
  padding-bottom: var(--s-xs);
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--on-dark);
  transition: background 120ms, color 120ms;
  border: 1px solid transparent;
}
.cal-day:not(.cal-day-disabled):not(.cal-day-empty):hover {
  background: rgba(90, 173, 255, 0.1);
}
.cal-day-disabled {
  color: rgba(255, 255, 255, 0.15);
  cursor: default;
}
.cal-day-empty { cursor: default; }
.cal-day-selected {
  background: rgba(90, 173, 255, 0.18) !important;
  border-color: rgba(90, 173, 255, 0.45) !important;
  color: #5aadff;
  font-weight: 600;
}

/* Uhrzeit-Ansicht */
.cal-time-header {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  margin-bottom: var(--s-md);
  flex-wrap: wrap;
}
.cal-back-btn {
  background: none;
  border: none;
  color: rgba(90, 173, 255, 0.65);
  cursor: pointer;
  font-size: 13px;
  font-family: var(--font-body);
  padding: 0;
  transition: color 120ms;
  white-space: nowrap;
}
.cal-back-btn:hover { color: #5aadff; }
.cal-time-date-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--on-dark);
}

/* Slot-Grid */
.cal-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-xs);
}
.cal-slot {
  background: rgba(90, 173, 255, 0.05);
  border: 1px solid rgba(90, 173, 255, 0.14);
  border-radius: var(--r-md);
  color: var(--on-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  height: 38px;
  cursor: pointer;
  transition: background 120ms, border-color 120ms, color 120ms;
}
.cal-slot:hover {
  background: rgba(90, 173, 255, 0.12);
  border-color: rgba(90, 173, 255, 0.3);
}
.cal-slot-selected {
  background: rgba(90, 173, 255, 0.2) !important;
  border-color: #5aadff !important;
  color: #5aadff;
  font-weight: 600;
}

/* Lade- & Status-Meldungen */
.cal-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-xs);
  padding: var(--s-xl) 0;
  font-size: 13px;
  color: var(--on-dark-soft);
  grid-column: 1 / -1;
}
.cal-msg {
  font-size: 13px;
  color: var(--on-dark-soft);
  text-align: center;
  padding: var(--s-lg) 0;
  margin: 0;
  grid-column: 1 / -1;
}
.cal-error { color: var(--error) !important; }

/* Fehler: kein Termin gewählt */
.cal-datetime-error {
  font-size: 12px;
  color: var(--error);
  margin: 0;
}

/* Submit row */
.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
  margin-top: var(--s-xs);
}

.btn-submit {
  height: 48px;
  font-size: 15px;
  padding: 0 var(--s-xl);
  width: 100%;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.btn-submit .btn-label { transition: opacity 150ms; }
.btn-submit .btn-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-xs);
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms;
}
.btn-submit.is-loading .btn-label { opacity: 0; }
.btn-submit.is-loading .btn-loading { opacity: 1; }

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.dsgvo-note {
  font-size: 12px;
  color: var(--on-dark-soft);
  line-height: 1.55;
  text-align: center;
}
.dsgvo-note a { color: #5aadff; text-decoration: underline; }
.dsgvo-note a:hover { color: var(--on-dark); }

.form-error-msg {
  font-size: 13px;
  color: var(--error);
  background: rgba(179, 74, 58, 0.08);
  border: 1px solid rgba(179, 74, 58, 0.25);
  border-radius: var(--r-md);
  padding: var(--s-sm) var(--s-md);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* =====================================================
   SUCCESS STATE
   ===================================================== */
@keyframes successFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--s-xl);
  padding: var(--s-xl) 0;
}
.form-success.is-visible { display: flex; }

.success-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-md);
  text-align: center;
}
.form-success.is-visible .success-top {
  animation: successFadeUp 0.5s ease both;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(74, 122, 92, 0.15);
  border: 1px solid rgba(74, 122, 92, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.5px;
  color: var(--on-dark);
  margin: 0;
}
.success-appt-text {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #5aadff;
  background: rgba(90, 173, 255, 0.08);
  border: 1px solid rgba(90, 173, 255, 0.2);
  border-radius: var(--r-md);
  padding: var(--s-xs) var(--s-md);
  margin: 0;
}

/* Founder-Karte */
.success-founder {
  display: flex;
  align-items: center;
  gap: var(--s-xl);
  background: rgba(20, 45, 100, 0.22);
  border: 1px solid rgba(90, 173, 255, 0.12);
  border-radius: var(--r-xl);
  padding: var(--s-xl);
  width: 100%;
}
.form-success.is-visible .success-founder {
  animation: successFadeUp 0.55s 0.25s ease both;
}

.success-photo-wrap {
  position: relative;
  flex-shrink: 0;
  padding: 4px;
  border-radius: 14px;
  background:
    linear-gradient(rgba(8,15,32,0.95), rgba(8,15,32,0.95)) padding-box,
    conic-gradient(from var(--btn-angle),
      rgba(201,139,58,0.12) 0deg,
      rgba(201,139,58,0.12) 270deg,
      rgba(255,215,70,0.9) 315deg,
      rgba(201,139,58,0.12) 358deg) border-box;
  border: 2px solid transparent;
  animation: btn-gold-spin 3s linear infinite;
}
.success-photo {
  width: 140px;
  height: 175px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--r-lg);
  display: block;
}
.success-hud {
  position: absolute;
  width: 28px;
  height: 28px;
}
.success-hud-tl { top: -2px; left: -2px; }
.success-hud-br { bottom: -2px; right: -2px; }

.success-founder-info {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}
.success-founder-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.3px;
  color: var(--on-dark);
  margin: 0;
}
.success-call-note {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(243, 243, 238, 0.72);
  margin: 0;
}
.success-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-xs);
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: var(--r-pill);
  color: #25d366;
  font-size: 13px;
  font-weight: 500;
  padding: 0 var(--s-md);
  height: 36px;
  text-decoration: none;
  transition: background 120ms;
  white-space: nowrap;
  align-self: flex-start;
}
.success-wa-btn:hover { background: rgba(37, 211, 102, 0.16); }

@media (max-width: 719px) {
  .success-founder { flex-direction: column; align-items: flex-start; }
  .success-wa-btn { white-space: normal; height: auto; padding: var(--s-xs) var(--s-md); }
}

/* =====================================================
   INFO COLUMN
   ===================================================== */
.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: var(--s-lg);
}

.info-card {
  background: rgba(90, 173, 255, 0.04);
  border: 1px solid rgba(90, 173, 255, 0.12);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}

.info-card-head {
  display: flex;
  align-items: center;
  gap: var(--s-md);
}
.info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(90, 173, 255, 0.1);
  border: 1px solid rgba(90, 173, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5aadff;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; }

.info-card-head h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--on-dark);
  margin: 0;
}
.info-card-head p {
  font-size: 13px;
  color: var(--on-dark-soft);
  margin: 0;
}

.info-steps {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}
.info-step {
  display: flex;
  align-items: flex-start;
  gap: var(--s-md);
}
.info-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(90, 173, 255, 0.1);
  border: 1px solid rgba(90, 173, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: #5aadff;
  flex-shrink: 0;
  margin-top: 1px;
}
.info-step-text {
  font-size: 14px;
  color: var(--on-dark-soft);
  line-height: 1.55;
}
.info-step-text strong {
  display: block;
  font-weight: 500;
  color: var(--on-dark);
  margin-bottom: 1px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--s-xs);
}
.contact-link {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  padding: var(--s-sm) var(--s-md);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background 120ms;
}
.contact-link:hover { background: rgba(90, 173, 255, 0.06); }
.contact-link-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: rgba(90, 173, 255, 0.08);
  border: 1px solid rgba(90, 173, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5aadff;
  flex-shrink: 0;
}
.contact-link-icon svg { width: 15px; height: 15px; }
.contact-link-text { display: flex; flex-direction: column; gap: 1px; }
.contact-link-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(90, 173, 255, 0.6);
}
.contact-link-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--on-dark);
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-xs);
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(90, 173, 255, 0.05);
  border: 1px solid rgba(90, 173, 255, 0.15);
  border-radius: var(--r-pill);
  padding: 0 var(--s-sm);
  height: 28px;
  font-size: 12px;
  font-weight: 500;
  color: var(--on-dark-soft);
}
.trust-chip svg { width: 12px; height: 12px; color: #5aadff; }

/* =====================================================
   FOOTER — identisch mit main.css / index.html
   ===================================================== */
@property --footer-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes footer-line-spin {
  to { --footer-angle: 360deg; }
}

footer.site-footer {
  background: #080f20;
  color: var(--on-dark);
  padding: 0;
}

footer.site-footer .wrap {
  display: block;
}

.footer-glow-line {
  height: 2px;
  background: conic-gradient(
    from var(--footer-angle),
    rgba(201,139,58,0.15) 0deg,
    rgba(255,215,70,0.95) 55deg,
    rgba(90,173,255,0.55) 110deg,
    rgba(201,139,58,0.15) 180deg,
    rgba(90,173,255,0.55) 250deg,
    rgba(255,215,70,0.95) 305deg,
    rgba(201,139,58,0.15) 360deg
  );
  animation: footer-line-spin 7s linear infinite;
}

.footer-inner {
  display: grid;
  grid-template-columns: 230px 1fr 270px;
  gap: 56px;
  align-items: flex-start;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-lg);
}

.footer-logo-img {
  height: 68px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--on-dark-soft);
  line-height: 1.65;
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: var(--s-xs);
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  color: var(--on-dark-soft);
  text-decoration: none;
  transition: color 150ms, background 150ms, border-color 150ms;
  background: rgba(90,173,255,0.05);
  border: 1px solid rgba(90,173,255,0.12);
}

.social-btn:hover {
  background: rgba(255,215,70,0.08);
  border-color: rgba(255,215,70,0.38);
  color: rgba(255,215,70,0.9);
}

.footer-nav {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  padding-top: 2px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: var(--s-md) 0 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col-heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: #5aadff;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 0;
}

.footer-col a {
  font-size: 14px;
  color: var(--on-dark-soft);
  text-decoration: none;
  transition: color 150ms;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--on-dark);
}

.footer-cta-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 2px;
}

.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,215,70,0.85);
  text-decoration: none;
  transition: color 150ms, gap 150ms;
  align-self: flex-start;
}

.footer-cta-link:hover {
  color: rgba(255,215,70,1);
  gap: 8px;
}

.footer-contact-link {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--on-dark-soft);
  text-decoration: none;
  transition: color 150ms;
}

.footer-contact-link:hover {
  color: var(--on-dark);
}

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

.footer-badges img {
  height: 36px;
  width: auto;
  max-width: 120px;
  display: block;
  border-radius: var(--r-xs);
  opacity: 0.72;
  transition: opacity 150ms;
}

.footer-badges img:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-lg) 0 var(--s-xl);
  flex-wrap: wrap;
  gap: var(--s-md);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(154,157,159,0.55);
  margin: 0;
}

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

.footer-legal a {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(154,157,159,0.55);
  text-decoration: none;
  transition: color 150ms;
}

.footer-legal a:hover {
  color: var(--on-dark-soft);
}

@media (max-width: 719px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--s-xxl);
    padding: 48px 0 40px;
  }
  .footer-nav { gap: var(--s-xl); flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--s-sm); }
  .footer-legal { flex-wrap: wrap; gap: var(--s-lg); }
  .footer-badges { flex-wrap: wrap; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (min-width: 720px) {
  .kontakt-h1 { font-size: 60px; letter-spacing: -2.5px; }
  .kontakt-sub { font-size: 18px; }
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .kontakt-h1 { font-size: 72px; letter-spacing: -3px; }
  .kontakt-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
}

@media (max-width: 719px) {
  .form-card { padding: var(--s-xl); }
  .form-row { grid-template-columns: 1fr; }
  .form-tabs {
    flex-direction: column;
    gap: 6px;
  }
  .form-tab {
    flex: none;
    width: 100%;
    justify-content: flex-start;
    padding: 0 var(--s-md);
    height: 46px;
    font-size: 15px;
  }
  .form-tab span { display: inline; }
}
