
/* =========================================================
   v2.8.31 — Remade Contact page
   Scope: contact/kontakt page only.
   ========================================================= */

.hs-contact-v2831 {
  width: 100%;
}

.hs-contact-v2831 .contact-hero {
  padding: clamp(56px, 8vw, 108px) 0 clamp(36px, 5vw, 72px);
}

.hs-contact-v2831 .contact-hero .container {
  max-width: 1180px;
}

.hs-contact-v2831 .contact-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
}

.hs-contact-v2831 .contact-hero .lead {
  max-width: 900px;
  color: #304563;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.58;
}

.hs-contact-v2831 .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

.hs-contact-v2831 .contact-card {
  border: 1px solid #C7D7EE;
  border-radius: 28px;
  background: #FFFFFF;
  padding: clamp(30px, 4vw, 56px);
  box-shadow: 0 24px 80px rgba(15, 27, 45, 0.06);
}

.hs-contact-v2831 .contact-card h2,
.hs-contact-v2831 .contact-card h3 {
  margin-top: 0;
}

.hs-contact-v2831 .contact-card p {
  color: #304563;
  line-height: 1.65;
}

.hs-contact-v2831 .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
  align-items: start;
}

.hs-contact-v2831 .form-field {
  min-width: 0;
}

.hs-contact-v2831 .form-field--full {
  grid-column: 1 / -1;
}

.hs-contact-v2831 label {
  display: block;
  margin: 0 0 14px;
  color: #0F1B2D;
  font-family: Inter, Manrope, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hs-contact-v2831 input,
.hs-contact-v2831 textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #C7D7EE;
  border-radius: 22px;
  background: #FFFFFF;
  color: #0F1B2D;
  font-family: Inter, Manrope, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 1rem;
  line-height: 1.45;
  padding: 18px 22px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.hs-contact-v2831 input {
  min-height: 74px;
}

.hs-contact-v2831 textarea {
  min-height: 220px;
  resize: vertical;
}

.hs-contact-v2831 input:focus,
.hs-contact-v2831 textarea:focus {
  border-color: #1857B8;
  box-shadow: 0 0 0 4px rgba(24, 87, 184, 0.12);
}

.hs-contact-v2831 .form-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hs-contact-v2831 .btn,
.hs-contact-v2831 button {
  min-height: 62px;
  min-width: 210px;
  padding: 16px 34px;
  border-radius: 999px;
  font-family: Inter, Manrope, "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 800;
  line-height: 1.2;
}

.hs-contact-v2831 .form-status,
.hs-contact-v2831 [data-form-status] {
  margin: 18px 0 0;
  color: #304563;
  font-family: Inter, Manrope, "Helvetica Neue", Arial, sans-serif !important;
  line-height: 1.5;
}

.hs-contact-v2831 .side-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.hs-contact-v2831 .side-item {
  border-top: 1px solid #C7D7EE;
  padding-top: 18px;
}

.hs-contact-v2831 .side-item strong {
  display: block;
  color: #0F1B2D;
  margin-bottom: 6px;
}

.hs-contact-v2831 .newsletter-section {
  margin-top: clamp(34px, 5vw, 64px);
}

.hs-contact-v2831 .newsletter-card {
  border: 1px solid #C7D7EE;
  border-radius: 28px;
  background: #FFFFFF;
  padding: clamp(30px, 4vw, 56px);
  box-shadow: 0 24px 80px rgba(15, 27, 45, 0.06);
}

.hs-contact-v2831 .newsletter-card .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hs-contact-v2831 .newsletter-card .form-field--email {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .hs-contact-v2831 .contact-grid {
    grid-template-columns: 1fr;
  }

  .hs-contact-v2831 .contact-card {
    border-radius: 24px;
  }
}

@media (max-width: 760px) {
  .hs-contact-v2831 .contact-hero {
    padding: 42px 0 30px;
  }

  .hs-contact-v2831 .form-grid,
  .hs-contact-v2831 .newsletter-card .form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hs-contact-v2831 .form-field--full,
  .hs-contact-v2831 .newsletter-card .form-field--email {
    grid-column: auto;
  }

  .hs-contact-v2831 .contact-card,
  .hs-contact-v2831 .newsletter-card {
    border-radius: 22px;
    padding: 26px;
  }

  .hs-contact-v2831 input {
    min-height: 64px;
    border-radius: 18px;
  }

  .hs-contact-v2831 textarea {
    min-height: 180px;
    border-radius: 18px;
  }

  .hs-contact-v2831 .btn,
  .hs-contact-v2831 button {
    width: 100%;
    min-width: 0;
  }
}
