:root {
  --font-sans: "Montserrat", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --navy-950: #04101f;
  --navy-900: #071426;
  --navy-850: #0a1a30;
  --navy-800: #10233b;
  --ink: #071426;
  --gold: #d7a94d;
  --gold-light: #f2cf82;
  --cream: #f5f1e8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --muted: #607087;
  --line: #dfe3e8;
  --danger: #9f2d2d;
  --success: #55b995;
  --shadow: 0 28px 80px rgba(2, 13, 28, 0.24);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--gold);
  color: var(--navy-950);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-block;
}

.brand img {
  width: 220px;
  height: auto;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.header-cta svg,
.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 900px;
  padding: 154px 0 92px;
  background: var(--navy-950);
  color: var(--white);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  top: 180px;
  left: -320px;
  border: 1px solid rgba(215, 169, 77, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(215, 169, 77, 0.025), 0 0 0 160px rgba(215, 169, 77, 0.018);
}

.hero::after {
  width: 42vw;
  height: 1px;
  right: 0;
  bottom: 110px;
  background: rgba(215, 169, 77, 0.5);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.78fr);
  gap: 78px;
  align-items: center;
}

.hero-copy {
  padding-top: 12px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: #a47018;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 5.45vw, 74px);
  line-height: 0.99;
  letter-spacing: -0.055em;
  font-weight: 780;
}

.hero-highlight {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--gold);
  font-size: clamp(30px, 3.2vw, 45px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 720;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: #c3ccda;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.hero-actions p {
  max-width: 180px;
  margin: 0;
  color: #8f9db0;
  font-size: 12px;
  line-height: 1.45;
}

.hero-actions strong {
  color: var(--white);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.header-cta:focus-visible,
.text-link:focus-visible,
.footer-grid a:focus-visible,
.thank-you-footer a:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.button-primary {
  background: var(--gold);
  color: var(--navy-950);
}

.button-primary:hover {
  background: var(--gold-light);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 40px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
  color: #aeb9c8;
  font-size: 12px;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.form-panel {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 3px solid var(--gold);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 18px;
  color: #6d7888;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #27785e;
}

.status-dot::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  content: "";
}

.form-panel h2 {
  margin: 0;
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.form-panel > p {
  margin: 10px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  margin-bottom: 13px;
}

.field label {
  display: block;
  margin: 0 0 7px;
  color: #2a3545;
  font-size: 12px;
  font-weight: 750;
}

.field label span {
  color: #8590a0;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cfd5dd;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input {
  height: 46px;
  padding: 0 13px;
}

.field textarea {
  min-height: 82px;
  resize: vertical;
  padding: 12px 13px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a4acb7;
}

.field input:focus,
.field textarea:focus {
  border-color: #a8751d;
  box-shadow: 0 0 0 3px rgba(215, 169, 77, 0.18);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  margin: 4px 0 17px;
  color: #667184;
  font-size: 11px;
  line-height: 1.45;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: #a8751d;
}

.consent a {
  color: #77500e;
  font-weight: 700;
}

.button-submit {
  width: 100%;
  min-height: 56px;
  background: var(--navy-900);
  color: var(--white);
}

.button-submit:hover {
  background: var(--navy-800);
}

.button-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.form-note {
  margin: 11px 0 0;
  color: #87909d;
  text-align: center;
  font-size: 10px;
  line-height: 1.4;
}

.form-alert {
  margin: 0 0 18px;
  border-left: 3px solid var(--danger);
  padding: 12px 14px;
  background: #fff2f2;
  color: #762525;
  font-size: 12px;
  line-height: 1.5;
}

.form-alert ul {
  margin: 5px 0 0;
  padding-left: 18px;
}

.trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.section {
  padding: 110px 0;
}

.problem {
  background: var(--paper);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 100px;
  align-items: end;
}

.split-heading h2,
.system-intro h2,
.section-heading h2,
.guarantee-head h2,
.closing h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.prose {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.prose p {
  margin: 0 0 18px;
}

.prose strong {
  color: var(--ink);
}

.touchpoints {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid #cfd5dd;
  border-bottom: 1px solid #cfd5dd;
}

.touchpoint {
  min-height: 230px;
  padding: 31px;
  border-right: 1px solid #cfd5dd;
}

.touchpoint:last-child {
  border-right: 0;
}

.touchpoint.featured {
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-16px);
  box-shadow: 0 20px 45px rgba(7, 20, 38, 0.16);
}

.time {
  color: #9b6a16;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.featured .time {
  color: var(--gold);
}

.channel {
  margin: 35px 0 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.touchpoint p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.featured p:last-child {
  color: #b8c3d1;
}

.system {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.system::after {
  position: absolute;
  right: -170px;
  bottom: -290px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(215, 169, 77, 0.18);
  border-radius: 50%;
  content: "";
}

.system-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 100px;
  align-items: start;
}

.system-intro {
  position: sticky;
  top: 50px;
}

.system-intro p:not(.eyebrow) {
  margin: 27px 0 30px;
  color: #adb9c9;
  font-size: 17px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 800;
}

.check-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 29px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.check-list li > span {
  padding-top: 4px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.check-list h3 {
  margin: 0 0 7px;
  font-size: 22px;
}

.check-list p {
  margin: 0;
  color: #aeb9c8;
  line-height: 1.65;
}

.process {
  background: #eae4d8;
}

.section-heading {
  max-width: 760px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 65px;
  border-top: 1px solid #bdc0c2;
}

.process-grid article {
  min-height: 270px;
  padding: 34px 34px 20px 0;
  border-right: 1px solid #bdc0c2;
}

.process-grid article:not(:first-child) {
  padding-left: 34px;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  display: block;
  margin-bottom: 52px;
  color: #a47018;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
}

.process-grid h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.process-grid p {
  margin: 0;
  color: #5f6874;
  line-height: 1.65;
}

.guarantees {
  background: var(--navy-950);
  color: var(--white);
}

.guarantee-head {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 90px;
  align-items: end;
}

.guarantee-head > p {
  margin: 0;
  color: #aeb9c8;
  font-size: 16px;
  line-height: 1.7;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 62px;
}

.guarantee-grid article {
  min-height: 320px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: var(--navy-850);
}

.guarantee-grid article:nth-child(2) {
  border-color: rgba(215, 169, 77, 0.75);
}

.number {
  display: block;
  margin-bottom: 80px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.guarantee-grid h3 {
  margin: 0 0 14px;
  font-size: 25px;
}

.guarantee-grid p {
  margin: 0;
  color: #acb7c6;
  line-height: 1.65;
}

.closing {
  background: var(--cream);
  text-align: center;
}

.closing-inner {
  max-width: 900px;
}

.closing .eyebrow {
  justify-content: center;
  color: #9b6a16;
}

.closing-inner > p:not(.eyebrow) {
  max-width: 680px;
  margin: 25px auto 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.site-footer {
  padding: 48px 0;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 50px;
  align-items: end;
}

.footer-grid img {
  width: 184px;
  height: auto;
}

.footer-grid p {
  margin: 12px 0 0;
  color: #8f9bad;
  font-size: 13px;
}

.footer-contact,
.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid a {
  color: #b5c0ce;
  text-decoration: none;
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--gold-light);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--navy-950);
  color: var(--white);
}

.thank-you-main {
  width: 100%;
  flex: 1;
  display: grid;
  place-items: center;
  padding: 60px 20px 30px;
}

.thank-you-card {
  width: min(100%, 920px);
  border-top: 3px solid var(--gold);
  padding: 52px;
  background: var(--navy-850);
  box-shadow: var(--shadow);
}

.thank-you-card .brand img {
  width: 205px;
}

.success-mark {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 54px 0 25px;
  border: 1px solid rgba(215, 169, 77, 0.75);
  border-radius: 50%;
  color: var(--gold-light);
}

.success-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.thank-you-card h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(40px, 6vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.thank-you-card > p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #b6c1d0;
  font-size: 17px;
  line-height: 1.7;
}

.preview-notice {
  max-width: 760px;
  margin-top: 24px;
  border-left: 3px solid var(--gold);
  padding: 15px 18px;
  background: rgba(215, 169, 77, 0.08);
  color: #bfc9d6;
  font-size: 14px;
  line-height: 1.6;
}

.preview-notice strong {
  color: var(--gold-light);
}

.next-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 38px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.next-steps > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 24px 24px 24px 0;
}

.next-steps > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 24px;
}

.next-steps span {
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.next-steps p {
  margin: 0;
  color: #aeb9c8;
  font-size: 16px;
  line-height: 1.6;
}

.next-steps strong {
  color: var(--white);
}

.discover-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  border: 1px solid rgba(215, 169, 77, 0.32);
  padding: 30px;
  background: var(--navy-950);
}

.discover-kicker {
  margin: 0 0 9px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.discover-panel h2 {
  margin: 0;
  color: var(--white);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.discover-panel div > p:last-child {
  max-width: 610px;
  margin: 14px 0 0;
  color: #aeb9c8;
  font-size: 16px;
  line-height: 1.7;
}

.discover-panel .button {
  width: max-content;
  white-space: nowrap;
}

.thank-you-back {
  display: inline-flex;
  margin-top: 23px;
  color: #aeb9c8;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.thank-you-back:hover {
  color: var(--white);
}

.thank-you-footer {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 0 20px 30px;
}

.thank-you-footer a {
  color: #8f9bad;
  font-size: 12px;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr 430px;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(42px, 5.2vw, 58px);
  }

  .hero-highlight {
    font-size: 32px;
  }

  .split-heading,
  .system-grid,
  .guarantee-head {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    background: var(--navy-950);
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .form-panel {
    width: min(100%, 680px);
  }

  .split-heading,
  .system-grid,
  .guarantee-head {
    grid-template-columns: 1fr;
  }

  .system-intro {
    position: static;
  }

  .touchpoints,
  .process-grid,
  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .touchpoint,
  .touchpoint:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #cfd5dd;
  }

  .touchpoint:last-child {
    border-bottom: 0;
  }

  .touchpoint.featured {
    transform: none;
  }

  .process-grid article,
  .process-grid article:not(:first-child) {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid #bdc0c2;
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .process-grid span,
  .number {
    margin-bottom: 26px;
  }

  .guarantee-grid article {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 174px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 54px 0 60px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-highlight {
    font-size: 29px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
    padding-inline: 16px;
  }

  .trust-row {
    flex-direction: column;
  }

  .form-panel {
    padding: 22px 18px;
    border-radius: 10px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section {
    padding: 78px 0;
  }

  .split-heading h2,
  .system-intro h2,
  .section-heading h2,
  .guarantee-head h2,
  .closing h2 {
    font-size: 39px;
  }

  .touchpoints {
    margin-top: 48px;
  }

  .check-list li {
    grid-template-columns: 42px 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .thank-you-main {
    padding-top: 20px;
  }

  .thank-you-card {
    padding: 28px 20px;
  }

  .thank-you-card h1 {
    font-size: 39px;
  }

  .next-steps {
    grid-template-columns: 1fr;
  }

  .next-steps > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
    padding-left: 0;
  }

  .discover-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }

  .discover-panel h2 {
    font-size: 25px;
  }

  .discover-panel .button {
    width: 100%;
    white-space: normal;
  }
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-error {
  margin: 0 0 22px;
  padding: 15px 16px;
  border: 1px solid rgba(176, 35, 35, 0.35);
  border-radius: 5px;
  background: #fff1f1;
  color: #7b1616;
  font-size: 15px;
  line-height: 1.55;
}

.form-error strong {
  display: block;
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-step h2:focus {
  outline: none;
}

/* Newsletter-Conversion-Landingpage */
.newsletter-header {
  background: transparent;
}

.header-proof {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d2d9e3;
  font-size: 12px;
  font-weight: 750;
}

.header-proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(85, 185, 149, 0.1);
}

.newsletter-hero {
  position: relative;
  overflow: hidden;
  min-height: 850px;
  padding: 148px 0 82px;
  background: var(--navy-950);
  color: var(--white);
}

.newsletter-hero::before,
.newsletter-hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.newsletter-hero::before {
  top: 142px;
  right: -80px;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(215, 169, 77, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(215, 169, 77, 0.022), 0 0 0 180px rgba(215, 169, 77, 0.014);
}

.newsletter-hero::after {
  left: 0;
  bottom: 95px;
  width: 37%;
  height: 1px;
  background: rgba(215, 169, 77, 0.34);
}

.newsletter-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.72fr);
  gap: 76px;
  align-items: center;
}

.newsletter-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(48px, 5.6vw, 76px);
  font-weight: 790;
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.newsletter-highlight {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--gold);
  font-size: clamp(30px, 3.35vw, 46px);
  font-weight: 730;
  line-height: 1.05;
  letter-spacing: -0.042em;
}

.newsletter-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #bdc7d5;
  font-size: 18px;
  line-height: 1.7;
}

.newsletter-promise {
  max-width: 640px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  margin-top: 31px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 22px 0;
}

.promise-index {
  padding-top: 3px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.newsletter-promise strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.newsletter-promise p {
  margin: 0;
  color: #aab6c6;
  font-size: 14px;
  line-height: 1.6;
}

.channel-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #8f9cad;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.channel-line i {
  width: 18px;
  height: 1px;
  background: rgba(215, 169, 77, 0.5);
}

.newsletter-hero .step-form {
  min-height: 535px;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 10px;
}

.confidence-band {
  border-bottom: 1px solid #d9dde2;
  background: var(--white);
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.confidence-grid > div {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid #d9dde2;
  padding: 18px 24px;
}

.confidence-grid > div:first-child {
  border-left: 1px solid #d9dde2;
}

.confidence-grid svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid #b78329;
  border-radius: 50%;
  padding: 5px;
  fill: none;
  stroke: #8b5e13;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.confidence-grid span {
  color: #758092;
  font-size: 11px;
  line-height: 1.35;
}

.confidence-grid strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 13px;
}

.check-output {
  background: var(--paper);
}

.check-output-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 105px;
  align-items: start;
}

.output-heading h2 {
  margin: 0;
  font-size: clamp(40px, 4.4vw, 61px);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.output-heading > p:last-child {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.output-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #cdd2d8;
  list-style: none;
}

.output-list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 19px;
  border-bottom: 1px solid #cdd2d8;
  padding: 26px 0;
}

.output-list li > span {
  padding-top: 5px;
  color: #a06c15;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 850;
}

.output-list h3 {
  margin: 0 0 7px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.output-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.after-submit {
  background: var(--navy-900);
  color: var(--white);
}

.after-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: start;
}

.after-heading h2 {
  margin: 0;
  font-size: clamp(39px, 4.3vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.after-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.after-steps article {
  min-height: 295px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding: 27px 25px;
}

.after-steps article:last-child {
  border-right: 0;
}

.after-steps span {
  display: block;
  margin-bottom: 75px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 850;
}

.after-steps h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.2;
}

.after-steps p {
  margin: 0;
  color: #aeb9c8;
  font-size: 13px;
  line-height: 1.65;
}

.guarantee-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy-950);
  color: var(--white);
}

.guarantee-strip-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
}

.guarantee-strip-grid > div {
  min-height: 165px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  padding: 28px 24px;
}

.guarantee-strip-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.guarantee-strip-title span,
.guarantee-strip-grid > div:not(:first-child) > span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guarantee-strip-title strong {
  display: block;
  max-width: 330px;
  font-size: 20px;
  line-height: 1.3;
}

.guarantee-strip-grid > div:not(:first-child) strong {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
}

.guarantee-strip-grid p {
  margin: 0;
  color: #909daf;
  font-size: 11px;
  line-height: 1.5;
}

.newsletter-closing {
  background: #efe9dd;
  text-align: center;
}

.newsletter-closing-inner {
  max-width: 900px;
}

.newsletter-closing .eyebrow {
  justify-content: center;
}

.newsletter-closing h2 {
  margin: 0;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.newsletter-closing-inner > p:not(.eyebrow) {
  margin: 24px 0 31px;
  color: var(--muted);
  font-size: 18px;
}

.newsletter-footer {
  padding-bottom: 48px;
}

@media (max-width: 1040px) {
  .newsletter-grid {
    gap: 44px;
  }

  .newsletter-copy h1 {
    font-size: 60px;
  }

  .check-output-grid,
  .after-grid {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  .newsletter-header {
    position: relative;
    background: var(--navy-950);
  }

  .newsletter-hero {
    min-height: 0;
    padding-top: 68px;
  }

  .newsletter-grid,
  .check-output-grid,
  .after-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-copy {
    max-width: 740px;
  }

  .newsletter-hero .step-form {
    width: min(100%, 680px);
  }

  .confidence-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .confidence-grid > div:nth-child(3) {
    border-left: 1px solid #d9dde2;
  }

  .confidence-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid #d9dde2;
  }

  .guarantee-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .guarantee-strip-grid > div:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }

  .guarantee-strip-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }
}

@media (max-width: 640px) {
  .header-proof {
    display: none;
  }

  .newsletter-hero {
    padding: 48px 0 58px;
  }

  .newsletter-copy h1 {
    font-size: 43px;
  }

  .newsletter-highlight {
    font-size: 28px;
  }

  .newsletter-lead {
    font-size: 16px;
  }

  .newsletter-promise {
    grid-template-columns: 38px 1fr;
  }

  .channel-line {
    flex-wrap: wrap;
    line-height: 1.6;
  }

  .channel-line i {
    width: 10px;
  }

  .confidence-grid,
  .after-steps,
  .guarantee-strip-grid {
    grid-template-columns: 1fr;
  }

  .confidence-grid > div,
  .confidence-grid > div:first-child,
  .confidence-grid > div:nth-child(3) {
    min-height: 76px;
    border-right: 1px solid #d9dde2;
    border-bottom: 1px solid #d9dde2;
    border-left: 1px solid #d9dde2;
  }

  .confidence-grid > div:last-child {
    border-bottom: 0;
  }

  .after-steps article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px 0;
  }

  .after-steps article:last-child {
    border-bottom: 0;
  }

  .after-steps span {
    margin-bottom: 23px;
  }

  .guarantee-strip-grid > div,
  .guarantee-strip-grid > div:first-child,
  .guarantee-strip-grid > div:nth-child(3) {
    min-height: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 1px solid rgba(255, 255, 255, 0.13);
    padding: 24px 20px;
  }

  .guarantee-strip-grid > div:last-child {
    border-bottom: 0;
  }

  .guarantee-strip-title span,
  .guarantee-strip-grid > div:not(:first-child) > span {
    margin-bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Conversion-Fassung V2 */
.hero-v2 {
  min-height: 860px;
  padding-bottom: 88px;
}

.hero-v2 .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 64px;
}

.hero-v2 h1 {
  max-width: 720px;
}

.hero-v2 .hero-highlight {
  max-width: 690px;
}

.trust-row svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border: 1px solid rgba(215, 169, 77, 0.75);
  border-radius: 50%;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.machine-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  background: var(--navy-850);
  box-shadow: var(--shadow);
}

.machine-toolbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #aeb8c6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.machine-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #85d9ba;
}

.machine-live::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55b995;
  box-shadow: 0 0 0 4px rgba(85, 185, 149, 0.1);
  content: "";
}

.phone-stage {
  position: relative;
  min-height: 410px;
  display: grid;
  place-items: center;
  padding: 35px 18px 22px;
  background: #0c1c31;
}

.phone-stage::before,
.phone-stage::after {
  position: absolute;
  width: 1px;
  background: rgba(215, 169, 77, 0.18);
  content: "";
}

.phone-stage::before {
  height: 100%;
  left: 18%;
  top: 0;
}

.phone-stage::after {
  height: 82%;
  right: 16%;
  bottom: 0;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: 228px;
  overflow: hidden;
  border: 5px solid #030914;
  border-radius: 29px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.42);
}

.phone-top {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  background: #f4f4f4;
  font-size: 8px;
  font-weight: 800;
}

.feed-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px;
  font-size: 9px;
}

.feed-brand small {
  display: block;
  margin-top: 1px;
  color: #788392;
}

.feed-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 900;
}

.job-creative {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: #0b1c31;
  color: var(--white);
}

.job-creative > span {
  width: max-content;
  margin-bottom: 10px;
  border-left: 2px solid var(--gold);
  padding-left: 7px;
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.job-creative strong {
  font-size: 24px;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.job-creative small {
  margin-top: 12px;
  color: #b8c3d2;
  font-size: 9px;
}

.job-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  font-size: 8px;
}

.job-action span {
  color: #768292;
}

.job-action strong {
  color: #805a16;
}

.channel-tag {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(215, 169, 77, 0.5);
  padding: 8px 10px;
  background: #0f2239;
  color: var(--gold-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.tag-social { left: 15px; top: 82px; }
.tag-weather { right: 14px; top: 148px; }
.tag-news { left: 24px; bottom: 72px; }

.machine-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.machine-flow li {
  min-height: 92px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: center;
  padding: 14px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.machine-flow li:last-child {
  border-right: 0;
}

.machine-flow li > span {
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
}

.machine-flow p {
  margin: 0;
  font-size: 10px;
  line-height: 1.3;
}

.machine-flow small {
  display: block;
  margin-top: 3px;
  color: #8390a1;
  font-size: 8px;
}

.audience-bar {
  border-bottom: 1px solid #d7d9dc;
  background: var(--white);
}

.audience-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.audience-inner p {
  margin: 0;
  color: #8b5d11;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-inner span {
  color: #344154;
  font-size: 13px;
  font-weight: 750;
}

.industries {
  background: var(--paper);
}

.industries-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 70px;
  max-width: none;
  align-items: end;
}

.industries-heading .eyebrow,
.industries-heading h2 {
  grid-column: 1;
}

.industries-heading h2 {
  grid-row: 2;
}

.industries-heading > p:last-child {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 58px;
  border-top: 1px solid #cdd2d8;
  border-left: 1px solid #cdd2d8;
}

.industry-grid article {
  min-height: 185px;
  padding: 27px;
  border-right: 1px solid #cdd2d8;
  border-bottom: 1px solid #cdd2d8;
}

.industry-grid span {
  color: #a47018;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
}

.industry-grid h3 {
  margin: 38px 0 9px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.industry-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.lead-section {
  background: #eae4d8;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.72fr);
  gap: 90px;
  align-items: center;
}

.lead-value h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.lead-value > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 31px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.deliverables {
  margin: 0;
  padding: 0;
  border-top: 1px solid #bdc2c8;
  list-style: none;
}

.deliverables li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #bdc2c8;
}

.deliverables li > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid #b27d23;
  border-radius: 50%;
  color: #8b5d11;
}

.deliverables svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.deliverables strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.deliverables p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.step-form {
  min-height: 530px;
  align-self: center;
}

.step-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 0 27px;
}

.step-progress span {
  height: 3px;
  background: #e1e4e9;
}

.step-progress span.active {
  background: var(--gold);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-count {
  margin: 0 0 9px !important;
  color: #9a6a18 !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-step h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.form-step > p:not(.step-count) {
  margin: 11px 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.large-field {
  margin-top: 36px;
  margin-bottom: 26px;
}

.large-field input {
  height: 56px;
}

.step-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 17px;
}

.back-button {
  min-height: 54px;
  border: 0;
  padding: 0 11px;
  background: transparent;
  color: #687487;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.step-actions .button-submit {
  width: auto;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 90px;
}

.faq-intro h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.faq-intro > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid #cdd2d8;
}

.faq-list details {
  border-bottom: 1px solid #cdd2d8;
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 4px;
  top: 23px;
  color: #9a6a18;
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 680px;
  margin: -8px 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

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

@media (max-width: 1040px) {
  .hero-v2 .hero-grid {
    grid-template-columns: 1fr 410px;
    gap: 38px;
  }

  .lead-grid {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .hero-v2 .hero-grid,
  .lead-grid,
  .faq-grid,
  .industries-heading {
    grid-template-columns: 1fr;
  }

  .machine-visual {
    width: min(100%, 610px);
  }

  .industries-heading .eyebrow,
  .industries-heading h2,
  .industries-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .lead-value {
    max-width: 720px;
  }

  .step-form {
    width: min(100%, 680px);
  }
}

@media (max-width: 720px) {
  .audience-inner {
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 21px 0;
  }

  .audience-inner p {
    width: 100%;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .hero-v2 {
    padding-top: 54px;
  }

  .hero-v2 h1 {
    font-size: 42px;
  }

  .hero-v2 .hero-highlight {
    font-size: 27px;
  }

  .machine-toolbar {
    padding-inline: 14px;
  }

  .phone-stage {
    min-height: 390px;
  }

  .phone-frame {
    width: 210px;
  }

  .channel-tag {
    font-size: 7px;
  }

  .tag-social { left: 4px; }
  .tag-weather { right: 2px; }
  .tag-news { left: 8px; }

  .machine-flow {
    grid-template-columns: 1fr;
  }

  .machine-flow li {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .machine-flow li:last-child {
    border-bottom: 0;
  }

  .industry-grid article {
    min-height: 160px;
  }

  .step-form {
    min-height: 0;
  }

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

  .back-button {
    order: 2;
  }

  .step-actions .button-submit {
    width: 100%;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 50;
    right: 12px;
    bottom: 10px;
    left: 12px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #f0c972;
    border-radius: 5px;
    background: var(--gold);
    color: var(--navy-950);
    box-shadow: 0 12px 35px rgba(2, 13, 28, 0.35);
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-sticky-cta svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }
}

/* Premium-Fassung: groesseres Formular, klare Typohierarchie */
:root {
  --shell: 1280px;
  --type-meta: 12px;
  --type-small: 14px;
  --type-copy: 17px;
  --type-lead: 20px;
  --type-subhead: 23px;
  --type-form-title: 34px;
  --type-section: clamp(44px, 4.4vw, 60px);
  --type-display: clamp(56px, 5.6vw, 78px);
}

body {
  font-size: var(--type-copy);
}

.section {
  padding: 126px 0;
}

.eyebrow,
.panel-topline,
.step-count,
.promise-index,
.channel-line,
.output-list li > span,
.after-steps span,
.guarantee-strip-title span,
.guarantee-strip-grid > div:not(:first-child) > span {
  font-family: var(--font-sans) !important;
  font-size: var(--type-meta) !important;
}

.newsletter-hero {
  min-height: 960px;
  padding: 158px 0 104px;
}

.newsletter-hero::before {
  top: 156px;
  right: -40px;
  width: 560px;
  height: 560px;
  border-color: rgba(215, 169, 77, 0.2);
  box-shadow: 0 0 0 104px rgba(215, 169, 77, 0.025), 0 0 0 208px rgba(215, 169, 77, 0.016);
}

.newsletter-grid {
  grid-template-columns: minmax(0, 1fr) minmax(540px, 0.9fr);
  gap: 72px;
  align-items: center;
}

.newsletter-copy h1 {
  max-width: 730px;
  font-size: var(--type-display);
}

.newsletter-highlight {
  max-width: 700px;
  margin-top: 22px;
  font-size: clamp(34px, 3.25vw, 46px);
}

.newsletter-lead {
  max-width: 700px;
  margin-top: 31px;
  font-size: var(--type-lead);
  line-height: 1.68;
}

.newsletter-promise {
  max-width: 690px;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  margin-top: 36px;
  padding: 28px 0;
}

.newsletter-promise strong,
.guarantee-strip-title strong {
  font-size: var(--type-lead);
  line-height: 1.4;
}

.newsletter-promise p,
.output-list p,
.after-steps p,
.guarantee-strip-grid p,
.footer-grid p,
.footer-grid a {
  font-size: var(--type-copy);
}

.channel-line {
  gap: 12px;
  margin-top: 25px;
  font-size: var(--type-meta);
  line-height: 1.5;
}

.newsletter-hero .step-form {
  width: 100%;
  min-height: 650px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-top: 6px solid var(--gold);
  border-radius: 10px;
  box-shadow: 0 48px 110px rgba(0, 0, 0, 0.38), 20px 20px 0 rgba(215, 169, 77, 0.1);
}

.newsletter-hero .step-form::after {
  position: absolute;
  right: 22px;
  bottom: -35px;
  padding: 9px 13px;
  border: 1px solid rgba(215, 169, 77, 0.3);
  background: var(--navy-900);
  color: var(--gold-light);
  content: "PERSONALMASCHINE · STELLENCHECK";
  font-family: var(--font-sans);
  font-size: var(--type-meta);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.panel-topline {
  margin-bottom: 25px;
}

.step-progress {
  gap: 8px;
  margin-bottom: 37px;
}

.step-progress span {
  height: 5px;
}

.form-step h2,
.form-panel h2 {
  font-size: var(--type-form-title);
  line-height: 1.13;
}

.form-step > p:not(.step-count) {
  margin: 15px 0 32px;
  font-size: var(--type-copy);
  line-height: 1.62;
}

.large-field {
  margin-top: 40px;
  margin-bottom: 30px;
}

.field {
  margin-bottom: 18px;
}

.field label,
.back-button,
.consent,
.form-note {
  font-size: var(--type-small);
}

.field label {
  margin-bottom: 10px;
}

.field input,
.large-field input {
  height: 60px;
  padding-inline: 17px;
  font-size: var(--type-copy);
}

.field-grid {
  gap: 16px;
}

.consent {
  grid-template-columns: 21px 1fr;
  gap: 11px;
  margin: 8px 0 22px;
  line-height: 1.55;
}

.consent input {
  width: 20px;
  height: 20px;
}

.newsletter-hero .button-submit {
  min-height: 64px;
  background: var(--gold);
  color: var(--navy-950);
  font-size: var(--type-copy);
  box-shadow: 0 12px 28px rgba(164, 112, 24, 0.2);
}

.newsletter-hero .button-submit:hover {
  background: var(--gold-light);
}

.step-actions {
  gap: 16px;
  margin-top: 21px;
}

.form-note {
  margin-top: 16px;
  line-height: 1.45;
}

.confidence-grid > div {
  min-height: 108px;
  gap: 15px;
  padding: 22px 27px;
}

.confidence-grid svg {
  width: 28px;
  height: 28px;
}

.confidence-grid span {
  font-size: var(--type-small);
}

.confidence-grid strong {
  margin-bottom: 4px;
  font-size: var(--type-copy);
}

.output-heading h2,
.after-heading h2,
.newsletter-closing h2 {
  font-size: var(--type-section);
  line-height: 1.06;
}

.output-heading > p:last-child,
.newsletter-closing-inner > p:not(.eyebrow) {
  font-size: var(--type-lead);
}

.output-list li {
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 31px 0;
}

.output-list h3,
.after-steps h3 {
  font-size: var(--type-subhead);
  line-height: 1.3;
}

.output-list p,
.after-steps p {
  line-height: 1.7;
}

.after-steps article {
  min-height: 330px;
  padding: 31px 28px;
}

.after-steps span {
  margin-bottom: 84px;
}

.guarantee-strip-grid > div {
  min-height: 190px;
  padding: 33px 28px;
}

.guarantee-strip-title span,
.guarantee-strip-grid > div:not(:first-child) > span {
  margin-bottom: 30px;
}

.guarantee-strip-grid > div:not(:first-child) strong {
  margin-bottom: 9px;
  font-size: var(--type-copy);
  line-height: 1.35;
}

.guarantee-strip-grid p {
  color: #aab5c4;
  line-height: 1.6;
}

.newsletter-closing-inner {
  max-width: 980px;
}

.newsletter-closing .button-primary {
  min-height: 64px;
  padding-inline: 28px;
  font-size: var(--type-copy);
}

.site-footer {
  padding: 58px 0;
}

.footer-grid p,
.footer-grid a {
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .newsletter-grid {
    grid-template-columns: minmax(0, 1fr) minmax(490px, 0.9fr);
    gap: 46px;
  }

  .newsletter-copy h1 {
    font-size: 64px;
  }
}

@media (max-width: 900px) {
  :root {
    --type-section: 48px;
  }

  .newsletter-hero {
    padding: 84px 0 94px;
  }

  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 66px;
  }

  .newsletter-copy {
    max-width: 780px;
  }

  .newsletter-hero .step-form {
    width: min(100%, 720px);
    min-height: 630px;
  }
}

@media (max-width: 640px) {
  :root {
    --type-meta: 11px;
    --type-small: 14px;
    --type-copy: 16px;
    --type-lead: 18px;
    --type-subhead: 22px;
    --type-form-title: 30px;
    --type-section: 38px;
    --type-display: 46px;
  }

  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .section {
    padding: 88px 0;
  }

  .newsletter-hero {
    padding: 54px 0 78px;
  }

  .newsletter-copy h1 {
    font-size: var(--type-display);
  }

  .newsletter-highlight {
    font-size: 32px;
  }

  .newsletter-promise {
    grid-template-columns: 36px 1fr;
  }

  .newsletter-hero .step-form {
    min-height: 0;
    padding: 29px 22px 26px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34), 8px 8px 0 rgba(215, 169, 77, 0.1);
  }

  .newsletter-hero .step-form::after {
    right: 8px;
    bottom: -31px;
    padding: 8px 9px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .field input,
  .large-field input {
    height: 58px;
  }

  .newsletter-hero .button-submit,
  .newsletter-closing .button-primary,
  .mobile-sticky-cta {
    min-height: 60px;
    font-size: var(--type-copy);
  }

  .confidence-grid > div,
  .confidence-grid > div:first-child,
  .confidence-grid > div:nth-child(3) {
    min-height: 92px;
    padding: 20px;
  }

  .after-steps article {
    min-height: 0;
    padding: 29px 0;
  }

  .after-steps span {
    margin-bottom: 22px;
  }

  .guarantee-strip-grid > div,
  .guarantee-strip-grid > div:first-child,
  .guarantee-strip-grid > div:nth-child(3) {
    padding: 29px 22px;
  }
}

/* Schneller Einstieg auf Smartphone und Tablet – ohne das Formular zu verdecken. */
@media (max-width: 900px) {
  body {
    padding-bottom: 82px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 50;
    right: 16px;
    bottom: 12px;
    left: 16px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #f0c972;
    border-radius: 5px;
    background: var(--gold);
    color: var(--navy-950);
    box-shadow: 0 12px 35px rgba(2, 13, 28, 0.35);
    text-decoration: none;
    font-size: var(--type-copy);
    font-weight: 900;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .mobile-sticky-cta svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  .mobile-sticky-cta.is-hidden {
    display: none;
    opacity: 0;
    transform: translateY(calc(100% + 24px));
    visibility: hidden;
    pointer-events: none;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .mobile-sticky-cta {
    right: auto;
    left: 50%;
    width: min(430px, calc(100% - 40px));
    transform: translateX(-50%);
  }

  .mobile-sticky-cta.is-hidden {
    transform: translate(-50%, calc(100% + 24px));
  }
}

/* Eigenständige Pflichtseiten der Stellencheck-Landingpage. */
.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 84% 8%, rgba(215, 169, 77, 0.12), transparent 27%),
    var(--navy-950);
  color: #f7f9fc;
}

.legal-header {
  padding-top: 38px;
}

.legal-main {
  max-width: 900px;
  padding-top: 80px;
  padding-bottom: 100px;
}

.legal-main h1 {
  max-width: 780px;
  margin: 20px 0 54px;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.legal-intro {
  max-width: 760px;
  margin: -24px 0 48px;
  color: #c5cfdb;
  font-size: var(--type-lead);
  line-height: 1.65;
}

.legal-main section {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.legal-main h2 {
  margin: 0 0 14px;
  font-size: var(--type-subhead);
  line-height: 1.3;
}

.legal-main p,
.legal-main address {
  max-width: 790px;
  margin: 0 0 13px;
  color: #c5cfdb;
  font-size: var(--type-copy);
  font-style: normal;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.legal-main a {
  color: #f0c972;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: var(--type-copy);
  font-weight: 750;
}

@media (max-width: 640px) {
  .legal-header {
    padding-top: 24px;
  }

  .legal-main {
    padding-top: 54px;
    padding-bottom: 72px;
  }

  .legal-main h1 {
    margin-bottom: 40px;
    font-size: 44px;
  }

  .legal-intro {
    margin-top: -15px;
  }

  .legal-main section {
    padding: 25px 0;
  }
}
@font-face { font-family: "Montserrat"; src: url("fonts/montserrat-latin-400-normal.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("fonts/montserrat-latin-500-normal.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("fonts/montserrat-latin-600-normal.woff2") format("woff2"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("fonts/montserrat-latin-700-normal.woff2") format("woff2"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("fonts/montserrat-latin-800-normal.woff2") format("woff2"); font-style: normal; font-weight: 800; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("fonts/montserrat-latin-900-normal.woff2") format("woff2"); font-style: normal; font-weight: 900; font-display: swap; }
