/* ========== TOKENS / RESET LOKALNY ========== */
/* ========== TYPO ========== */
/* ========== BUTTONS ========== */
/* ========== HERO ========== */
/* ========== PLATFORMS ========== */
/* ========== OFFER ========== */
/* ========== TRUST (ORANGE BAND) ========== */
/* ========== PROCESS + STEPS ========== */
/* ========== CONTACT ========== */
/* ========== FOOTER ========== */
/* ========== RWD ========== */
:root {
  --lp-bg: #f3f8fb;
  --lp-white: #ffffff;
  --lp-text: #101828;
  --lp-muted: #1c1c1c;
  --lp-accent: #f25523;
  --lp-accent-2: #ff6a2a;
  --lp-radius: 14px;
  --lp-radius-lg: 18px;
  --lp-shadow: 0 18px 45px rgba(16, 24, 40, .12);
  --lp-shadow-soft: 0 10px 28px rgba(16, 24, 40, .10);
  --lp-border: 1px solid rgba(16, 24, 40, .10);
}

.lp {
  color: var(--lp-text);
  background: var(--lp-bg);
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.lp img {
  max-width: 100%;
  height: auto;
  display: block;
}

.lp-skip {
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 0.6rem 0.8rem;
  background: #000;
  color: #fff;
  border-radius: 10px;
  transform: translateY(-140%);
}
.lp-skip:focus {
  transform: translateY(0);
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.lp-accent {
  color: var(--lp-accent);
}

.lp-muted {
  color: var(--lp-muted);
  line-height: 1.6;
}

.lp-h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 1.2rem 0;
  font-size: 1.8rem;
}

.lp-h2--onDark {
  color: #fff;
}

.lp-h3 {
  font-weight: 700;
  margin: 0 0 0.45rem 0;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.lp-sectionHead {
  margin-bottom: 4rem;
}
.lp-sectionHead .lp-muted {
  font-size: 1.25rem;
}

.lp-sectionHead--center {
  text-align: center;
}
.lp-sectionHead--center .lp-muted {
  font-size: 1.25rem;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.75rem 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 0.1875rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.lp-btn:focus {
  outline: 3px solid rgba(242, 85, 35, 0.35);
  outline-offset: 2px;
}

.lp-btn--primary {
  background: var(--lp-accent);
  color: #fff;
  box-shadow: 0 12px 25px rgba(242, 85, 35, 0.25);
}
.lp-btn--primary:hover {
  transform: translateY(-1px);
  color: #fff;
  background-color: #121212;
}

.lp-btn--ghost {
  background-color: #121212;
  color: #fff;
}
.lp-btn--ghost:hover {
  transform: translateY(-1px);
  color: #fff;
}

.lp-btn--dark {
  background: #111827;
  color: #fff;
  border-color: #111827;
}
.lp-btn--dark:hover {
  transform: translateY(-1px);
}

.lp-hero {
  padding: 8rem 0 3rem 0;
  background: #e9f2f7;
}
@media (max-width: 768px) {
  .lp-hero {
    padding: 2rem 0 2rem 0;
  }
}

.lp-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1rem, 0.7rem + 2vw, 2.25rem);
  align-items: center;
}

.lp-hero__media {
  margin: 0;
  overflow: hidden;
  background: #fff;
}
.lp-hero__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lp-hero__content {
  max-width: 520px;
}

.lp-hero__title {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 130%;
  margin: 0 0 1rem 0;
  font-size: clamp(1.65rem, 1.05rem + 1vw, 2.6rem);
}

.lp-hero__lead {
  margin: 0 0 1.25rem 0;
  color: #000;
  line-height: 1.7;
  font-size: 1.125rem;
}

.lp-hero__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.lp-platforms {
  padding: 1.4rem 0 2.2rem 0;
  background: #e9f2f7;
}

.lp-platforms__title {
  margin: 0 0 1rem 0;
  text-align: center;
  color: #000;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 130%;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .lp-platforms__title {
    font-size: 1.5rem;
  }
}

.lp-platforms__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.lp-platform {
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.06);
  min-height: 100px;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.lp-platform img {
  opacity: 0.9;
}

.lp-offer {
  padding: clamp(2.5rem, 1.3rem + 3vw, 4rem) 0;
  background: var(--lp-bg);
}

.lp-offer__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(4.2rem, 0.8rem + 2vw, 2.3rem);
  align-items: start;
}

.lp-offer__mock {
  margin: 0;
}

.lp-offer__items {
  display: grid;
  gap: 1.25rem;
  padding-top: 0.25rem;
}

.lp-offerItem {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.25rem 0 1.2rem 0;
  border-bottom: 1px solid rgba(16, 24, 40, 0.1);
}
.lp-offerItem:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.lp-offerItem h3 {
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 2.625rem;
  color: #000000;
  margin-bottom: 0.8rem;
}
@media (max-width: 768px) {
  .lp-offerItem h3 {
    font-size: 1.5rem;
  }
}
.lp-offerItem p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #000000;
}
@media (max-width: 768px) {
  .lp-offerItem p {
    font-size: 1.25rem;
  }
}

.lp-offerItem__dot {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--lp-accent);
  display: inline-block;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.lp-trust {
  position: relative;
  padding: clamp(2.6rem, 1.2rem + 3vw, 4rem) 0;
  background: radial-gradient(1200px 380px at 10% 10%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)), linear-gradient(90deg, #f25523, #ff6a2a);
  background-size: cover;
  background-position: center;
  color: #fff;
}
.lp-trust.lp-trust--has-bg .container {
  position: relative;
  z-index: 1;
}

.lp-trust__head {
  margin-bottom: 3.5rem;
}

.lp-trust__lead {
  margin: 0.75rem 0 1.7rem 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
  font-size: 1.2rem;
}

.lp-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.lp-card {
  background: rgba(255, 255, 255, 0.94);
  color: var(--lp-text);
  border-radius: 16px;
  padding: 2.5rem 1.1rem;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.lp-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.lp-card__title {
  margin: 0 0 0.45rem 0;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 120%;
  color: #EF4A24;
  margin-bottom: 1.5rem;
}

.lp-card__text {
  margin: 0;
  color: #475467;
  line-height: 1.65;
}

.lp-process {
  padding: 4rem 0;
  background: #e9f2f7;
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .lp-steps {
    gap: 3rem;
  }
}

.lp-step {
  position: relative;
  background: #fff;
  border-radius: 0.625rem;
  padding: 2.5rem 1.1rem 1.1rem 1.1rem;
  border: 1px solid rgba(16, 24, 40, 0.08);
}

.lp-step__badge {
  transform: translateY(-17px);
  position: absolute;
  top: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lp-accent);
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.lp-step__title {
  margin: 0 0 1rem 0;
  font-weight: 800;
  font-size: 1.3rem;
}

.lp-step__text {
  margin: 0;
  color: #475467;
  line-height: 1.6;
}

.lp-contact {
  margin-top: 6rem;
}

.lp-contact__cta {
  background: var(--lp-accent);
  color: #fff;
  border-radius: 18px;
  padding: 2.8rem 1.25rem;
  box-shadow: 0 18px 40px rgba(242, 85, 35, 0.22);
}

.lp-contact__title {
  margin: 0 0 0.55rem 0;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.lp-contact__text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.lp-form {
  background: #fff;
  border-radius: 18px;
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(16, 24, 40, 0.1);
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.08);
}

.lp-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.lp-field {
  display: grid;
  gap: 0.35rem;
}

.lp-field--full {
  grid-column: 1/-1;
}

.lp-field__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #344054;
}

.lp-input {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(16, 24, 40, 0.14);
  padding: 0.65rem 0.75rem;
  font: inherit;
  background: #fff;
}
.lp-input:focus {
  outline: 3px solid rgba(242, 85, 35, 0.25);
  outline-offset: 2px;
  border-color: rgba(242, 85, 35, 0.35);
}

.lp-textarea {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(16, 24, 40, 0.14);
  padding: 0.65rem 0.75rem;
  font: inherit;
  background: #fff;
  min-height: 140px;
  resize: vertical;
}
.lp-textarea:focus {
  outline: 3px solid rgba(242, 85, 35, 0.25);
  outline-offset: 2px;
  border-color: rgba(242, 85, 35, 0.35);
}

.lp-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: #475467;
  font-size: 0.92rem;
  line-height: 1.5;
}
.lp-check input {
  margin-top: 0.22rem;
}

.lp-footer {
  background: #e9f2f7;
  padding: 1.5rem 0;
  color: #475467;
}

@media (max-width: 992px) {
  .lp-hero__grid {
    grid-template-columns: 1fr;
  }
  .lp-hero__content {
    max-width: none;
  }
  .lp-platforms__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-offer__grid {
    grid-template-columns: 1fr;
  }
  .lp-trust__grid {
    grid-template-columns: 1fr;
  }
  .lp-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-contact {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .lp-steps {
    grid-template-columns: 1fr;
  }
  .lp-form__grid {
    grid-template-columns: 1fr;
  }
}
.form.is-main-form {
  background-color: transparent;
  justify-content: flex-start;
  align-items: flex-start;
}
.form.is-main-form .form-check p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form.is-main-form .form-check p label {
  margin-top: 4px;
}/*# sourceMappingURL=lp.css.map */