.lt-legal {
  --lt-navy: #071a50;
  --lt-blue: #2a63ad;
  --lt-cyan: #33b5c7;
  --lt-green: #6fcb3d;
  --lt-orange: #f28c38;
  --lt-cream: #fff8ec;
  --lt-text: #2c3e50;
  width: min(900px, calc(100% - 40px));
  margin: 34px auto 72px;
  color: var(--lt-text);
}

.lt-legal__hero {
  position: relative;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(42, 99, 173, 0.16);
  border-radius: 22px 22px 0 0;
  background: linear-gradient(135deg, #eef9fc 0%, #fff 62%, var(--lt-cream) 100%);
  color: var(--lt-navy);
  box-shadow: 0 14px 38px rgba(7, 26, 80, 0.08);
}

.lt-legal__hero::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--lt-cyan), var(--lt-green), var(--lt-orange));
  content: "";
}

.lt-legal__hero h1 {
  max-width: 760px;
  margin: 10px 0 12px;
  color: var(--lt-navy);
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1.16;
}

.lt-legal__eyebrow {
  display: inline-flex;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff0df;
  color: #9a4c10;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lt-legal__lead {
  max-width: 720px;
  margin: 0;
  color: #50627a;
  font-size: clamp(0.98rem, 1.7vw, 1.1rem);
  line-height: 1.65;
}

.lt-legal__body {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(42, 99, 173, 0.14);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  background: #fff;
}

.lt-legal__body h2 {
  margin: 34px 0 14px;
  padding: 11px 15px;
  border-left: 5px solid var(--lt-cyan);
  border-radius: 0 12px 12px 0;
  background: #f1fafc;
  color: var(--lt-navy);
  font-size: clamp(1.14rem, 2vw, 1.38rem);
  line-height: 1.35;
}

.lt-legal__body p,
.lt-legal__body li {
  font-size: 0.98rem;
  line-height: 1.72;
}

.lt-legal__body a {
  color: var(--lt-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lt-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  margin: 28px 0;
  gap: 22px;
}

.lt-plan {
  margin: 28px 0;
  padding: clamp(22px, 4vw, 34px);
  border: 2px solid #ffd46a;
  border-radius: 20px;
  background: var(--lt-cream);
}

.lt-plans .lt-plan {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.lt-plan--featured {
  border-color: var(--lt-orange);
  box-shadow: 0 18px 38px rgba(242, 140, 56, 0.16);
}

.lt-plan__tag {
  align-self: flex-start;
  margin: 0 0 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff0df;
  color: #9a4c10;
  font-size: .75rem !important;
  font-weight: 800;
  text-transform: uppercase;
}

.lt-plan__name {
  margin: 0;
  color: var(--lt-navy);
  font-weight: 800;
}

.lt-plan__price {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: 4px 10px;
  margin: 6px 0 16px;
  color: var(--lt-navy);
  line-height: 1;
}

.lt-plan__price del {
  grid-column: 1;
  color: #6f7785;
  font-size: 1rem;
}

.lt-plan__price strong {
  grid-column: 2;
  min-width: 0;
  color: var(--lt-navy);
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 900;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.lt-plan__price span {
  grid-column: 2;
  font-size: 0.88rem;
  font-weight: 700;
}

.lt-legal__button {
  display: inline-flex;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--lt-orange);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 8px 0 #c66118;
}

.lt-plan > p:last-child {
  margin-top: auto;
}

.lt-legal__button--secondary {
  border: 2px solid var(--lt-orange);
  background: #fff;
  box-shadow: none;
  color: #a7530d !important;
}

.lt-steps {
  display: grid;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
  gap: 14px;
}

.lt-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  padding: 18px;
  border-radius: 18px;
  background: var(--lt-cream);
  counter-increment: steps;
  gap: 2px 14px;
}

.lt-steps li::before {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lt-green);
  color: var(--lt-navy);
  content: counter(steps);
  font-weight: 900;
}

.lt-steps span {
  grid-column: 2;
}

.lt-legal__note,
.lt-legal__contact {
  margin-top: 34px;
  padding: 22px;
  border-left: 6px solid var(--lt-cyan);
  border-radius: 12px;
  background: #eefbfc;
}

.lt-legal__contact h2 {
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.lt-facts {
  padding: 22px 22px 22px 44px;
  border-radius: 18px;
  background: var(--lt-cream);
}

@media (max-width: 600px) {
	.lt-plans {
		grid-template-columns: 1fr;
	}
  .lt-legal {
    width: min(100% - 24px, 900px);
    margin-top: 20px;
  }

  .lt-legal__hero,
  .lt-legal__body {
    border-radius: 16px;
  }

  .lt-legal__body {
    border-radius: 0 0 16px 16px;
  }
}
