/* ===== JCS Kontaktformular — Modal Popup mit Fortschritt ===== */
/* Eigenstaendige, in sich geschlossene Version: Farb-/Schrift-Variablen
   sind hier bewusst NUR auf .kf-overlay gesetzt (nicht auf :root),
   damit nichts mit den CSS-Variablen deines WordPress-Themes kollidiert.
   Zusaetzlich sind ALLE Selektoren an die eindeutige Popup-ID gebunden,
   damit Theme-CSS unsere Styles nicht ueberschreiben kann. */

/* Selbst gehostete Schriften -- kein externer Nachladeaufruf (DSGVO-konform).
   Dateien liegen unter: wp-content/uploads/jcs/fonts/ */

@font-face {
  font-family: 'General Sans';
  src: url('fonts/GeneralSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('fonts/GeneralSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('fonts/GeneralSans-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('fonts/JetBrainsMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('fonts/JetBrainsMono-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

#jcs-contact-form-root .kf-overlay {
  --ink: #0F1419;
  --ink-2: #2B3138;
  --ink-3: #5C636B;
  --ink-4: #9AA0A6;
  --line: #E5E1D8;
  --paper: #F0EDE5;
  --white: #FAF8F3;
  --amber: #E8B53A;
  --amber-2: #C99A1F;
  --amber-deep: #1F1A0A;
  --font-sans: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  position: fixed;
  inset: 0;
  background: rgba(15, 20, 25, 0.6);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2147483647;
  box-sizing: border-box;
  animation: kf-overlay-in 0.2s ease;
}
@keyframes kf-overlay-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

#jcs-contact-form-root .kf-overlay, #jcs-contact-form-root .kf-overlay * { box-sizing: border-box; }
#jcs-contact-form-root :where(.kf-overlay) button { font-family: inherit; cursor: pointer; border: none; background: none; margin: 0; padding: 0; -webkit-appearance: none; appearance: none; text-align: left; }
#jcs-contact-form-root :where(.kf-overlay) a { color: inherit; }
#jcs-contact-form-root :where(.kf-overlay) * { margin: 0; }

#jcs-contact-form-root .kf-modal {
  background: var(--white);
  width: 100%;
  max-width: 680px;
  max-height: min(860px, 92vh);
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 80px -20px rgba(15, 20, 25, 0.45);
  animation: kf-modal-in 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
@keyframes kf-modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== HEADER ===== */
#jcs-contact-form-root .kf-header {
  background: var(--ink);
  color: var(--white);
  padding: 24px 28px 22px;
  flex-shrink: 0;
}
#jcs-contact-form-root .kf-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}
#jcs-contact-form-root .kf-header-titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#jcs-contact-form-root .kf-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
#jcs-contact-form-root .kf-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--white);
}
#jcs-contact-form-root .kf-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}
#jcs-contact-form-root .kf-close:hover { background: rgba(255, 255, 255, 0.16); color: var(--white); }

/* ===== PROGRESS ===== */
#jcs-contact-form-root .kf-progress {
  position: relative;
}
#jcs-contact-form-root .kf-progress-track {
  position: absolute;
  top: 14.5px;
  left: 15px;
  right: 15px;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  overflow: hidden;
}
#jcs-contact-form-root .kf-progress-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--amber-2), var(--amber));
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
#jcs-contact-form-root .kf-progress-steps {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
#jcs-contact-form-root .kf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  background: none;
  border: none;
  color: inherit;
  flex: 1;
}
#jcs-contact-form-root .kf-step.is-clickable { cursor: pointer; }
#jcs-contact-form-root .kf-step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}
#jcs-contact-form-root .kf-step.is-active .kf-step-circle {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--amber-deep);
}
#jcs-contact-form-root .kf-step.is-done .kf-step-circle {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}
#jcs-contact-form-root .kf-step.is-clickable:hover .kf-step-circle {
  border-color: rgba(255, 255, 255, 0.6);
}
#jcs-contact-form-root .kf-step-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  transition: color 0.2s ease;
}
#jcs-contact-form-root .kf-step.is-active .kf-step-label, #jcs-contact-form-root .kf-step.is-done .kf-step-label { color: rgba(255, 255, 255, 0.85); }
#jcs-contact-form-root .kf-step-check { font-size: 13px; }

/* ===== BODY ===== */
#jcs-contact-form-root .kf-body {
  padding: 30px 28px 8px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}
#jcs-contact-form-root .kf-step-head {
  margin-bottom: 24px;
}
#jcs-contact-form-root .kf-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-2);
  margin-bottom: 8px;
}
#jcs-contact-form-root .kf-step-h {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
#jcs-contact-form-root .kf-step-sub {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ===== FORM ELEMENTS ===== */
#jcs-contact-form-root .kf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
#jcs-contact-form-root .kf-row {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}
#jcs-contact-form-root .kf-row-2 { grid-template-columns: 1fr 1fr; }
#jcs-contact-form-root .kf-row-3 { grid-template-columns: 1fr 1fr 1fr; }
#jcs-contact-form-root .kf-row-25-75 { grid-template-columns: 0.6fr 1.4fr; }
#jcs-contact-form-root .kf-row > .kf-field { margin-bottom: 0; }

#jcs-contact-form-root .kf-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex;
  gap: 6px;
  align-items: center;
}
#jcs-contact-form-root .kf-label .req { color: var(--amber-2); }
#jcs-contact-form-root .kf-label .opt {
  font-size: 9px;
  color: var(--ink-4);
  text-transform: none;
  letter-spacing: 0;
}

#jcs-contact-form-root .kf-input, #jcs-contact-form-root .kf-select, #jcs-contact-form-root .kf-textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 12px 14px;
  transition: border-color 0.15s ease;
}
#jcs-contact-form-root .kf-input:focus, #jcs-contact-form-root .kf-select:focus, #jcs-contact-form-root .kf-textarea:focus {
  outline: none;
  border-color: var(--ink);
}
#jcs-contact-form-root .kf-input.has-error, #jcs-contact-form-root .kf-select.has-error, #jcs-contact-form-root .kf-textarea.has-error {
  border-color: #c63838;
}
#jcs-contact-form-root .kf-textarea { resize: vertical; min-height: 84px; font-family: var(--font-sans); }
#jcs-contact-form-root .kf-error-text {
  font-size: 12px;
  color: #c63838;
  font-family: var(--font-sans);
}

/* segmented control */
#jcs-contact-form-root .kf-seg {
  display: grid;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 3px;
  border-radius: 2px;
}
#jcs-contact-form-root .kf-seg-2 { grid-template-columns: repeat(2, 1fr); }
#jcs-contact-form-root .kf-seg-btn {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 8px;
  color: var(--ink-3);
  background: none;
  border-radius: 1px;
  transition: background 0.15s ease, color 0.15s ease;
}
#jcs-contact-form-root .kf-seg-btn:hover { color: var(--ink); }
#jcs-contact-form-root .kf-seg-btn.active { background: var(--ink); color: var(--white); }

/* category cards */
#jcs-contact-form-root .kf-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
#jcs-contact-form-root .kf-size-block {
  margin-bottom: 20px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
}
#jcs-contact-form-root .kf-size-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
#jcs-contact-form-root .kf-size-block-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
#jcs-contact-form-root .kf-size-block-count {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--amber-2);
  letter-spacing: 0.04em;
}
#jcs-contact-form-root .kf-size-block-custom {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}
#jcs-contact-form-root .kf-cat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  text-align: left;
}
#jcs-contact-form-root .kf-cat-card:hover { border-color: var(--ink-3); }
#jcs-contact-form-root .kf-cat-card.active { border-color: var(--ink); background: var(--paper); }
#jcs-contact-form-root .kf-cat-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 2px;
  display: grid;
  place-items: center;
  color: var(--ink-2);
  flex-shrink: 0;
  background: var(--white);
}
#jcs-contact-form-root .kf-cat-card.active .kf-cat-icon { border-color: var(--amber-2); color: var(--amber-2); }
#jcs-contact-form-root .kf-cat-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
#jcs-contact-form-root .kf-cat-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.03em;
}

/* size chips */
#jcs-contact-form-root .kf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#jcs-contact-form-root .kf-chip {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.12s ease;
}
#jcs-contact-form-root .kf-chip:hover { border-color: var(--ink-3); }
#jcs-contact-form-root .kf-chip.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* quantity stepper */
#jcs-contact-form-root .kf-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  width: fit-content;
}
#jcs-contact-form-root .kf-stepper-btn {
  width: 40px; height: 44px;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.12s ease;
}
#jcs-contact-form-root .kf-stepper-btn:hover { background: var(--paper); }
#jcs-contact-form-root .kf-stepper-val {
  width: 48px;
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  height: 44px;
  display: grid;
  place-items: center;
}

/* extras checkbox grid */
#jcs-contact-form-root .kf-extras-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  margin-bottom: 20px;
  cursor: pointer;
}
#jcs-contact-form-root .kf-extras-toggle-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}
#jcs-contact-form-root .kf-extras-toggle-sub {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 1px;
}
#jcs-contact-form-root .kf-extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  transition: opacity 0.2s ease;
}
#jcs-contact-form-root .kf-extras-grid.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}
#jcs-contact-form-root .kf-extra-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}
#jcs-contact-form-root .kf-extra-card:hover { border-color: var(--ink-3); }
#jcs-contact-form-root .kf-extra-card.active { border-color: var(--ink); background: var(--paper); }
#jcs-contact-form-root .kf-extra-check {
  width: 18px; height: 18px;
  border: 1px solid var(--ink-4);
  border-radius: 2px;
  background: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.12s ease;
}
#jcs-contact-form-root .kf-extra-card.active .kf-extra-check {
  background: var(--ink);
  border-color: var(--ink);
}
#jcs-contact-form-root .kf-extra-card.active .kf-extra-check::after {
  content: "";
  width: 9px; height: 5px;
  border-left: 1.5px solid var(--amber);
  border-bottom: 1.5px solid var(--amber);
  transform: rotate(-45deg) translate(1px, -1px);
}
#jcs-contact-form-root .kf-extra-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
#jcs-contact-form-root .kf-extra-card.active .kf-extra-label { color: var(--ink); }

/* checkbox row (privacy) */
#jcs-contact-form-root .kf-check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
}
#jcs-contact-form-root .kf-check-row.has-error { border-color: #c63838; }
#jcs-contact-form-root .kf-check-box {
  width: 18px; height: 18px;
  border: 1px solid var(--ink-4);
  border-radius: 2px;
  background: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.12s ease;
}
#jcs-contact-form-root .kf-check-row.active .kf-check-box {
  background: var(--ink);
  border-color: var(--ink);
}
#jcs-contact-form-root .kf-check-row.active .kf-check-box::after {
  content: "";
  width: 9px; height: 5px;
  border-left: 1.5px solid var(--amber);
  border-bottom: 1.5px solid var(--amber);
  transform: rotate(-45deg) translate(1px, -1px);
}
#jcs-contact-form-root .kf-check-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
}
#jcs-contact-form-root .kf-check-text a { color: var(--ink); border-bottom: 1px solid var(--amber); }
#jcs-contact-form-root .kf-check-text a:hover { color: var(--amber-2); }

/* delivery mode toggle */
#jcs-contact-form-root .kf-delivery-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
#jcs-contact-form-root .kf-delivery-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}
#jcs-contact-form-root .kf-delivery-card:hover { border-color: var(--ink-3); }
#jcs-contact-form-root .kf-delivery-card.active { border-color: var(--ink); background: var(--paper); }
#jcs-contact-form-root .kf-delivery-h {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 3px;
}
#jcs-contact-form-root .kf-delivery-p {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.4;
}

/* summary box on customer-data step */
#jcs-contact-form-root .kf-summary {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 16px 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#jcs-contact-form-root .kf-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}
#jcs-contact-form-root .kf-summary-l {
  font-family: var(--font-mono);
  color: var(--ink-3);
  letter-spacing: 0.03em;
}
#jcs-contact-form-root .kf-summary-v {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--ink);
  text-align: right;
}

/* ===== FOOTER ===== */
#jcs-contact-form-root .kf-footer {
  padding: 18px 28px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  background: var(--white);
}
#jcs-contact-form-root .kf-footer-step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
#jcs-contact-form-root .kf-footer-r { display: flex; gap: 10px; }

#jcs-contact-form-root .kf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
#jcs-contact-form-root .kf-btn:hover { transform: translateY(-1px); }
#jcs-contact-form-root .kf-btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line);
}
#jcs-contact-form-root .kf-btn-ghost:hover { border-color: var(--ink-3); color: var(--ink); }
#jcs-contact-form-root .kf-btn-primary {
  background: var(--ink);
  color: var(--white);
  border: none;
}
#jcs-contact-form-root .kf-btn-primary:hover { background: #1f262e; }
#jcs-contact-form-root .kf-btn-submit {
  background: var(--amber);
  color: var(--amber-deep);
  border: none;
}
#jcs-contact-form-root .kf-btn-submit:hover { background: #f0c050; }
#jcs-contact-form-root .kf-btn-submit:disabled, #jcs-contact-form-root .kf-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ===== SUCCESS STATE ===== */
#jcs-contact-form-root .kf-success {
  padding: 56px 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
#jcs-contact-form-root .kf-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--amber);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 6px;
}
#jcs-contact-form-root .kf-success-h {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
#jcs-contact-form-root .kf-success-p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 380px;
}
#jcs-contact-form-root .kf-success-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-top: 8px;
}
#jcs-contact-form-root .kf-success-close {
  margin-top: 12px;
}

/* ===== responsive ===== */
@media (max-width: 640px) {
  #jcs-contact-form-root .kf-modal { max-height: 100vh; height: 100%; max-width: 100%; }
  #jcs-contact-form-root .kf-row-2, #jcs-contact-form-root .kf-row-3, #jcs-contact-form-root .kf-row-25-75 { grid-template-columns: 1fr; }
  #jcs-contact-form-root .kf-cat-grid { grid-template-columns: 1fr; }
  #jcs-contact-form-root .kf-extras-grid { grid-template-columns: 1fr; }
  #jcs-contact-form-root .kf-delivery-toggle { grid-template-columns: 1fr; }
  #jcs-contact-form-root .kf-step-label { display: none; }
  #jcs-contact-form-root .kf-header { padding: 20px 20px 18px; }
  #jcs-contact-form-root .kf-body { padding: 24px 20px 8px; }
  #jcs-contact-form-root .kf-footer { padding: 16px 20px 20px; }
}
