:root {
  --lp-blue: #093b65;
  --lp-blue-dark: #062b49;
  --lp-blue-soft: #eaf2f8;
  --lp-orange: #e26513;
  --lp-orange-dark: #c75108;
  --lp-yellow: #f6b400;
  --lp-bg: #f6f8fb;
  --lp-card: #ffffff;
  --lp-text: #17324d;
  --lp-muted: #64748b;
  --lp-border: rgba(9, 59, 101, 0.14);
  --lp-shadow: 0 18px 50px rgba(9, 59, 101, 0.14);
  --lp-radius-lg: 28px;
  --lp-radius-md: 18px;
  --lp-container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.lp-body {
  margin: 0;
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.lp-body img {
  max-width: 100%;
  height: auto;
}

.lp-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(226, 101, 19, 0.12), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 45%, #ffffff 100%);
}

.lp-container {
  width: min(var(--lp-container), calc(100% - 40px));
  margin: 0 auto;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(9, 59, 101, 0.08);
  backdrop-filter: blur(14px);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.lp-logo img {
  display: block;
  width: 178px;
}

.lp-header-cta,
.lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--lp-orange);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  box-shadow: 0 12px 26px rgba(226, 101, 19, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.lp-header-cta:hover,
.lp-button:hover {
  background: var(--lp-orange-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(226, 101, 19, 0.32);
}

.lp-button-secondary {
  background: #ffffff;
  color: var(--lp-blue);
  border: 1px solid rgba(9, 59, 101, 0.18);
  box-shadow: none;
}

.lp-button-secondary:hover {
  background: var(--lp-blue-soft);
  color: var(--lp-blue);
}

.lp-content-area {
  position: relative;
}

.lp-section {
  padding: 88px 0;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--lp-orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lp-eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 10px;
  background: var(--lp-orange);
}

.lp-h1,
.lp-h2,
.lp-h3 {
  margin: 0;
  color: var(--lp-blue);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.lp-h1 {
  font-size: clamp(2.45rem, 6vw, 5.15rem);
  max-width: 760px;
}

.lp-h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.lp-h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.lp-lead {
  margin: 24px 0 0;
  max-width: 670px;
  color: #334155;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.lp-small {
  color: var(--lp-muted);
  font-size: 0.92rem;
}

.lp-hero {
  overflow: hidden;
  padding: 68px 0 84px;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: 54px;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.lp-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 720px;
}

.lp-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px;
  border: 1px solid rgba(9, 59, 101, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.lp-trust-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lp-blue-soft);
  color: var(--lp-blue);
  font-weight: 900;
}

.lp-trust-item strong {
  display: block;
  color: var(--lp-blue);
  font-size: 0.96rem;
  line-height: 1.25;
}

.lp-trust-item span {
  display: block;
  margin-top: 2px;
  color: var(--lp-muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.lp-hero-visual {
  position: relative;
  min-height: 560px;
}

.lp-hero-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(9, 59, 101, 0.08), rgba(226, 101, 19, 0.09)),
    url("../../Landingpages/Bilder/steueroptimiert/hero-generationen.jpg") center / cover no-repeat;
  box-shadow: var(--lp-shadow);
}

.lp-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 43, 73, 0.52) 100%);
}

.lp-hero-badge {
  position: absolute;
  right: -18px;
  bottom: 52px;
  z-index: 2;
  width: 215px;
  min-height: 215px;
  padding: 26px;
  border-radius: 50%;
  background: var(--lp-blue);
  color: #ffffff;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 18px 45px rgba(9, 59, 101, 0.35);
}

.lp-hero-badge strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.15rem;
  line-height: 1.22;
}

.lp-hero-badge span {
  display: block;
  font-size: 0.86rem;
  opacity: 0.88;
}

.lp-hero-note {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 2;
  max-width: 340px;
  padding: 16px 18px;
  border-left: 5px solid var(--lp-yellow);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--lp-blue);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
}

.lp-hero-note strong {
  display: block;
  margin-bottom: 3px;
}

.lp-card {
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  background: var(--lp-card);
  box-shadow: var(--lp-shadow);
}

.lp-disclaimer-mini {
  margin-top: 18px;
  color: var(--lp-muted);
  font-size: 0.82rem;
}

.lp-disclaimer-mini strong {
  color: var(--lp-blue);
}

.frame,
.frame-group-container,
.frame-group-inner,
.frame-container,
.frame-inner {
  max-width: none;
}

.lp-steueroptimiert .frame {
  margin: 0;
  padding: 0;
}

.lp-steueroptimiert .frame-container {
  width: auto;
  max-width: none;
  padding: 0;
}

.lp-steueroptimiert .frame-inner > :first-child {
  margin-top: 0;
}

.lp-steueroptimiert .frame-inner > :last-child {
  margin-bottom: 0;
}

.lp-footer-minimal {
  padding: 34px 0;
  background: var(--lp-blue-dark);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.lp-footer-minimal .lp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.lp-footer-minimal p {
  margin: 0;
}

.lp-footer-minimal a {
  color: #ffffff;
  text-decoration: none;
}

.lp-footer-minimal a:hover {
  text-decoration: underline;
}

.lp-footer-minimal span {
  margin: 0 8px;
  opacity: 0.5;
}

@media (max-width: 1040px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero-visual,
  .lp-hero-image {
    min-height: 440px;
  }

  .lp-hero-badge {
    right: 18px;
  }
}

@media (max-width: 760px) {
  .lp-container {
    width: min(100% - 28px, var(--lp-container));
  }

  .lp-header-inner {
    min-height: 72px;
  }

  .lp-logo img {
    width: 146px;
  }

  .lp-header-cta {
    display: none;
  }

  .lp-hero {
    padding: 42px 0 62px;
  }

  .lp-trust-row {
    grid-template-columns: 1fr;
  }

  .lp-hero-visual,
  .lp-hero-image {
    min-height: 380px;
  }

  .lp-hero-badge {
    width: 168px;
    min-height: 168px;
    right: 14px;
    bottom: 22px;
    padding: 18px;
  }

  .lp-hero-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }

  .lp-footer-minimal .lp-container {
    display: block;
  }

  .lp-footer-minimal p + p {
    margin-top: 10px;
  }
}


/* --------------------------------------------
   Modul: Warum Planung wichtig ist
-------------------------------------------- */

.lp-intro {
  padding: 84px 0;
  background: #ffffff;
}

.lp-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 56px;
  align-items: center;
}

.lp-intro-copy {
  max-width: 620px;
}

.lp-check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.lp-check-list li {
  position: relative;
  padding-left: 38px;
  color: #334155;
  font-size: 1.03rem;
}

.lp-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--lp-blue-soft);
  color: var(--lp-blue);
  font-weight: 900;
  font-size: 0.9rem;
}

.lp-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lp-benefit-card {
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 251, 0.96));
  box-shadow: 0 14px 36px rgba(9, 59, 101, 0.08);
}

.lp-benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--lp-blue);
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
}

.lp-benefit-card h3 {
  margin: 0 0 8px;
  color: var(--lp-blue);
  font-size: 1.16rem;
  line-height: 1.25;
}

.lp-benefit-card p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.96rem;
}

/* --------------------------------------------
   Modul: Freibeträge
-------------------------------------------- */

.lp-allowances {
  padding: 86px 0;
  background:
    radial-gradient(circle at top left, rgba(246, 180, 0, 0.12), transparent 28rem),
    var(--lp-blue-dark);
  color: #ffffff;
}

.lp-allowances .lp-eyebrow,
.lp-allowances .lp-h2 {
  color: #ffffff;
}

.lp-allowances .lp-eyebrow::before {
  background: var(--lp-yellow);
}

.lp-allowances-head {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: flex-end;
  margin-bottom: 42px;
}

.lp-allowances-head p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.lp-allowance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.lp-allowance-card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  color: var(--lp-blue);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.lp-allowance-card strong {
  display: block;
  color: var(--lp-orange);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.lp-allowance-card span {
  display: block;
  margin-top: 12px;
  color: var(--lp-blue);
  font-weight: 800;
}

.lp-allowance-card small {
  display: block;
  margin-top: 8px;
  color: var(--lp-muted);
  line-height: 1.4;
}

.lp-info-box {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 5px solid var(--lp-yellow);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

.lp-info-box strong {
  color: #ffffff;
}

@media (max-width: 980px) {
  .lp-intro-grid,
  .lp-allowances-head {
    grid-template-columns: 1fr;
    display: grid;
  }

  .lp-allowance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .lp-intro {
    padding: 62px 0;
  }

  .lp-benefit-grid,
  .lp-allowance-grid {
    grid-template-columns: 1fr;
  }

  .lp-benefit-card,
  .lp-allowance-card {
    padding: 22px;
  }
}

/* --------------------------------------------
   Modul: Prinzip + Praxisbeispiel
-------------------------------------------- */

.lp-principle {
  padding: 92px 0;
  background: #f6f8fb;
}

.lp-principle-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: 56px;
  align-items: start;
}

.lp-principle-copy {
  max-width: 620px;
}

.lp-steps {
  display: grid;
  gap: 16px;
  margin-top: 34px;
  counter-reset: lpstep;
}

.lp-step {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--lp-border);
  box-shadow: 0 12px 34px rgba(9, 59, 101, 0.08);
}

.lp-step::before {
  counter-increment: lpstep;
  content: counter(lpstep);
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--lp-blue);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.15rem;
}

.lp-step h3 {
  margin: 0 0 4px;
  color: var(--lp-blue);
  font-size: 1.08rem;
}

.lp-step p {
  margin: 0;
  color: var(--lp-muted);
}

.lp-example-card {
  padding: 30px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--lp-shadow);
  border: 1px solid var(--lp-border);
}

.lp-example-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.lp-example-head h2 {
  margin: 0;
  color: var(--lp-blue);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.lp-example-tag {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(226, 101, 19, 0.1);
  color: var(--lp-orange);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lp-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lp-tax-box {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(9, 59, 101, 0.12);
  background: #f8fafc;
}

.lp-tax-box-highlight {
  background:
    linear-gradient(180deg, rgba(9, 59, 101, 0.98), rgba(6, 43, 73, 0.98));
  color: #ffffff;
}

.lp-tax-label {
  display: block;
  margin-bottom: 18px;
  color: var(--lp-muted);
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-tax-box-highlight .lp-tax-label {
  color: rgba(255, 255, 255, 0.7);
}

.lp-tax-number {
  display: block;
  color: var(--lp-orange);
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
}

.lp-tax-box-highlight .lp-tax-number {
  color: var(--lp-yellow);
}

.lp-tax-title {
  display: block;
  margin-top: 14px;
  color: var(--lp-blue);
  font-size: 1.1rem;
  font-weight: 900;
}

.lp-tax-box-highlight .lp-tax-title {
  color: #ffffff;
}

.lp-tax-box p {
  margin: 12px 0 0;
  color: var(--lp-muted);
}

.lp-tax-box-highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.lp-calculation {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(9, 59, 101, 0.05);
}

.lp-calculation-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(9, 59, 101, 0.1);
  color: #334155;
}

.lp-calculation-row:last-child {
  border-bottom: 0;
}

.lp-calculation-row strong {
  color: var(--lp-blue);
}

.lp-result-strip {
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(226, 101, 19, 0.12), rgba(246, 180, 0, 0.16));
  border: 1px solid rgba(226, 101, 19, 0.18);
}

.lp-result-strip h3 {
  margin: 0 0 10px;
  color: var(--lp-blue);
  font-size: 1.35rem;
}

.lp-result-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.lp-result-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  color: var(--lp-blue);
  font-weight: 800;
}

.lp-result-list li::before {
  content: "✓ ";
  color: var(--lp-orange);
}

.lp-note-legal {
  margin-top: 18px;
  color: var(--lp-muted);
  font-size: 0.84rem;
}

@media (max-width: 1040px) {
  .lp-principle-grid,
  .lp-comparison {
    grid-template-columns: 1fr;
  }

  .lp-example-head {
    display: block;
  }

  .lp-example-tag {
    display: inline-block;
    margin-top: 16px;
  }
}

@media (max-width: 720px) {
  .lp-principle {
    padding: 66px 0;
  }

  .lp-step {
    grid-template-columns: 1fr;
  }

  .lp-result-list {
    grid-template-columns: 1fr;
  }

  .lp-example-card {
    padding: 22px;
  }

  .lp-calculation-row {
    display: block;
  }

  .lp-calculation-row span + strong,
  .lp-calculation-row span + b {
    display: block;
    margin-top: 4px;
  }
}


/* --------------------------------------------
   Modul: Nießbrauch + Versorgungssicherheit
-------------------------------------------- */

.lp-usufruct {
  padding: 92px 0;
  background:
    radial-gradient(circle at top right, rgba(226, 101, 19, 0.1), transparent 30rem),
    #ffffff;
}

.lp-usufruct-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.lp-usufruct-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 32px;
  background: linear-gradient(145deg, var(--lp-blue), var(--lp-blue-dark));
  color: #ffffff;
  box-shadow: var(--lp-shadow);
}

.lp-usufruct-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(246, 180, 0, 0.18);
}

.lp-usufruct-card-content {
  position: relative;
  z-index: 1;
}

.lp-usufruct-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.lp-usufruct-card p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.lp-usufruct-flow {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.lp-flow-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.lp-flow-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--lp-yellow);
  color: var(--lp-blue-dark);
  font-weight: 900;
  font-size: 1.25rem;
}

.lp-flow-item strong {
  display: block;
  color: #ffffff;
  font-size: 1.08rem;
}

.lp-flow-item span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
}

.lp-usufruct-benefits {
  display: grid;
  gap: 18px;
}

.lp-usufruct-benefit {
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--lp-border);
  box-shadow: 0 14px 36px rgba(9, 59, 101, 0.08);
}

.lp-usufruct-benefit h3 {
  margin: 0 0 8px;
  color: var(--lp-blue);
  font-size: 1.22rem;
}

.lp-usufruct-benefit p {
  margin: 0;
  color: var(--lp-muted);
}

.lp-usufruct-benefit h3::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--lp-blue-soft);
  color: var(--lp-blue);
  font-size: 0.9rem;
  vertical-align: 2px;
}

.lp-usufruct-note {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(9, 59, 101, 0.06);
  color: var(--lp-muted);
  font-size: 0.92rem;
}

.lp-usufruct-note strong {
  color: var(--lp-blue);
}

@media (max-width: 980px) {
  .lp-usufruct-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .lp-usufruct {
    padding: 66px 0;
  }

  .lp-usufruct-card {
    padding: 26px;
  }

  .lp-flow-item {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------
   Modul: CTA + Formular
-------------------------------------------- */

.lp-form-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at top left, rgba(246, 180, 0, 0.14), transparent 32rem),
    linear-gradient(180deg, var(--lp-blue-dark), var(--lp-blue));
  color: #ffffff;
}

.lp-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 56px;
  align-items: start;
}

.lp-form-copy {
  position: sticky;
  top: 112px;
}

.lp-form-section .lp-eyebrow,
.lp-form-section .lp-h2 {
  color: #ffffff;
}

.lp-form-section .lp-eyebrow::before {
  background: var(--lp-yellow);
}

.lp-form-section .lp-lead {
  color: rgba(255, 255, 255, 0.82);
}

.lp-cta-points {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.lp-cta-points li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  color: rgba(255, 255, 255, 0.86);
}

.lp-cta-points li::before {
  content: "✓";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lp-yellow);
  color: var(--lp-blue-dark);
  font-weight: 900;
}

.lp-contact-box {
  margin-top: 34px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.lp-contact-box strong {
  display: block;
  color: #ffffff;
  font-size: 1.15rem;
}

.lp-contact-box a {
  color: var(--lp-yellow);
  font-weight: 900;
  text-decoration: none;
}

.lp-contact-box a:hover {
  text-decoration: underline;
}

.lp-form-card {
  padding: 34px;
  border-radius: 32px;
  background: #ffffff;
  color: var(--lp-text);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.lp-form-card h2 {
  margin: 0;
  color: var(--lp-blue);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.lp-form-card > p {
  margin: 14px 0 0;
  color: var(--lp-muted);
}

.lp-form {
  margin-top: 28px;
}

.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lp-form-field {
  margin-bottom: 18px;
}

.lp-form-field label,
.lp-radio-label {
  display: block;
  margin-bottom: 8px;
  color: var(--lp-blue);
  font-weight: 800;
  font-size: 0.95rem;
}

.lp-required {
  color: var(--lp-orange);
}

.lp-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-radio {
  position: relative;
}

.lp-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lp-radio span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(9, 59, 101, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--lp-blue);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.lp-radio input:checked + span {
  background: var(--lp-blue);
  border-color: var(--lp-blue);
  color: #ffffff;
}

.lp-form input[type="text"],
.lp-form input[type="email"],
.lp-form input[type="tel"] {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(9, 59, 101, 0.18);
  border-radius: 16px;
  background: #ffffff;
  color: var(--lp-text);
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.lp-form input:focus {
  border-color: var(--lp-orange);
  box-shadow: 0 0 0 4px rgba(226, 101, 19, 0.14);
}

.lp-form-hint {
  margin-top: 8px;
  color: var(--lp-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.lp-form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.lp-form-submit .lp-button {
  min-height: 56px;
  padding-inline: 28px;
  cursor: pointer;
}

.lp-form-note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(9, 59, 101, 0.12);
  color: var(--lp-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.lp-form-note a {
  color: var(--lp-blue);
  font-weight: 800;
}

.lp-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lp-loading {
  display: none;
  margin-top: 18px;
  color: var(--lp-blue);
  font-weight: 700;
}

@media (max-width: 980px) {
  .lp-form-grid {
    grid-template-columns: 1fr;
  }

  .lp-form-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .lp-form-section {
    padding: 68px 0;
  }

  .lp-form-card {
    padding: 24px;
    border-radius: 24px;
  }

  .lp-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lp-form-submit {
    display: block;
  }

  .lp-form-submit .lp-button {
    width: 100%;
  }

  .lp-form-submit .lp-small {
    display: block;
    margin-top: 12px;
  }
}

/* --------------------------------------------
   Modul: Rechtliche Hinweise
-------------------------------------------- */

.lp-legal-section {
  padding: 76px 0;
  background: #f6f8fb;
  color: var(--lp-text);
}

.lp-legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: 44px;
  align-items: start;
}

.lp-legal-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(226, 101, 19, 0.12);
  color: var(--lp-orange);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-legal-section h2 {
  margin: 0;
  color: var(--lp-blue);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.lp-legal-section p {
  margin: 16px 0 0;
  color: var(--lp-muted);
}

.lp-legal-card {
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--lp-border);
  box-shadow: 0 14px 36px rgba(9, 59, 101, 0.08);
}

.lp-legal-card h3 {
  margin: 0 0 14px;
  color: var(--lp-blue);
  font-size: 1.22rem;
}

.lp-legal-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-legal-list li {
  position: relative;
  padding-left: 30px;
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.55;
}

.lp-legal-list li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(226, 101, 19, 0.14);
  color: var(--lp-orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.lp-legal-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.lp-legal-mini {
  padding: 22px;
  border-radius: 22px;
  background: rgba(9, 59, 101, 0.04);
  border: 1px solid rgba(9, 59, 101, 0.08);
}

.lp-legal-mini strong {
  display: block;
  margin-bottom: 8px;
  color: var(--lp-blue);
}

.lp-legal-mini span {
  color: var(--lp-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.lp-final-cta {
  margin-top: 34px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--lp-blue), var(--lp-blue-dark));
  color: #ffffff;
}

.lp-final-cta strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.25;
}

.lp-final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.lp-final-cta .lp-button {
  margin-top: 20px;
}

@media (max-width: 980px) {
  .lp-legal-grid,
  .lp-legal-mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .lp-legal-section {
    padding: 58px 0;
  }

  .lp-legal-card,
  .lp-final-cta {
    padding: 22px;
  }
}

/* --------------------------------------------
   Modul: Berechnung erklären / 33.000 vs 567
-------------------------------------------- */

.lp-tax-explainer {
  padding: 92px 0;
  background:
    radial-gradient(circle at top left, rgba(226, 101, 19, 0.09), transparent 30rem),
    #f6f8fb;
}

.lp-tax-explainer-head {
  max-width: 920px;
  margin-bottom: 44px;
}

.lp-tax-explainer-head .lp-lead {
  max-width: 820px;
}

.lp-tax-components {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.lp-tax-component {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--lp-border);
  box-shadow: 0 14px 36px rgba(9, 59, 101, 0.08);
}

.lp-tax-component-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--lp-blue);
  color: #ffffff;
  font-weight: 900;
}

.lp-tax-component h3 {
  margin: 0 0 10px;
  color: var(--lp-blue);
  font-size: 1.16rem;
  line-height: 1.25;
}

.lp-tax-component p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.lp-tax-component strong {
  color: var(--lp-orange);
}

.lp-tax-route-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.lp-tax-route {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
}

.lp-tax-route-highlight {
  background: linear-gradient(180deg, var(--lp-blue), var(--lp-blue-dark));
  color: #ffffff;
}

.lp-tax-route-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(226, 101, 19, 0.1);
  color: var(--lp-orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-tax-route-highlight .lp-tax-route-kicker {
  background: rgba(246, 180, 0, 0.16);
  color: var(--lp-yellow);
}

.lp-tax-route h3 {
  margin: 0;
  color: var(--lp-blue);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.lp-tax-route-highlight h3 {
  color: #ffffff;
}

.lp-tax-route-intro {
  margin: 14px 0 0;
  color: var(--lp-muted);
}

.lp-tax-route-highlight .lp-tax-route-intro {
  color: rgba(255, 255, 255, 0.78);
}

.lp-tax-calc-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(9, 59, 101, 0.1);
  background: #f8fafc;
}

.lp-tax-route-highlight .lp-tax-calc-list {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.lp-tax-calc-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(9, 59, 101, 0.1);
  color: #334155;
  font-size: 0.96rem;
}

.lp-tax-calc-list li:last-child {
  border-bottom: 0;
}

.lp-tax-route-highlight .lp-tax-calc-list li {
  border-bottom-color: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.84);
}

.lp-tax-calc-list span {
  color: inherit;
}

.lp-tax-calc-list strong {
  color: var(--lp-blue);
  white-space: nowrap;
  text-align: right;
}

.lp-tax-route-highlight .lp-tax-calc-list strong {
  color: #ffffff;
}

.lp-tax-calc-list .lp-tax-calc-result {
  background: rgba(226, 101, 19, 0.08);
  font-weight: 900;
}

.lp-tax-route-highlight .lp-tax-calc-list .lp-tax-calc-result {
  background: rgba(246, 180, 0, 0.16);
}

.lp-tax-calc-list .lp-tax-calc-result strong {
  color: var(--lp-orange);
  font-size: 1.08rem;
}

.lp-tax-route-highlight .lp-tax-calc-list .lp-tax-calc-result strong {
  color: var(--lp-yellow);
}

.lp-tax-big-result {
  margin-top: auto;
  padding-top: 26px;
}

.lp-tax-big-result strong {
  display: block;
  color: var(--lp-orange);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.lp-tax-route-highlight .lp-tax-big-result strong {
  color: var(--lp-yellow);
}

.lp-tax-big-result span {
  display: block;
  margin-top: 8px;
  color: var(--lp-blue);
  font-weight: 900;
}

.lp-tax-route-highlight .lp-tax-big-result span {
  color: #ffffff;
}

.lp-tax-summary {
  margin-top: 30px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(226, 101, 19, 0.12), rgba(246, 180, 0, 0.16));
  border: 1px solid rgba(226, 101, 19, 0.18);
}

.lp-tax-summary h3 {
  margin: 0 0 10px;
  color: var(--lp-blue);
  font-size: 1.4rem;
}

.lp-tax-summary p {
  margin: 0;
  color: #334155;
}

.lp-tax-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.lp-tax-summary-item {
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  color: var(--lp-blue);
  font-weight: 900;
}

.lp-tax-summary-item small {
  display: block;
  margin-top: 4px;
  color: var(--lp-muted);
  font-weight: 400;
  line-height: 1.4;
}

.lp-tax-warning {
  margin-top: 20px;
  color: var(--lp-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .lp-tax-components {
    grid-template-columns: 1fr;
  }

  .lp-tax-route-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .lp-tax-explainer {
    padding: 66px 0;
  }

  .lp-tax-route {
    padding: 22px;
    border-radius: 24px;
  }

  .lp-tax-calc-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .lp-tax-calc-list strong {
    text-align: left;
    white-space: normal;
  }

  .lp-tax-summary-grid {
    grid-template-columns: 1fr;
  }

  .lp-tax-big-result strong {
    font-size: 3rem;
  }
}

/* --------------------------------------------
   Modul: Vollständige Steuer-Tabellen + Beispiele
-------------------------------------------- */

.lp-tax-tables {
  padding: 92px 0;
  background:
    radial-gradient(circle at top left, rgba(226, 101, 19, 0.08), transparent 32rem),
    #f6f8fb;
}

.lp-tax-tables-head {
  max-width: 940px;
  margin-bottom: 42px;
}

.lp-tax-tables-head .lp-lead {
  max-width: 860px;
}

.lp-table-card {
  margin-top: 28px;
  padding: 30px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid var(--lp-border);
  box-shadow: 0 14px 36px rgba(9, 59, 101, 0.08);
}

.lp-table-card-dark {
  background: linear-gradient(180deg, var(--lp-blue), var(--lp-blue-dark));
  color: #ffffff;
}

.lp-table-card h3 {
  margin: 0 0 8px;
  color: var(--lp-blue);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.lp-table-card-dark h3 {
  color: #ffffff;
}

.lp-table-card > p {
  margin: 0 0 22px;
  color: var(--lp-muted);
}

.lp-table-card-dark > p {
  color: rgba(255, 255, 255, 0.78);
}

.lp-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  border: 1px solid rgba(9, 59, 101, 0.12);
}

.lp-table-card-dark .lp-table-scroll {
  border-color: rgba(255, 255, 255, 0.16);
}

.lp-tax-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  background: #ffffff;
  color: var(--lp-text);
  font-size: 0.9rem;
}

.lp-tax-table th,
.lp-tax-table td {
  padding: 13px 12px;
  border-bottom: 1px solid rgba(9, 59, 101, 0.12);
  text-align: left;
  vertical-align: top;
}

.lp-tax-table th {
  background: #eef3f7;
  color: var(--lp-blue);
  font-weight: 900;
  font-size: 0.82rem;
  line-height: 1.25;
}

.lp-tax-table td {
  color: #334155;
}

.lp-tax-table tr:last-child td {
  border-bottom: 0;
}

.lp-tax-table .lp-nowrap {
  white-space: nowrap;
}

.lp-tax-table .lp-highlight-cell {
  color: var(--lp-orange);
  font-weight: 900;
}

.lp-tax-table .lp-tax-class {
  font-weight: 900;
  color: var(--lp-blue);
  text-align: center;
}

.lp-tax-table-caption {
  margin-top: 12px;
  color: var(--lp-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.lp-tax-example-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 30px;
}

.lp-tax-example {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
}

.lp-tax-example-highlight {
  background: linear-gradient(180deg, var(--lp-blue), var(--lp-blue-dark));
  color: #ffffff;
}

.lp-tax-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(226, 101, 19, 0.12);
  color: var(--lp-orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-tax-example-highlight .lp-tax-kicker {
  background: rgba(246, 180, 0, 0.16);
  color: var(--lp-yellow);
}

.lp-tax-example h3 {
  margin: 0;
  color: var(--lp-blue);
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.lp-tax-example-highlight h3 {
  color: #ffffff;
}

.lp-tax-example p {
  margin: 14px 0 0;
  color: var(--lp-muted);
}

.lp-tax-example-highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.lp-calc-table {
  width: 100%;
  margin-top: 22px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid rgba(9, 59, 101, 0.12);
}

.lp-tax-example-highlight .lp-calc-table {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.lp-calc-table td {
  padding: 13px 15px;
  border-bottom: 1px solid rgba(9, 59, 101, 0.1);
  color: #334155;
}

.lp-tax-example-highlight .lp-calc-table td {
  border-bottom-color: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.85);
}

.lp-calc-table tr:last-child td {
  border-bottom: 0;
}

.lp-calc-table td:last-child {
  text-align: right;
  white-space: nowrap;
  font-weight: 900;
  color: var(--lp-blue);
}

.lp-tax-example-highlight .lp-calc-table td:last-child {
  color: #ffffff;
}

.lp-calc-table .lp-calc-result td {
  background: rgba(226, 101, 19, 0.08);
  font-weight: 900;
}

.lp-tax-example-highlight .lp-calc-table .lp-calc-result td {
  background: rgba(246, 180, 0, 0.16);
}

.lp-calc-table .lp-calc-result td:last-child {
  color: var(--lp-orange);
  font-size: 1.1rem;
}

.lp-tax-example-highlight .lp-calc-table .lp-calc-result td:last-child {
  color: var(--lp-yellow);
}

.lp-tax-big {
  margin-top: auto;
  padding-top: 28px;
}

.lp-tax-big strong {
  display: block;
  color: var(--lp-orange);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.lp-tax-example-highlight .lp-tax-big strong {
  color: var(--lp-yellow);
}

.lp-tax-big span {
  display: block;
  margin-top: 8px;
  color: var(--lp-blue);
  font-weight: 900;
}

.lp-tax-example-highlight .lp-tax-big span {
  color: #ffffff;
}

.lp-value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 26px;
  align-items: start;
}

.lp-value-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  color: var(--lp-text);
  border-radius: 20px;
  overflow: hidden;
}

.lp-value-table th,
.lp-value-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(9, 59, 101, 0.1);
}

.lp-value-table th {
  background: #eef3f7;
  color: var(--lp-blue);
  text-align: left;
  font-weight: 900;
}

.lp-value-table td:last-child {
  text-align: right;
  color: var(--lp-orange);
  font-weight: 900;
}

.lp-value-table tr:last-child td {
  border-bottom: 0;
}

.lp-value-note {
  padding: 24px;
  border-radius: 24px;
  background: rgba(246, 180, 0, 0.13);
  border: 1px solid rgba(246, 180, 0, 0.22);
  color: var(--lp-blue);
}

.lp-value-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.lp-tax-summary-box {
  margin-top: 30px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(226, 101, 19, 0.12), rgba(246, 180, 0, 0.16));
  border: 1px solid rgba(226, 101, 19, 0.18);
}

.lp-tax-summary-box h3 {
  margin: 0 0 10px;
  color: var(--lp-blue);
  font-size: 1.4rem;
}

.lp-tax-summary-box p {
  margin: 0;
  color: #334155;
}

.lp-tax-summary-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.lp-tax-summary-item {
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  color: var(--lp-blue);
  font-weight: 900;
}

.lp-tax-summary-item small {
  display: block;
  margin-top: 4px;
  color: var(--lp-muted);
  font-weight: 400;
  line-height: 1.4;
}

.lp-tax-warning {
  margin-top: 20px;
  color: var(--lp-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .lp-tax-example-grid,
  .lp-value-grid {
    grid-template-columns: 1fr;
  }

  .lp-tax-summary-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .lp-tax-tables {
    padding: 66px 0;
  }

  .lp-table-card,
  .lp-tax-example {
    padding: 22px;
    border-radius: 24px;
  }

  .lp-tax-table {
    min-width: 860px;
    font-size: 0.84rem;
  }

  .lp-tax-table th,
  .lp-tax-table td {
    padding: 11px 10px;
  }

  .lp-calc-table,
  .lp-calc-table tbody,
  .lp-calc-table tr,
  .lp-calc-table td {
    display: block;
    width: 100%;
  }

  .lp-calc-table tr {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(9, 59, 101, 0.1);
  }

  .lp-tax-example-highlight .lp-calc-table tr {
    border-bottom-color: rgba(255, 255, 255, 0.13);
  }

  .lp-calc-table tr:last-child {
    border-bottom: 0;
  }

  .lp-calc-table td {
    padding: 0;
    border-bottom: 0;
  }

  .lp-calc-table td:last-child {
    margin-top: 4px;
    text-align: left;
    white-space: normal;
  }

  .lp-tax-big strong {
    font-size: 3rem;
  }
}

