.form-intro {
padding-bottom: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.form-intro h3 {
max-width: 430px;
  margin: 0 0 7px;
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.form-intro p {
margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-mark {
flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
}

.form-mark [data-lucide] {
width: 21px;
  height: 21px;
  stroke-width: 1.8;
}

.form-row {
display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.field {
padding-top: 18px;
  border-bottom: 1px solid #cfd0ca;
  transition: border-color 0.2s ease;
}

.field:focus-within {
border-color: var(--ink);
}

.field label {
display: block;
  margin-bottom: 1px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.field input {
width: 100%;
  height: 43px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
}

.field input::placeholder {
color: #8a8c85;
  opacity: 1;
}


.field textarea {
width: 100%;
  min-height: 118px;
  padding: 5px 0 10px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 17px;
  line-height: 1.5;
  resize: vertical;
}

.field textarea::placeholder {
color: #8a8c85;
  opacity: 1;
}

.field-optional {
color: var(--muted);
  font-weight: 400;
}

.field-hint {
display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.field.is-error {
border-color: #b82424;
}

.field-error {
min-height: 16px;
  margin-top: 4px;
  display: block;
  color: #9f1d1d;
  font-size: 11px;
}

.interest-field {
min-width: 0;
  margin: 25px 0 0;
  padding: 0;
  border: 0;
}

.interest-field legend {
margin-bottom: 10px;
  padding: 0;
  color: #3f403b;
  font-size: 12px;
  font-weight: 500;
}

.interest-options {
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.interest-options label {
min-width: 0;
  cursor: pointer;
}

.interest-options input {
position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.interest-options span {
min-height: 42px;
  padding: 8px 12px;
  display: grid;
  place-items: center;
  border: 1px solid #cfd0ca;
  border-radius: 999px;
  color: #464842;
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s var(--ease);
}

.interest-options label:hover span {
border-color: #999b94;
  background: var(--paper);
}

.interest-options input:checked + span {
border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.interest-options input:focus-visible + span {
outline: 3px solid rgba(255, 205, 1, 0.5);
  outline-offset: 2px;
}

.consent {
margin-top: 22px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #55574f;
  font-size: 11px;
  line-height: 1.45;
  cursor: pointer;
}

.consent input {
position: relative;
  width: 19px;
  height: 19px;
  margin: 0;
  appearance: none;
  border: 1px solid #a9aba4;
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
}

.consent input::after {
content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid var(--ink);
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
  transition: opacity 0.15s ease, transform 0.15s var(--ease);
}

.consent input:checked {
border-color: var(--yellow);
  background: var(--yellow);
}

.consent input:checked::after {
opacity: 1;
  transform: rotate(45deg) scale(1);
}

.consent input:focus-visible {
outline: 3px solid rgba(255, 205, 1, 0.5);
  outline-offset: 2px;
}

.consent-error {
margin-bottom: 0;
}

.form-actions {
margin-top: 16px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.form-note {
max-width: 180px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.submit-button {
position: relative;
  min-width: 250px;
}

.submit-button.is-loading .button-icon {
opacity: 0;
}

.submit-button.is-loading .button-state {
display: block;
}

.form-status {
min-height: 16px;
  margin: 8px 0 0;
  color: #55574f;
  font-size: 11px;
  line-height: 1.45;
}

@keyframes spin {
to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
.form-intro {
padding-bottom: 20px;
    gap: 16px;
}

.form-intro h3 {
font-size: 25px;
}

.form-mark {
width: 46px;
    height: 46px;
}

.form-row {
gap: 0;
}

.interest-options {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-actions {
grid-template-columns: 1fr;
    gap: 12px;
}

.form-note {
max-width: none;
}

.submit-button {
width: 100%;
    min-width: 0;
}
}
.form-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}

.contact {
position: relative;
  min-height: 690px;
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  overflow: hidden;
  background: #22231f;
}

.contact-backdrop {
position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(17, 18, 15, 0.94) 0%,
      rgba(17, 18, 15, 0.8) 44%,
      rgba(17, 18, 15, 0.45) 100%
    ),
    var(--contact-bg) center / cover no-repeat;
}

.contact-copy,
.contact-form {
position: relative;
  z-index: 2;
}

.contact-copy {
max-width: 560px;
  color: var(--white);
}

.contact-copy h2 {
margin-bottom: 18px;
  font-size: clamp(42px, 4.2vw, 62px);
}

.contact-copy > p {
max-width: 460px;
  margin-bottom: 34px;
  color: rgba(254, 254, 252, 0.72);
  font-size: 17px;
}

.contact-direct {
display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.contact-direct a {
color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

.contact-direct a:first-child {
font-size: 27px;
  letter-spacing: -0.03em;
}

.contact-form {
padding: clamp(28px, 3vw, 38px);
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(254, 254, 252, 0.97);
  box-shadow: 0 28px 70px rgba(7, 8, 6, 0.28);
}

.contact-form::before {
content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--yellow);
}

.contact > .media-label {
right: auto;
  left: 18px;
}

@media (prefers-reduced-transparency: reduce) {
.header-inner,
  .contact-form {
backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
}

@media (max-width: 1180px) {
.contact {
grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 42px;
}
}

@media (max-width: 920px) {
.contact {
grid-template-columns: minmax(0, 1fr);
    min-height: 0;
}

.contact-copy {
padding-top: 36px;
}

.contact-backdrop {
background:
      linear-gradient(
        180deg,
        rgba(17, 18, 15, 0.92) 0%,
        rgba(17, 18, 15, 0.78) 55%,
        rgba(17, 18, 15, 0.88) 100%
      ),
      var(--contact-bg) center / cover no-repeat;
}
}

@media (max-width: 640px) {
.contact {
padding-top: 38px;
    padding-bottom: 52px;
    gap: 34px;
}

.contact-copy {
padding-top: 50px;
}

.contact-copy h2 {
font-size: 42px;
}

.contact-form {
padding: 21px;
}
}

.contact-backdrop{background-image:linear-gradient(90deg,rgba(15,15,14,.86),rgba(15,15,14,.56)),var(--contact-bg);}


.contact-light {
min-height: 0;
  align-items: center;
  background: var(--paper);
}

.contact-light .contact-copy {
color: var(--ink);
}

.contact-light .contact-copy > p {
color: var(--muted);
}

.contact-light .contact-direct a {
color: var(--ink);
}

.contact-light .contact-form {
background: var(--white);
  box-shadow: 0 20px 55px rgba(23, 23, 18, 0.09);
}

.form-section-financing {
align-items: start;
}

.form-section-financing .contact-copy {
padding-top: clamp(24px, 3vw, 42px);
}

@media (max-width: 920px) {
.form-section-financing .contact-copy {
padding-top: 0;
}
}

/* Odnośnik przy zgodzie musi odróżniać się od tekstu klauzuli. */
.luke-form-consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
