﻿/* ── KONTAKT PAGE ── */

.kt-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: flex-start;
}

/* Form */
.kt-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.kt-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kt-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.kt-input {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.kt-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,114,12,0.1);
}
.kt-input::placeholder { color: var(--text-dim); }

.kt-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23111' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.kt-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* Chips */
.kt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kt-chip {
  cursor: pointer;
}

.kt-chip input { display: none; }

.kt-chip span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.kt-chip input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.kt-chip:hover span {
  border-color: rgba(232,114,12,0.4);
  color: var(--accent);
}

/* Consent */
.kt-consent { flex-direction: row; align-items: flex-start; gap: 0; }

.kt-check-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  opacity: 0.7;
}
.kt-check-label input { margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); }
.kt-check-label a { color: var(--accent); text-decoration: none; }

/* Submit */
.kt-submit {
  width: 100%;
  justify-content: center;
  padding: 18px 36px;
  font-size: 16px;
}

.kt-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,168,120,0.07);
  border: 1px solid rgba(0,168,120,0.3);
  border-radius: 10px;
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #00a878;
}
.kt-success i { font-size: 20px; }

/* Info column */
.kt-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 110px;
}

.kt-info-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.kt-info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kt-info-label::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--accent);
}

.kt-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.kt-info-item:last-child { margin-bottom: 0; }

.kt-info-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(232,114,12,0.07);
  border: 1px solid rgba(232,114,12,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}

.kt-info-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.kt-info-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
a.kt-info-val:hover { color: var(--accent); }

/* Promise list */
.kt-promise {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kt-promise-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.kt-promise-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(232,114,12,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.kt-promise-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  opacity: 0.75;
}

/* Pricing teaser */
.kt-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.kt-price-row:last-of-type { border-bottom: none; }

.kt-price-name {
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0.8;
}

.kt-price-val {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.kt-price-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s;
}
.kt-price-link:hover { gap: 10px; }

/* FAQ */
.kt-faq {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.kt-faq-item {
  border-bottom: 1px solid var(--border);
}
.kt-faq-item:last-child { border-bottom: none; }

.kt-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: var(--surface);
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background 0.2s;
}
.kt-faq-q:hover { background: rgba(232,114,12,0.03); }
.kt-faq-item.open .kt-faq-q { color: var(--accent); }

.kt-faq-arrow {
  color: var(--text-dim);
  transition: transform 0.3s;
  flex-shrink: 0;
  font-size: 13px;
}
.kt-faq-item.open .kt-faq-arrow { transform: rotate(180deg); color: var(--accent); }

.kt-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--bg);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 28px;
  opacity: 0.75;
}
.kt-faq-item.open .kt-faq-a {
  max-height: 300px;
  padding: 20px 28px 24px;
}

/* Responsive */
@media (max-width: 1100px) {
  .kt-layout { grid-template-columns: 1fr; gap: 40px; }
  .kt-info-col { position: static; }
}

@media (max-width: 640px) {
  .kt-form-row { grid-template-columns: 1fr; }
}
