.lp-checkout {
  --lp-bg-deep: #0b0d2a;
  --lp-bg-mid: #141744;
  --lp-bg-soft: #1d1f4f;
  --lp-gold: #d4af6a;
  --lp-gold-soft: #e8d3a0;
  --lp-text: #f3eede;
  --lp-text-mute: #b8b3a0;
  --lp-card-bg: rgba(255, 255, 255, 0.04);
  --lp-card-bdr: rgba(212, 175, 106, 0.25);
  --lp-serif: "Cormorant Garamond", Georgia, serif;
  --lp-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  font-family: var(--lp-sans);
  color: var(--lp-text);
  line-height: 1.6;
}

.lp-checkout h1,
.lp-checkout h2,
.lp-checkout h3 {
  font-family: var(--lp-serif);
  font-weight: 600;
  color: var(--lp-text);
  letter-spacing: 0.01em;
}

.lp-checkout a {
  color: var(--lp-gold-soft);
}

/* --- HERO --- */
.lp-hero {
  position: relative;
  padding: 4rem 1.25rem 3rem;
  overflow: hidden;
}

.lp-hero__stars {
  display: none;
}

.lp-hero__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.lp-hero__h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  margin: 0 0 1.25rem;
}

.lp-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--lp-text-mute);
  margin: 0 0 2.5rem;
}

/* --- FORM CARD --- */
.lp-form-card {
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-card-bdr);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.lp-form-card .form-label {
  color: var(--lp-text);
  font-size: 0.9rem;
  font-weight: 500;
}

.lp-form-card .form-control {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--lp-text);
}

.lp-form-card .form-control:focus {
  border-color: var(--lp-gold);
  box-shadow: 0 0 0 0.15rem rgba(212, 175, 106, 0.25);
  color: var(--lp-text);
  background: rgba(0, 0, 0, 0.35);
}

.lp-form-card .form-check-label {
  color: var(--lp-text-mute);
  font-size: 0.875rem;
}

.lp-form-card .form-check-input {
  background-color: rgba(0, 0, 0, 0.35);
  border-color: rgba(212, 175, 106, 0.4);
}

.lp-form-card .form-check-input:checked {
  background-color: var(--lp-gold);
  border-color: var(--lp-gold);
}

.lp-cta {
  background: var(--lp-gold);
  color: var(--lp-bg-deep);
  border: none;
  padding: 0.9rem 1.25rem;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 8px;
  transition: box-shadow .2s ease, transform .1s ease;
  cursor: pointer;
}

.lp-cta:hover:not(:disabled) {
  box-shadow: 0 0 24px var(--lp-gold-soft);
  color: var(--lp-bg-deep);
}

.lp-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --- STORY --- */
.lp-story {
  padding: 5rem 1.25rem;
}

.lp-story__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.lp-story__h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 2rem;
  color: var(--lp-gold-soft);
}

.lp-story__p {
  font-size: 1.1rem;
  color: var(--lp-text);
  margin: 0 0 1.5rem;
}

.lp-story__p:last-child {
  margin-bottom: 0;
}

/* --- WHAT YOU GET --- */
.lp-whatyouget {
  padding: 5rem 1.25rem;
}

.lp-whatyouget__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.lp-whatyouget__h2 {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 3rem;
}

.lp-whatyouget__group {
  margin-bottom: 3rem;
}

.lp-whatyouget__group:last-child {
  margin-bottom: 0;
}

.lp-whatyouget__group-h3 {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--lp-gold);
  text-align: center;
  margin: 0 0 1.5rem;
  font-family: var(--lp-sans);
}

.lp-whatyouget__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.lp-card {
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-card-bdr);
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.lp-card__icon {
  flex: 0 0 24px;
  color: var(--lp-gold);
}

.lp-card__title {
  font-family: var(--lp-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--lp-text);
}

.lp-card__tagline {
  margin: 0;
  font-size: 0.92rem;
  color: var(--lp-text-mute);
  font-style: italic;
}

/* --- GUARANTEE --- */
.lp-guarantee {
  padding: 5rem 1.25rem;
}

.lp-guarantee__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.lp-guarantee__h2 {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 3rem;
}

.lp-guarantee__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  text-align: center;
}

.lp-guarantee__item {
  padding: 1rem;
}

.lp-guarantee__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.lp-guarantee__title {
  font-family: var(--lp-serif);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--lp-text);
}

.lp-guarantee__body {
  margin: 0;
  color: var(--lp-text-mute);
}

/* --- FINAL CTA --- */
.lp-final {
  padding: 5rem 1.25rem;
  text-align: center;
}

.lp-final__h2 {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.25;
}

.lp-final__btn {
  display: inline-block;
  text-decoration: none;
}

/* --- STICKY MOBILE --- */
.lp-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  background: var(--lp-bg-deep);
  border-top: 1px solid var(--lp-card-bdr);
  transform: translateY(100%);
  transition: transform .25s ease;
  z-index: 100;
}

.lp-sticky.is-visible {
  transform: translateY(0);
}

.lp-sticky__btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

@media (min-width: 768px) {
  .lp-sticky {
    display: none;
  }
}

/* --- REVEAL ANIMATION --- */
.lp-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .lp-reveal,
  .lp-sticky {
    transition: none;
  }
  .lp-reveal {
    opacity: 1;
    transform: none;
  }
}

/* --- A11y focus --- */
.lp-checkout *:focus-visible {
  outline: 2px solid var(--lp-gold);
  outline-offset: 2px;
}

/* --- Layout fallbacks for mobile --- */
@media (max-width: 575.98px) {
  .lp-hero {
    padding: 2.5rem 1rem 2rem;
    min-height: auto;
  }
  .lp-form-card {
    padding: 1.5rem 1rem;
  }
  .lp-story,
  .lp-whatyouget,
  .lp-guarantee,
  .lp-final {
    padding: 3rem 1rem;
  }
  /* Padding-bottom extra per non sovrapporre sticky bar */
  body {
    padding-bottom: 72px;
  }
}
