/* SHARKZ Startseite – Plattform- und Marketplace-Design */
:root {
  --lp-brand: #585bff;
  --lp-brand-dark: #4144de;
  --lp-brand-soft: #eeefff;
  --lp-ink: #141522;
  --lp-text: #55596d;
  --lp-muted: #7b8095;
  --lp-line: #e5e7ef;
  --lp-surface: #ffffff;
  --lp-soft: #f6f7fb;
  --lp-success: #16a36f;
  --lp-success-soft: #e7f8f1;
  --lp-warning: #f4a11a;
  --lp-danger: #ef525d;
  --lp-radius: 20px;
  --lp-shadow: 0 24px 70px rgba(31, 32, 65, 0.1);
}

.lp-home {
  overflow-x: hidden;
  background: #fff;
  color: var(--lp-ink);
}

.lp-home main {
  overflow: hidden;
}

.lp-shell {
  width: min(calc(100% - 40px), 1200px);
  margin-inline: auto;
}

.lp-section {
  padding-block: clamp(78px, 8vw, 122px);
}

.lp-section-heading {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 58px);
}

.lp-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.lp-section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 48px;
}

.lp-section-heading h2 {
  margin: 13px 0 0;
  color: var(--lp-ink);
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  font-weight: 780;
  letter-spacing: -0.052em;
  line-height: 1.04;
  text-wrap: balance;
}

.lp-section-heading p {
  margin: 18px 0 0;
  color: var(--lp-text);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.65;
}

.lp-section-heading--split > p {
  margin: 0 0 4px;
}

.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lp-brand-dark);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.lp-kicker--dark {
  color: #b9bbff;
}

.lp-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.91rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.lp-button:hover {
  transform: translateY(-2px);
}

.lp-button--primary {
  background: var(--lp-brand);
  color: #fff;
  box-shadow: 0 13px 28px rgba(88, 91, 255, 0.24);
}

.lp-button--primary:hover {
  background: var(--lp-brand-dark);
  box-shadow: 0 17px 34px rgba(88, 91, 255, 0.28);
}

.lp-button--secondary,
.lp-button--ghost {
  border-color: var(--lp-line);
  background: #fff;
  color: #292b3b;
}

.lp-button--secondary:hover,
.lp-button--ghost:hover {
  border-color: #c9cafa;
  background: #f8f8ff;
}

.lp-button--light {
  background: #fff;
  color: #2926a7;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.lp-button--outline-light {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lp-button:focus-visible,
.lp-home button:focus-visible,
.lp-home input:focus-visible,
.lp-home select:focus-visible,
.lp-home a:focus-visible {
  outline: 3px solid rgba(88, 91, 255, 0.3);
  outline-offset: 3px;
}

/* Hero */
.lp-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height, 78px));
  display: grid;
  align-items: center;
  padding: clamp(68px, 7vw, 104px) 0 clamp(76px, 8vw, 118px);
  background:
    radial-gradient(circle at 88% 12%, rgba(88, 91, 255, 0.12), transparent 27%),
    radial-gradient(circle at 8% 74%, rgba(96, 167, 255, 0.08), transparent 25%),
    #f8f9fd;
}

.lp-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image: linear-gradient(rgba(88, 91, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(88, 91, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  content: "";
  pointer-events: none;
}

.lp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(46px, 6vw, 84px);
}

.lp-hero__copy h1 {
  max-width: 650px;
  margin: 21px 0 22px;
  color: var(--lp-ink);
  font-size: clamp(3.2rem, 5.6vw, 5.25rem);
  font-weight: 810;
  letter-spacing: -0.066em;
  line-height: 0.96;
}

.lp-hero__copy h1 span {
  display: block;
  margin-top: 0.1em;
  color: var(--lp-brand);
}

.lp-hero__copy > p:not(.lp-hero__trust) {
  max-width: 620px;
  margin: 0;
  color: var(--lp-text);
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.62;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.lp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 21px 0 0;
  color: #676b7e;
  font-size: 0.78rem;
  font-weight: 650;
}

.lp-hero__trust > i {
  color: var(--lp-success);
}

.lp-demo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(68, 69, 120, 0.15);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 38px 95px rgba(42, 42, 92, 0.16);
}

.lp-demo::before {
  position: absolute;
  z-index: -1;
  inset: 55px -35px -35px 52px;
  border-radius: 35px;
  background: #e9eaff;
  content: "";
}

.lp-demo__chrome,
.lp-demo__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.lp-demo__chrome {
  height: 53px;
  padding: 0 18px;
  border-bottom: 1px solid var(--lp-line);
  background: #fbfbfe;
}

.lp-demo__dots {
  display: flex;
  gap: 5px;
}

.lp-demo__dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8cad6;
}

.lp-demo__chrome > strong {
  color: var(--lp-ink);
  font-size: 0.83rem;
  letter-spacing: -0.02em;
}

.lp-demo__online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #167c59;
  font-size: 0.7rem;
  font-weight: 750;
}

.lp-demo__online i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #20b77f;
  box-shadow: 0 0 0 5px rgba(32, 183, 127, 0.12);
}

.lp-demo__header {
  padding: 18px 22px 13px;
}

.lp-demo__header > div {
  display: grid;
  gap: 3px;
}

.lp-demo__header small {
  color: var(--lp-muted);
  font-size: 0.68rem;
}

.lp-demo__header strong {
  color: var(--lp-ink);
  font-size: 1.03rem;
}

.lp-demo__header > span {
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--lp-brand-soft);
  color: var(--lp-brand-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.lp-demo__viewport {
  position: relative;
  height: 305px;
  margin: 0 18px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #f7f7ff, #f1f3fa);
}

.lp-demo__stage {
  position: absolute;
  inset: 0;
  display: grid;
  visibility: hidden;
  align-items: center;
  padding: 26px;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition: opacity 380ms ease, transform 380ms ease, visibility 380ms;
}

.lp-demo__stage.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lp-demo__stage:first-child {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 17px;
}

.lp-demo__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: var(--lp-brand-soft);
  color: var(--lp-brand);
  font-size: 1.2rem;
}

.lp-demo__stage small {
  color: var(--lp-muted);
  font-size: 0.69rem;
}

.lp-demo__stage h2 {
  margin: 3px 0 10px;
  font-size: 1.16rem;
  letter-spacing: -0.03em;
}

.lp-demo__stage ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-demo__stage li {
  padding: 5px 8px;
  border: 1px solid #dedff0;
  border-radius: 999px;
  background: #fff;
  color: #64687b;
  font-size: 0.67rem;
}

.lp-status {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 800;
}

.lp-status--open {
  background: #fff0f1;
  color: #c93c48;
}

.lp-demo__match,
.lp-demo__complete {
  width: min(100%, 390px);
  margin: auto;
  text-align: center;
}

.lp-demo__match > small {
  display: block;
  margin-bottom: 22px;
  color: var(--lp-brand-dark);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-demo__avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.lp-demo__avatars span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-left: -8px;
  place-items: center;
  border: 4px solid #f4f4ff;
  border-radius: 50%;
  background: #fff;
  color: var(--lp-brand-dark);
  box-shadow: 0 10px 24px rgba(46, 47, 92, 0.12);
  font-size: 0.72rem;
  font-weight: 850;
}

.lp-demo__match strong {
  display: block;
  font-size: 1.05rem;
}

.lp-demo__match p,
.lp-demo__complete p,
.lp-demo__proof p {
  margin: 6px 0 0;
  color: var(--lp-text);
  font-size: 0.75rem;
  line-height: 1.55;
}

.lp-demo__chat {
  display: grid;
  width: min(100%, 420px);
  gap: 9px;
  margin: auto;
}

.lp-demo__chat > span {
  width: fit-content;
  max-width: 82%;
  padding: 10px 12px;
  border: 1px solid #e1e2ee;
  border-radius: 12px 12px 12px 3px;
  background: #fff;
  color: #4d5062;
  font-size: 0.73rem;
}

.lp-demo__chat > span.is-own {
  justify-self: end;
  border: 0;
  border-radius: 12px 12px 3px 12px;
  background: var(--lp-brand);
  color: #fff;
}

.lp-demo__chat strong {
  justify-self: center;
  margin-top: 5px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--lp-success-soft);
  color: #157452;
  font-size: 0.7rem;
}

.lp-demo__checklist {
  display: grid;
  width: min(100%, 410px);
  margin: auto;
  overflow: hidden;
  border: 1px solid #e0e1ed;
  border-radius: 15px;
  background: #fff;
}

.lp-demo__checklist small,
.lp-demo__checklist span {
  padding: 10px 13px;
  border-bottom: 1px solid #ececf3;
}

.lp-demo__checklist small {
  color: var(--lp-brand-dark);
  font-weight: 800;
}

.lp-demo__checklist span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #575a6d;
  font-size: 0.73rem;
}

.lp-demo__checklist span:last-child {
  border-bottom: 0;
}

.lp-demo__checklist i {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--lp-success-soft);
  color: var(--lp-success);
  font-size: 0.58rem;
}

.lp-demo__proof {
  display: grid;
  width: min(100%, 430px);
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin: auto;
}

.lp-demo__proof > span {
  display: grid;
  height: 120px;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(145deg, #dadcff, #bfc4ff);
  color: #3639bf;
}

.lp-demo__proof > span i {
  font-size: 1.6rem;
}

.lp-demo__proof > span small {
  margin-top: -28px;
  font-weight: 750;
}

.lp-demo__proof strong {
  color: var(--lp-success);
  font-size: 1.15rem;
}

.lp-demo__complete > i {
  display: grid;
  width: 67px;
  height: 67px;
  margin: 0 auto 13px;
  place-items: center;
  border-radius: 50%;
  background: var(--lp-success-soft);
  color: var(--lp-success);
  box-shadow: 0 0 0 12px rgba(22, 163, 111, 0.08);
  font-size: 1.4rem;
}

.lp-demo__complete h2 {
  margin-bottom: 0;
}

.lp-demo__progress {
  height: 4px;
  margin: 16px 18px 0;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e8f1;
}

.lp-demo__progress i {
  display: block;
  width: 16.66%;
  height: 100%;
  border-radius: inherit;
  background: var(--lp-brand);
  transition: width 420ms ease;
}

.lp-demo__steps {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 0 16px;
}

.lp-demo__steps span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d6d7e2;
  transition: width 250ms ease, background-color 250ms ease;
}

.lp-demo__steps span.is-active {
  width: 20px;
  background: var(--lp-brand);
}

/* Progressive Auftragsformular */
.lp-order {
  position: relative;
  padding-block: clamp(76px, 8vw, 118px);
  background: #fff;
}

.lp-order-form {
  max-width: 1000px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--lp-line);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--lp-shadow);
}

.lp-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.lp-order-form__progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 38px;
}

.lp-order-form__progress > span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #979aab;
  font-size: 0.68rem;
}

.lp-order-form__progress > span::before {
  position: absolute;
  z-index: 0;
  top: 15px;
  right: 50%;
  left: -50%;
  height: 2px;
  background: #e7e8f0;
  content: "";
}

.lp-order-form__progress > span:first-child::before {
  display: none;
}

.lp-order-form__progress i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 2px solid #e3e4ed;
  border-radius: 50%;
  background: #fff;
  color: #8c8fa0;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
}

.lp-order-form__progress .is-active,
.lp-order-form__progress .is-complete {
  color: var(--lp-brand-dark);
}

.lp-order-form__progress .is-active i,
.lp-order-form__progress .is-complete i {
  border-color: var(--lp-brand);
  background: var(--lp-brand);
  color: #fff;
}

.lp-order-form__progress .is-complete::before,
.lp-order-form__progress .is-active::before {
  background: var(--lp-brand);
}

.lp-form-step {
  min-width: 0;
  padding: 0;
  border: 0;
  animation: lp-step-in 260ms ease both;
}

.lp-form-step[hidden] {
  display: none;
}

@keyframes lp-step-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp-form-step legend {
  width: 100%;
  margin-bottom: 24px;
  color: var(--lp-ink);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 780;
  letter-spacing: -0.035em;
  text-align: center;
}

.lp-form-step__intro {
  margin: -12px 0 25px;
  color: var(--lp-muted);
  text-align: center;
}

.lp-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.lp-service-grid label,
.lp-choice-grid label {
  cursor: pointer;
}

.lp-service-grid input,
.lp-choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lp-service-grid label > span,
.lp-choice-grid label > span {
  display: grid;
  min-height: 118px;
  place-items: center;
  align-content: center;
  gap: 11px;
  padding: 16px;
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  background: #fafafd;
  color: #4d5062;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.lp-service-grid label:hover > span,
.lp-choice-grid label:hover > span {
  transform: translateY(-2px);
  border-color: #c8c9fb;
  background: #fff;
}

.lp-service-grid input:checked + span,
.lp-choice-grid input:checked + span {
  border-color: var(--lp-brand);
  background: var(--lp-brand-soft);
  color: var(--lp-brand-dark);
  box-shadow: 0 0 0 3px rgba(88, 91, 255, 0.1);
}

.lp-service-grid i,
.lp-choice-grid i {
  color: var(--lp-brand);
  font-size: 1.25rem;
}

.lp-service-grid b,
.lp-choice-grid b {
  font-size: 0.78rem;
}

.lp-form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.lp-form-actions--end {
  justify-content: flex-end;
}

.lp-large-field {
  display: grid;
  max-width: 650px;
  gap: 9px;
  margin: 0 auto;
  color: #46495c;
  font-size: 0.78rem;
  font-weight: 750;
}

.lp-large-field > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid #dfe1eb;
  border-radius: 13px;
  background: #fff;
}

.lp-large-field i {
  color: var(--lp-brand);
}

.lp-large-field input {
  width: 100%;
  min-height: 62px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--lp-ink);
  font: inherit;
  font-size: 1rem;
}

.lp-choice-grid {
  display: grid;
  max-width: 800px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-inline: auto;
}

.lp-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lp-contact-grid label {
  display: grid;
  gap: 7px;
  color: #505366;
  font-size: 0.73rem;
  font-weight: 750;
}

.lp-contact-grid input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #dde0e9;
  border-radius: 10px;
  background: #fff;
  color: var(--lp-ink);
  font: inherit;
  font-size: 0.88rem;
}

.lp-contact-grid__wide {
  grid-column: 1 / -1;
}

.lp-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 19px;
  color: #686c7e;
  font-size: 0.72rem;
  line-height: 1.5;
}

.lp-privacy input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--lp-brand);
}

.lp-privacy a {
  color: var(--lp-brand-dark);
}

.lp-form-status {
  margin: 16px 0 0;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: 0.78rem;
}

.lp-form-status.is-success {
  background: var(--lp-success-soft);
  color: #126e4f;
}

.lp-form-status.is-error {
  background: #fff0f1;
  color: #b53642;
}

/* Vergleich */
.lp-compare {
  background: var(--lp-soft);
}

.lp-compare__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.lp-chaos-card,
.lp-control-card {
  min-height: 420px;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  background: #fff;
}

.lp-chaos-card header,
.lp-control-card header {
  display: grid;
  gap: 5px;
}

.lp-chaos-card header span,
.lp-control-card header span {
  color: var(--lp-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.lp-chaos-card header strong,
.lp-control-card header strong {
  font-size: 1.4rem;
  letter-spacing: -0.035em;
}

.lp-chaos-cloud {
  position: relative;
  min-height: 270px;
  margin-top: 28px;
}

.lp-chaos-cloud span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #e2e3ec;
  border-radius: 11px;
  background: #fafafd;
  color: #65687a;
  box-shadow: 0 9px 23px rgba(45, 47, 72, 0.07);
  font-size: 0.75rem;
}

.lp-chaos-cloud span:nth-child(1) { top: 8%; left: 4%; transform: rotate(-4deg); }
.lp-chaos-cloud span:nth-child(2) { top: 3%; right: 10%; transform: rotate(3deg); }
.lp-chaos-cloud span:nth-child(3) { top: 37%; left: 23%; transform: rotate(2deg); }
.lp-chaos-cloud span:nth-child(4) { top: 31%; right: 1%; transform: rotate(-3deg); }
.lp-chaos-cloud span:nth-child(5) { bottom: 12%; left: 2%; transform: rotate(4deg); }
.lp-chaos-cloud span:nth-child(6) { bottom: 3%; left: 39%; transform: rotate(-2deg); }
.lp-chaos-cloud span:nth-child(7) { bottom: 14%; right: 1%; transform: rotate(3deg); }
.lp-chaos-cloud span:nth-child(8) { top: 55%; left: 1%; transform: rotate(-2deg); }

.lp-control-card {
  border-color: rgba(88, 91, 255, 0.25);
  background: linear-gradient(145deg, #fff, #f3f3ff);
}

.lp-control-card__order {
  margin-top: 28px;
  padding: 17px;
  border: 1px solid #dfe0f3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(48, 48, 98, 0.11);
}

.lp-control-card__order > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ececf3;
}

.lp-control-card__order > div > i {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 12px;
  background: var(--lp-brand-soft);
  color: var(--lp-brand);
}

.lp-control-card__order > div span {
  display: grid;
  gap: 3px;
}

.lp-control-card__order small {
  color: var(--lp-muted);
  font-size: 0.67rem;
}

.lp-control-card__order b {
  font-size: 0.82rem;
}

.lp-control-card__order em {
  padding: 6px 8px;
  border-radius: 999px;
  background: #fff4df;
  color: #a96900;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 800;
}

.lp-control-card__order ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.lp-control-card__order li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border-radius: 9px;
  background: #f7f7fb;
  color: #5c6073;
  font-size: 0.71rem;
}

.lp-control-card__order li i {
  color: var(--lp-brand);
}

/* Vorteile und Zielgruppen */
.lp-benefits {
  background: #fff;
}

.lp-card-grid {
  display: grid;
  gap: 15px;
}

.lp-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lp-feature-card {
  position: relative;
  min-height: 295px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: 17px;
  background: #fff;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.lp-feature-card:hover {
  transform: translateY(-5px);
  border-color: #cecffa;
  box-shadow: 0 20px 45px rgba(45, 46, 91, 0.1);
}

.lp-feature-card > span {
  position: absolute;
  top: 21px;
  right: 22px;
  color: #c7c9d6;
  font-size: 0.68rem;
  font-weight: 800;
}

.lp-feature-card > i {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 52px;
  place-items: center;
  border-radius: 13px;
  background: var(--lp-brand-soft);
  color: var(--lp-brand);
  font-size: 1.05rem;
}

.lp-feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.lp-feature-card p {
  margin: 0;
  color: var(--lp-text);
  font-size: 0.82rem;
  line-height: 1.62;
}

.lp-audiences {
  background: var(--lp-soft);
}

.lp-audience-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lp-audience-track > a {
  position: relative;
  min-height: 250px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: 17px;
  background: #fff;
  color: var(--lp-ink);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.lp-audience-track > a:hover {
  transform: translateY(-4px);
  border-color: #c8cafa;
  box-shadow: 0 20px 45px rgba(45, 46, 91, 0.1);
}

.lp-audience-track > a > i {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 13px;
  background: var(--lp-brand-soft);
  color: var(--lp-brand);
}

.lp-audience-track h3 {
  margin: 45px 0 9px;
  font-size: 1.15rem;
}

.lp-audience-track p {
  margin: 0;
  color: var(--lp-text);
  font-size: 0.8rem;
}

.lp-audience-track > a > span {
  position: absolute;
  right: 25px;
  bottom: 21px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--lp-brand-dark);
  font-size: 0.73rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.lp-audience-track > a:hover > span,
.lp-audience-track > a:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

/* Dienstleister */
.lp-provider {
  padding-block: clamp(86px, 9vw, 132px);
  background:
    radial-gradient(circle at 88% 6%, rgba(88, 91, 255, 0.1), transparent 30%),
    #f6f7fb;
  color: var(--lp-ink);
}

.lp-home .lp-provider .lp-kicker {
  color: var(--lp-brand-dark) !important;
  -webkit-text-fill-color: var(--lp-brand-dark);
  opacity: 1 !important;
}

.lp-provider__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 94px);
}

.lp-home .lp-provider .lp-provider__intro h2 {
  margin: 17px 0 20px;
  color: var(--lp-ink) !important;
  -webkit-text-fill-color: var(--lp-ink);
  font-size: clamp(2.55rem, 4.5vw, 4.2rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
  opacity: 1 !important;
}

.lp-home .lp-provider .lp-provider__intro > div > p {
  max-width: 590px;
  color: var(--lp-text) !important;
  -webkit-text-fill-color: var(--lp-text);
  line-height: 1.65;
  opacity: 1 !important;
}

.lp-provider__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 29px;
}

.lp-provider .lp-button--light {
  background: var(--lp-brand);
  color: #fff;
  box-shadow: 0 13px 28px rgba(88, 91, 255, 0.24);
}

.lp-provider .lp-button--light:hover {
  background: var(--lp-brand-dark);
}

.lp-provider .lp-button--outline-light {
  border-color: var(--lp-line);
  background: #fff;
  color: var(--lp-ink);
}

.lp-provider__preview {
  padding: 18px;
  border: 1px solid var(--lp-line);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(39, 41, 74, 0.12);
}

.lp-provider__preview header {
  display: flex;
  justify-content: space-between;
  padding: 3px 2px 15px;
  color: var(--lp-ink);
}

.lp-provider__preview header em {
  color: var(--lp-brand-dark);
  font-size: 0.72rem;
  font-style: normal;
}

.lp-provider__preview article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  margin-top: 8px;
  padding: 13px;
  border: 1px solid var(--lp-line);
  border-radius: 13px;
  background: #fafafd;
}

.lp-provider__preview article > i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 11px;
  background: var(--lp-brand-soft);
  color: var(--lp-brand);
}

.lp-provider__preview article > span {
  display: grid;
  gap: 3px;
}

.lp-provider__preview small {
  color: var(--lp-ink);
}

.lp-provider__preview b {
  color: var(--lp-muted);
  font-size: 0.7rem;
}

.lp-provider__preview article > strong {
  padding: 7px 9px;
  border-radius: 8px;
  background: var(--lp-brand-soft);
  color: var(--lp-brand-dark);
  font-size: 0.68rem;
}

.lp-provider__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 70px;
}

.lp-provider__benefits article {
  min-height: 205px;
  padding: 23px;
  border: 1px solid var(--lp-line);
  border-radius: 15px;
  background: #fff;
  transition: transform 200ms ease, background-color 200ms ease;
}

.lp-provider__benefits article:hover {
  transform: translateY(-4px);
  border-color: #c8cafa;
  background: #fff;
  box-shadow: 0 18px 42px rgba(45, 46, 91, 0.09);
}

.lp-provider__benefits i {
  color: var(--lp-brand);
  font-size: 1.05rem;
}

.lp-provider__benefits h3 {
  margin: 38px 0 9px;
  color: var(--lp-ink);
  font-size: 1rem;
}

.lp-provider__benefits p {
  margin: 0;
  color: var(--lp-text);
  font-size: 0.77rem;
  line-height: 1.55;
}

.lp-package-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 20px;
  padding: 27px;
  border: 1px solid #d6d7ff;
  border-radius: 17px;
  background: var(--lp-brand-soft);
}

.lp-package-note > div {
  max-width: 760px;
}

.lp-package-note span {
  color: var(--lp-brand-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.lp-package-note h3 {
  margin: 6px 0 6px;
  color: var(--lp-ink);
  font-size: 1.25rem;
}

.lp-package-note p {
  margin: 0;
  color: var(--lp-text);
  font-size: 0.78rem;
}

/* Prozess */
.lp-process {
  background: #fff;
}

.lp-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-timeline::before {
  position: absolute;
  top: 38px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, #c8c9ff, var(--lp-brand), #c8c9ff);
  content: "";
}

.lp-timeline li {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  text-align: center;
}

.lp-timeline li > span {
  position: absolute;
  top: 0;
  right: 12px;
  color: #b8bac8;
  font-size: 0.66rem;
  font-weight: 800;
}

.lp-timeline li > i {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  place-items: center;
  border: 8px solid #fff;
  border-radius: 50%;
  background: var(--lp-brand-soft);
  color: var(--lp-brand);
  box-shadow: 0 0 0 1px #dedff2;
}

.lp-timeline h3 {
  margin: 0 0 8px;
  font-size: 0.92rem;
}

.lp-timeline p {
  margin: 0;
  color: var(--lp-text);
  font-size: 0.74rem;
  line-height: 1.5;
}

/* Produkt */
.lp-product {
  background: var(--lp-soft);
}

.lp-product__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.lp-product__tabs {
  display: grid;
  gap: 7px;
}

.lp-product__tabs button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: #666a7d;
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.lp-product__tabs button[aria-selected="true"] {
  border-color: #d9dafb;
  background: #fff;
  color: var(--lp-brand-dark);
  box-shadow: 0 10px 28px rgba(46, 47, 87, 0.07);
}

.lp-product__tabs button > i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  background: #ececff;
  color: var(--lp-brand);
}

.lp-product__tabs button > span {
  display: grid;
  gap: 2px;
}

.lp-product__tabs b {
  color: inherit;
  font-size: 0.78rem;
}

.lp-product__tabs small {
  color: #9194a5;
  font-size: 0.65rem;
}

.lp-browser {
  overflow: hidden;
  border: 1px solid #d8d9e4;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(39, 41, 74, 0.13);
}

.lp-browser__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 48px;
  padding: 0 15px;
  border-bottom: 1px solid #e5e6ed;
  background: #fbfbfd;
}

.lp-browser__bar > span {
  display: flex;
  gap: 5px;
}

.lp-browser__bar > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8cad4;
}

.lp-browser__bar strong {
  padding: 5px 16px;
  border-radius: 999px;
  background: #f0f1f6;
  color: #878a9a;
  font-size: 0.62rem;
  font-weight: 650;
}

.lp-browser__bar em {
  display: grid;
  width: 28px;
  height: 28px;
  justify-self: end;
  place-items: center;
  border-radius: 8px;
  background: var(--lp-brand);
  color: #fff;
  font-size: 0.61rem;
  font-style: normal;
  font-weight: 850;
}

.lp-browser__body {
  min-height: 480px;
  padding: clamp(21px, 4vw, 38px);
  background: #f7f8fc;
}

.lp-product-panel {
  animation: lp-panel-in 300ms ease both;
}

.lp-product-panel[hidden] {
  display: none;
}

@keyframes lp-panel-in {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

.lp-product-panel > header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.lp-product-panel > header small {
  color: var(--lp-brand-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-product-panel > header h3 {
  margin: 6px 0 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.04em;
}

.lp-product-panel > header button,
.lp-support-card button {
  min-height: 37px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: var(--lp-brand);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 750;
}

.lp-order-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.lp-order-columns article {
  display: grid;
  gap: 8px;
  padding: 15px;
  border: 1px solid #e2e3ed;
  border-radius: 12px;
  background: #fff;
}

.lp-order-columns span {
  color: #8a8d9e;
  font-size: 0.66rem;
}

.lp-order-columns strong {
  font-size: 1.25rem;
}

.lp-order-list {
  display: grid;
  margin: 11px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e2e3ed;
  border-radius: 12px;
  background: #fff;
  list-style: none;
}

.lp-order-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-bottom: 1px solid #ebebf1;
}

.lp-order-list li:last-child {
  border-bottom: 0;
}

.lp-order-list li > i {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 9px;
  background: var(--lp-brand-soft);
  color: var(--lp-brand);
}

.lp-order-list li > span {
  display: grid;
  gap: 3px;
}

.lp-order-list b {
  font-size: 0.74rem;
}

.lp-order-list small {
  color: #9295a4;
  font-size: 0.63rem;
}

.lp-order-list em {
  color: var(--lp-brand-dark);
  font-size: 0.63rem;
  font-style: normal;
  font-weight: 750;
}

.lp-chat-window {
  display: grid;
  max-width: 570px;
  gap: 11px;
}

.lp-chat-window > span {
  width: fit-content;
  max-width: 78%;
  padding: 12px 14px;
  border: 1px solid #e1e2eb;
  border-radius: 13px 13px 13px 3px;
  background: #fff;
  color: #565a6d;
  font-size: 0.75rem;
}

.lp-chat-window > span.is-own {
  justify-self: end;
  border: 0;
  border-radius: 13px 13px 3px 13px;
  background: var(--lp-brand);
  color: #fff;
}

.lp-chat-window strong {
  width: fit-content;
  margin-top: 8px;
  padding: 9px 12px;
  border-radius: 9px;
  background: var(--lp-success-soft);
  color: #157252;
  font-size: 0.7rem;
}

.lp-calendar {
  max-width: 620px;
  padding: 19px;
  border: 1px solid #e1e2ec;
  border-radius: 14px;
  background: #fff;
}

.lp-calendar > b {
  display: block;
  margin-bottom: 17px;
}

.lp-calendar > div {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.lp-calendar span {
  color: #9699a8;
  font-size: 0.61rem;
  text-align: center;
}

.lp-calendar i {
  position: relative;
  display: grid;
  min-height: 55px;
  place-items: start center;
  padding-top: 8px;
  border-radius: 8px;
  background: #f7f7fa;
  color: #656879;
  font-size: 0.69rem;
  font-style: normal;
}

.lp-calendar i.has-job {
  background: var(--lp-brand-soft);
  color: var(--lp-brand-dark);
  font-weight: 800;
}

.lp-calendar i small {
  position: absolute;
  right: 4px;
  bottom: 4px;
  left: 4px;
  padding: 4px 2px;
  border-radius: 5px;
  background: var(--lp-brand);
  color: #fff;
  font-size: 0.52rem;
  text-align: center;
}

.lp-product-checklist {
  display: grid;
  max-width: 620px;
  overflow: hidden;
  border: 1px solid #e1e2eb;
  border-radius: 13px;
  background: #fff;
}

.lp-product-checklist span {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 57px;
  padding: 0 15px;
  border-bottom: 1px solid #ececf2;
  color: #606476;
  font-size: 0.75rem;
}

.lp-product-checklist span:last-child {
  border-bottom: 0;
}

.lp-product-checklist i {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: #f1f2f6;
  color: #a2a5b3;
  font-size: 0.64rem;
}

.lp-product-checklist .is-done i {
  background: var(--lp-success-soft);
  color: var(--lp-success);
}

.lp-product-checklist .is-done {
  color: #8b8e9e;
  text-decoration: line-through;
}

.lp-quality-card,
.lp-support-card {
  display: grid;
  max-width: 620px;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 23px;
  padding: 18px;
  border: 1px solid #e1e2eb;
  border-radius: 14px;
  background: #fff;
}

.lp-quality-card > span {
  display: grid;
  height: 160px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #e2e3ff, #bdc1ff);
  color: var(--lp-brand);
  font-size: 2rem;
}

.lp-quality-card b,
.lp-support-card b {
  font-size: 1rem;
}

.lp-quality-card p,
.lp-support-card p {
  color: var(--lp-text);
  font-size: 0.75rem;
}

.lp-quality-card strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--lp-success-soft);
  color: #147451;
  font-size: 0.69rem;
}

.lp-support-card {
  grid-template-columns: auto minmax(0, 1fr);
}

.lp-support-card > span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 17px;
  background: var(--lp-brand);
  color: #fff;
  font-weight: 850;
}

/* Differenzierung und Vertrauen */
.lp-difference {
  background: #fff;
}

.lp-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 22px);
  padding: 31px;
  border: 1px solid var(--lp-line);
  border-radius: 19px;
  background: #fafafd;
}

.lp-flow > span {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #444759;
  text-align: center;
}

.lp-flow > span i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  color: var(--lp-brand);
  box-shadow: 0 8px 20px rgba(45, 47, 79, 0.08);
}

.lp-flow b {
  font-size: 0.7rem;
}

.lp-flow em {
  color: #b0b3c1;
  font-style: normal;
}

.lp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 17px;
}

.lp-trust-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--lp-line);
  border-radius: 11px;
  color: #5f6275;
  font-size: 0.75rem;
  font-weight: 650;
}

.lp-trust-grid i {
  color: var(--lp-brand);
}

/* Conversion */
.lp-conversion {
  padding-block: clamp(70px, 8vw, 110px);
  background:
    radial-gradient(circle at 85% 10%, rgba(88, 91, 255, 0.09), transparent 27%),
    #f6f7fb;
  color: var(--lp-ink);
}

.lp-conversion__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.lp-conversion h2 {
  margin: 14px 0 15px;
  color: var(--lp-ink) !important;
  -webkit-text-fill-color: var(--lp-ink);
  font-size: clamp(2.35rem, 4vw, 3.75rem);
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.lp-conversion p {
  margin: 0;
  color: var(--lp-text) !important;
  -webkit-text-fill-color: var(--lp-text);
  line-height: 1.6;
}

.lp-conversion .lp-kicker {
  color: var(--lp-brand-dark) !important;
  -webkit-text-fill-color: var(--lp-brand-dark);
}

.lp-quick-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 19px;
  border: 1px solid var(--lp-line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(39, 41, 74, 0.1);
}

.lp-quick-form label {
  display: grid;
  gap: 6px;
  color: #55596d;
  font-size: 0.66rem;
  font-weight: 700;
}

.lp-quick-form select,
.lp-quick-form input {
  width: 100%;
  min-height: 51px;
  padding: 0 12px;
  border: 1px solid var(--lp-line);
  border-radius: 9px;
  background: #fff;
  color: #303244;
  font: inherit;
  font-size: 0.76rem;
}

.lp-conversion .lp-quick-form .lp-button--light {
  background: var(--lp-brand);
  color: #fff;
  box-shadow: 0 13px 28px rgba(88, 91, 255, 0.24);
}

.lp-conversion .lp-quick-form .lp-button--light:hover {
  background: var(--lp-brand-dark);
}

.lp-quick-form .lp-button,
.lp-quick-form small {
  grid-column: 1 / -1;
}

.lp-quick-form small {
  color: var(--lp-muted);
  font-size: 0.67rem;
  text-align: center;
}

/* FAQ */
.lp-faq {
  background: var(--lp-soft);
}

.lp-faq__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(45px, 8vw, 100px);
}

.lp-faq__layout .lp-section-heading {
  position: sticky;
  top: calc(var(--header-height, 78px) + 28px);
  margin-bottom: 0;
}

.lp-faq__layout .lp-section-heading .lp-button {
  margin-top: 24px;
}

.lp-faq__list {
  display: grid;
  gap: 9px;
}

.lp-faq-item {
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: 13px;
  background: #fff;
}

.lp-faq-item h3 {
  margin: 0;
}

.lp-faq-item button {
  display: flex;
  width: 100%;
  min-height: 67px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 19px;
  border: 0;
  background: transparent;
  color: var(--lp-ink);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.lp-faq-item button i {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--lp-brand-soft);
  color: var(--lp-brand);
  font-size: 0.68rem;
  transition: transform 200ms ease;
}

.lp-faq-item button[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.lp-faq-item > div {
  padding: 0 19px 19px;
}

.lp-faq-item > div p {
  margin: 0;
  color: var(--lp-text);
  font-size: 0.78rem;
  line-height: 1.65;
}

.lp-mobile-cta {
  display: none;
}

/* Animation */
.lp-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 1080px) {
  .lp-hero__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
    gap: 40px;
  }

  .lp-hero__copy h1 {
    font-size: clamp(2.8rem, 5.5vw, 4rem);
  }

  .lp-service-grid,
  .lp-card-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-provider__intro {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .lp-section-heading--split,
  .lp-hero__grid,
  .lp-provider__intro,
  .lp-conversion__inner,
  .lp-faq__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-hero {
    min-height: 0;
    padding-top: 72px;
  }

  .lp-hero__copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .lp-hero__copy h1,
  .lp-hero__copy > p:not(.lp-hero__trust) {
    margin-inline: auto;
  }

  .lp-hero__actions,
  .lp-hero__trust {
    justify-content: center;
  }

  .lp-demo {
    width: min(100%, 690px);
    margin-inline: auto;
  }

  .lp-compare__grid {
    grid-template-columns: 1fr;
  }

  .lp-audience-track,
  .lp-provider__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-provider__intro > div:first-child {
    max-width: 720px;
  }

  .lp-timeline {
    grid-template-columns: 1fr;
    max-width: 680px;
    gap: 0;
    margin-inline: auto;
  }

  .lp-timeline::before {
    top: 32px;
    bottom: 32px;
    left: 37px;
    width: 2px;
    height: auto;
    background: linear-gradient(#c8c9ff, var(--lp-brand), #c8c9ff);
  }

  .lp-timeline li {
    display: grid;
    min-height: 118px;
    grid-template-columns: 76px minmax(0, 1fr);
    align-content: center;
    column-gap: 21px;
    padding: 14px 0;
    text-align: left;
  }

  .lp-timeline li > i {
    grid-row: 1 / 3;
    margin: 0;
  }

  .lp-timeline li > span {
    display: none;
  }

  .lp-timeline h3 {
    align-self: end;
  }

  .lp-product__layout {
    grid-template-columns: 1fr;
  }

  .lp-product__tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .lp-product__tabs button {
    min-width: 185px;
  }

  .lp-faq__layout .lp-section-heading {
    position: static;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .lp-shell {
    width: calc(100% - 28px);
  }

  .lp-section {
    padding-block: 70px;
  }

  .lp-section-heading {
    margin-bottom: 32px;
  }

  .lp-section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .lp-difference {
    scroll-margin-top: calc(var(--header-height, 68px) + 12px);
  }

  .lp-difference .lp-section-heading {
    margin-bottom: 22px;
  }

  .lp-difference .lp-section-heading h2 {
    font-size: clamp(1.95rem, 8.6vw, 2.4rem);
    line-height: 1.07;
  }

  .lp-difference .lp-section-heading h2 br {
    display: none;
  }

  .lp-difference .lp-section-heading p {
    margin-top: 13px;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .lp-hero {
    padding: 54px 0 74px;
  }

  .lp-hero__grid {
    gap: 42px;
  }

  .lp-hero__copy h1 {
    margin-top: 16px;
    font-size: clamp(2.65rem, 13vw, 3.55rem);
    line-height: 0.98;
  }

  .lp-hero__copy > p:not(.lp-hero__trust) {
    font-size: 0.98rem;
  }

  .lp-hero__actions {
    display: grid;
  }

  .lp-hero__actions .lp-button {
    width: 100%;
  }

  .lp-hero__trust {
    gap: 5px;
    font-size: 0.68rem;
  }

  .lp-demo {
    border-radius: 18px;
  }

  .lp-demo__chrome {
    height: 46px;
    padding-inline: 13px;
  }

  .lp-demo__header {
    padding: 13px 14px 10px;
  }

  .lp-demo__viewport {
    height: 270px;
    margin-inline: 10px;
    border-radius: 13px;
  }

  .lp-demo__stage {
    padding: 17px;
  }

  .lp-demo__stage:first-child {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
  }

  .lp-demo__stage:first-child .lp-status {
    grid-column: 2;
    width: fit-content;
  }

  .lp-demo__icon {
    width: 44px;
    height: 44px;
  }

  .lp-demo__proof {
    grid-template-columns: 95px minmax(0, 1fr);
    gap: 14px;
  }

  .lp-demo__proof > span {
    height: 100px;
  }

  .lp-order-form {
    padding: 20px 14px;
    border-radius: 18px;
  }

  .lp-order-form__progress b {
    display: none;
  }

  .lp-order-form__progress {
    margin-bottom: 29px;
  }

  .lp-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .lp-service-grid label > span {
    min-height: 102px;
  }

  .lp-choice-grid,
  .lp-contact-grid {
    grid-template-columns: 1fr;
  }

  .lp-choice-grid label > span {
    min-height: 76px;
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
  }

  .lp-contact-grid__wide {
    grid-column: auto;
  }

  .lp-form-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  }

  .lp-form-actions--end {
    grid-template-columns: 1fr;
  }

  .lp-form-actions .lp-button {
    min-width: 0;
    padding-inline: 13px;
  }

  .lp-chaos-card,
  .lp-control-card {
    min-height: 380px;
    padding: 23px 18px;
  }

  .lp-chaos-cloud span {
    font-size: 0.67rem;
  }

  .lp-card-grid--four {
    display: flex;
    width: calc(100% + 14px);
    overflow-x: auto;
    gap: 11px;
    padding: 0 14px 10px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .lp-feature-card {
    min-width: min(82vw, 310px);
    scroll-snap-align: start;
  }

  .lp-audience-track {
    display: flex;
    width: calc(100% + 14px);
    overflow-x: auto;
    gap: 11px;
    padding: 0 14px 10px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .lp-audience-track > a {
    min-width: min(82vw, 310px);
    scroll-snap-align: start;
  }

  .lp-audience-track > a > span {
    opacity: 1;
    transform: none;
  }

  .lp-provider {
    padding-block: 76px;
  }

  .lp-provider__intro h2 {
    font-size: 2.65rem;
  }

  .lp-provider__actions {
    display: grid;
  }

  .lp-provider__benefits {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .lp-provider__benefits article {
    min-height: 170px;
  }

  .lp-package-note {
    align-items: stretch;
    flex-direction: column;
  }

  .lp-product__tabs button {
    min-width: 170px;
  }

  .lp-browser__body {
    min-height: 430px;
    padding: 18px 13px;
  }

  .lp-product-panel > header {
    align-items: flex-start;
  }

  .lp-order-columns {
    gap: 5px;
  }

  .lp-order-columns article {
    padding: 10px 8px;
  }

  .lp-order-list li {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .lp-order-list em {
    grid-column: 2;
  }

  .lp-quality-card,
  .lp-support-card {
    grid-template-columns: 1fr;
  }

  .lp-quality-card > span {
    height: 120px;
  }

  .lp-flow {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 13px 15px;
    border-radius: 18px;
  }

  .lp-flow > span {
    width: 100%;
    min-height: 58px;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    gap: 12px;
    padding: 6px 4px;
    text-align: left;
  }

  .lp-flow > span i {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 0.96rem;
  }

  .lp-flow b {
    font-size: 0.78rem;
  }

  .lp-flow em {
    position: relative;
    display: block;
    width: 16px;
    height: 14px;
    margin: 0 0 0 18px;
    color: transparent;
    font-size: 0;
    transform: none;
  }

  .lp-flow em::before {
    position: absolute;
    top: 0;
    left: 7px;
    width: 1px;
    height: 10px;
    background: #c3c5d1;
    content: "";
  }

  .lp-flow em::after {
    position: absolute;
    bottom: 1px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #c3c5d1;
    border-bottom: 1px solid #c3c5d1;
    content: "";
    transform: rotate(45deg);
  }

  .lp-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .lp-trust-grid span {
    min-height: 62px;
    gap: 8px;
    padding: 11px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .lp-trust-grid i {
    flex: 0 0 16px;
    text-align: center;
  }

  .lp-conversion__inner {
    gap: 32px;
  }

  .lp-quick-form {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .lp-mobile-cta {
    position: fixed;
    z-index: 9200;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 14px;
    background: var(--lp-brand);
    color: #fff;
    box-shadow: 0 15px 40px rgba(49, 51, 192, 0.34);
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
  }

  .lp-home .site-footer {
    padding-bottom: 84px;
  }

  .lp-home main {
    padding-bottom: 76px;
  }
}

@media (max-width: 390px) {
  .lp-hero__copy h1 {
    font-size: 2.55rem;
  }

  .lp-service-grid label > span {
    padding-inline: 8px;
  }

  .lp-service-grid b {
    font-size: 0.7rem;
  }

  .lp-form-actions {
    grid-template-columns: 1fr;
  }

  .lp-difference .lp-section-heading h2 {
    font-size: clamp(1.85rem, 9.2vw, 2.1rem);
  }

  .lp-trust-grid span {
    padding-inline: 8px;
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-home *,
  .lp-home *::before,
  .lp-home *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .lp-reveal {
    opacity: 1;
    transform: none;
  }
}
