/* Premium landing — Soft Structuralism + Asymmetrical Bento */

:root {
  --lp-bg: #f4f3ef;
  --lp-bg-elevated: #fafaf7;
  --lp-ink: #141414;
  --lp-ink-soft: #3a3a38;
  --lp-muted: #5c5b56;
  --lp-line: rgba(20, 20, 20, 0.08);
  --lp-accent: #4a5d3a;
  --lp-accent-soft: #dfe6d4;
  --lp-warm: #c4a574;
  --lp-shell: rgba(20, 20, 20, 0.04);
  --lp-shadow: 0 24px 60px -28px rgba(20, 20, 20, 0.28);
  --lp-shadow-soft: 0 18px 40px -24px rgba(20, 20, 20, 0.18);
  --lp-ease: cubic-bezier(0.32, 0.72, 0, 1);
  --lp-radius-outer: 2rem;
  --lp-radius-inner: calc(2rem - 0.375rem);
  --lp-font-display: "Syne", sans-serif;
  --lp-font-body: "Manrope", sans-serif;
  --lp-container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.lp-body {
  margin: 0;
  min-height: 100dvh;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(74, 93, 58, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 5%, rgba(196, 165, 116, 0.12), transparent 50%),
    var(--lp-bg);
  color: var(--lp-ink);
  font-family: var(--lp-font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.lp-body a {
  color: inherit;
  text-decoration: none;
}

body.lp-body a.lp-btn-primary,
body.lp-body .lp-btn-primary {
  color: #f7f6f2;
}

body.lp-body a.lp-btn-ghost,
body.lp-body .lp-btn-ghost {
  color: var(--lp-ink);
}

body.lp-body .lp-cta a.lp-btn-primary,
body.lp-body .lp-cta .lp-btn-primary {
  color: #141414;
}

.lp-grain {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.lp-container {
  width: min(100% - 2rem, var(--lp-container));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .lp-container {
    width: min(100% - 3rem, var(--lp-container));
  }
}

/* Typography */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--lp-accent-soft);
  color: #2f3d24;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lp-display {
  margin: 0;
  font-family: var(--lp-font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-wrap: balance;
}

.lp-display-xl {
  font-size: clamp(2.4rem, 6.5vw, 4.35rem);
}

.lp-display-lg {
  font-size: clamp(2.1rem, 5vw, 3.75rem);
}

.lp-display-md {
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
}

.lp-lead {
  margin: 0;
  max-width: 36rem;
  color: var(--lp-muted);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

.lp-accent-text {
  color: var(--lp-accent);
}

/* Double-bezel */
.lp-bezel {
  padding: 0.375rem;
  border-radius: var(--lp-radius-outer);
  background: var(--lp-shell);
  border: 1px solid var(--lp-line);
  box-shadow: var(--lp-shadow-soft);
}

.lp-bezel-core {
  border-radius: var(--lp-radius-inner);
  background: var(--lp-bg-elevated);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.65);
  overflow: hidden;
}

.lp-bezel-core--pad {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .lp-bezel-core--pad {
    padding: 2rem;
  }
}

/* Buttons */
.lp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 0.85rem 0.85rem 1.4rem;
  border: 0;
  border-radius: 999px;
  font-family: var(--lp-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.55s var(--lp-ease),
    background-color 0.55s var(--lp-ease),
    color 0.55s var(--lp-ease),
    box-shadow 0.55s var(--lp-ease);
  will-change: transform;
}

.lp-btn > span:first-child {
  flex: 0 1 auto;
  min-width: 0;
}

.lp-btn:active {
  transform: scale(0.98);
}

.lp-btn-primary {
  background: var(--lp-ink);
  color: #f7f6f2;
  box-shadow: 0 14px 30px -16px rgba(20, 20, 20, 0.55);
}

.lp-btn-primary:hover {
  background: #000;
  box-shadow: 0 18px 36px -14px rgba(20, 20, 20, 0.6);
}

.lp-btn-ghost {
  background: rgba(20, 20, 20, 0.05);
  color: var(--lp-ink);
}

.lp-btn-ghost:hover {
  background: rgba(20, 20, 20, 0.09);
}

.lp-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.55s var(--lp-ease);
}

.lp-btn-primary .lp-btn-icon {
  background: rgba(255, 255, 255, 0.12);
}

.lp-btn-ghost .lp-btn-icon {
  background: rgba(20, 20, 20, 0.06);
}

.lp-btn:hover .lp-btn-icon {
  transform: translate(2px, -1px) scale(1.05);
}

.lp-btn-block {
  width: 100%;
  justify-content: center;
}

/* Island nav — без transform, чтобы fixed-оверлей не ломался */
.lp-nav-wrap {
  position: fixed;
  top: 1.25rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 60;
  width: auto;
  max-width: 920px;
  margin-inline: auto;
}

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.45rem 0.45rem 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(250, 250, 247, 0.86);
  border: 1px solid var(--lp-line);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 10px 40px -20px rgba(20, 20, 20, 0.25);
}

.lp-brand {
  font-family: var(--lp-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  padding-block: 0.15rem;
}

.lp-nav-desktop {
  display: none;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-nav-links a {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--lp-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    color 0.45s var(--lp-ease),
    background-color 0.45s var(--lp-ease);
}

.lp-nav-links a:hover {
  color: var(--lp-ink);
  background: rgba(20, 20, 20, 0.05);
}

.lp-nav-cta {
  display: none;
  flex-shrink: 0;
}

.lp-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--lp-line);
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.06);
  color: var(--lp-ink);
  cursor: pointer;
  transition: background-color 0.45s var(--lp-ease), transform 0.45s var(--lp-ease);
}

.lp-burger:hover {
  background: rgba(20, 20, 20, 0.1);
}

.lp-burger-icon {
  display: block;
}

.lp-burger-line {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.55s var(--lp-ease), opacity 0.35s var(--lp-ease);
}

.lp-nav-wrap.is-open .lp-burger-line-1 {
  transform: translateY(5px) rotate(45deg);
}

.lp-nav-wrap.is-open .lp-burger-line-2 {
  opacity: 0;
}

.lp-nav-wrap.is-open .lp-burger-line-3 {
  transform: translateY(-5px) rotate(-45deg);
}

.lp-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s var(--lp-ease);
}

.lp-mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lp-mobile-panel {
  padding: 1.5rem;
  border-radius: 1.75rem;
  background: var(--lp-bg-elevated);
  transform: translateY(1.5rem);
  transition: transform 0.7s var(--lp-ease);
}

.lp-mobile-overlay.is-open .lp-mobile-panel {
  transform: translateY(0);
}

.lp-mobile-panel a {
  display: block;
  padding: 0.95rem 0.25rem;
  font-family: var(--lp-font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 0.55s var(--lp-ease),
    transform 0.55s var(--lp-ease);
}

.lp-mobile-overlay.is-open .lp-mobile-panel a {
  opacity: 1;
  transform: translateY(0);
}

.lp-mobile-overlay.is-open .lp-mobile-panel a:nth-child(1) { transition-delay: 0.08s; }
.lp-mobile-overlay.is-open .lp-mobile-panel a:nth-child(2) { transition-delay: 0.12s; }
.lp-mobile-overlay.is-open .lp-mobile-panel a:nth-child(3) { transition-delay: 0.16s; }
.lp-mobile-overlay.is-open .lp-mobile-panel a:nth-child(4) { transition-delay: 0.2s; }
.lp-mobile-overlay.is-open .lp-mobile-panel a:nth-child(5) { transition-delay: 0.24s; }

@media (min-width: 960px) {
  .lp-nav-desktop,
  .lp-nav-cta {
    display: flex;
  }

  .lp-burger {
    display: none;
  }
}

/* Reveal */
.lp-reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  transition:
    opacity 0.85s var(--lp-ease),
    transform 0.85s var(--lp-ease);
}

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

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

/* Hero — editorial split */
.lp-hero {
  position: relative;
  min-height: min(100dvh, 920px);
  padding: 6.5rem 0 3rem;
  overflow: visible;
}

.lp-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.lp-hero-copy {
  display: grid;
  gap: 1.15rem;
  max-width: 36rem;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.lp-hero-actions .lp-btn {
  flex: 1 1 auto;
  min-width: min(100%, 12rem);
}

.lp-hero-visual {
  position: relative;
  max-width: 28rem;
  margin-inline: auto;
}

.lp-hero-media {
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  background: transparent;
  box-shadow: var(--lp-shadow);
}

.lp-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.lp-hero-float {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  padding: 1rem 1.15rem;
  border-radius: 1.15rem;
  background: rgba(250, 250, 247, 0.92);
  border: 1px solid var(--lp-line);
  box-shadow: var(--lp-shadow-soft);
  backdrop-filter: blur(8px);
}

.lp-hero-float strong {
  display: block;
  font-family: var(--lp-font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.lp-hero-float span {
  color: var(--lp-muted);
  font-size: 0.875rem;
}

@media (min-width: 900px) {
  .lp-hero {
    padding: 9rem 0 5rem;
  }

  .lp-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
  }

  .lp-hero-visual {
    max-width: none;
    justify-self: end;
  }

  .lp-hero-media {
    border-radius: 1.75rem;
  }

  .lp-hero-float {
    left: auto;
    right: 1rem;
    bottom: 1.25rem;
    width: min(100% - 2rem, 16.5rem);
  }
}

/* Stats */
.lp-stats {
  padding: 2rem 0 4rem;
}

.lp-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.75rem;
  background: rgba(20, 20, 20, 0.03);
  border: 1px solid var(--lp-line);
}

.lp-stat {
  text-align: center;
}

.lp-stat strong {
  display: block;
  font-family: var(--lp-font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.lp-stat span {
  color: var(--lp-muted);
  font-size: 0.8rem;
}

/* Sections */
.lp-section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .lp-section {
    padding: 7rem 0;
  }
}

.lp-section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.lp-section-head--center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.lp-section-head--split {
  max-width: none;
  align-items: end;
}

@media (min-width: 800px) {
  .lp-section-head--split {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
  }

  .lp-section-head--split .lp-lead {
    justify-self: end;
  }
}

/* Bento */
.lp-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.lp-bento-item {
  min-height: 100%;
}

.lp-bento-item .lp-bezel-core {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-bento-kicker {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
}

.lp-bento-item h3 {
  margin: 0;
  font-family: var(--lp-font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.lp-bento-item p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.lp-bento-item--wide .lp-bezel-core {
  background:
    linear-gradient(145deg, rgba(74, 93, 58, 0.12), transparent 55%),
    var(--lp-bg-elevated);
}

.lp-bento-item--dark .lp-bezel {
  background: rgba(20, 20, 20, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
}

.lp-bento-item--dark .lp-bezel-core {
  background: #171716;
  color: #f4f3ef;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.lp-bento-item--dark p {
  color: rgba(244, 243, 239, 0.65);
}

.lp-bento-item--dark .lp-bento-kicker {
  background: rgba(223, 230, 212, 0.15);
  color: var(--lp-accent-soft);
}

@media (min-width: 768px) {
  .lp-bento {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.1rem;
  }

  .lp-bento-item--wide { grid-column: span 8; grid-row: span 2; }
  .lp-bento-item--tall { grid-column: span 4; grid-row: span 2; }
  .lp-bento-item--mid { grid-column: span 4; }
  .lp-bento-item--half { grid-column: span 6; }
}

/* Steps */
.lp-steps {
  display: grid;
  gap: 1rem;
}

.lp-step {
  position: relative;
}

.lp-step-num {
  font-family: var(--lp-font-display);
  font-size: 3rem;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--lp-accent);
  opacity: 0.85;
}

.lp-step h3 {
  margin: 0.75rem 0 0.4rem;
  font-family: var(--lp-font-display);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.lp-step p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.92rem;
}

@media (min-width: 900px) {
  .lp-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .lp-step:nth-child(even) {
    transform: translateY(1.5rem);
  }
}

@media (max-width: 899px) {
  .lp-step:nth-child(even) {
    transform: none;
  }
}

/* AI panel */
.lp-ai {
  display: grid;
  gap: 1.5rem;
}

.lp-chat {
  display: grid;
  gap: 0.85rem;
}

.lp-bubble {
  max-width: 92%;
  padding: 0.95rem 1.1rem;
  border-radius: 1.15rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.lp-bubble--guest {
  justify-self: start;
  background: rgba(20, 20, 20, 0.05);
  border-bottom-left-radius: 0.35rem;
}

.lp-bubble--agent {
  justify-self: end;
  background: var(--lp-accent);
  color: #f7f6f2;
  border-bottom-right-radius: 0.35rem;
}

.lp-bubble small {
  display: block;
  margin-bottom: 0.25rem;
  opacity: 0.65;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .lp-ai {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: center;
  }
}

/* Pricing */
.lp-pricing {
  display: grid;
  gap: 1rem;
}

.lp-price {
  font-family: var(--lp-font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.lp-price span {
  font-size: 1rem;
  color: var(--lp-muted);
  letter-spacing: 0;
  font-family: var(--lp-font-body);
  font-weight: 500;
}

.lp-price-list {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  flex: 1;
}

.lp-price-list li {
  display: flex;
  gap: 0.6rem;
  color: var(--lp-ink-soft);
  font-size: 0.95rem;
}

.lp-price-list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--lp-accent);
  flex-shrink: 0;
}

.lp-price-list li.is-off {
  color: var(--lp-muted);
  opacity: 0.55;
}

.lp-price-list li.is-off::before {
  background: rgba(20, 20, 20, 0.2);
}

.lp-pricing .lp-bezel-core {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.lp-pricing-featured .lp-bezel {
  background: rgba(74, 93, 58, 0.12);
  border-color: rgba(74, 93, 58, 0.22);
}

.lp-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--lp-accent);
  color: #f7f6f2;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 800px) {
  .lp-pricing {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

/* Testimonials */
.lp-quotes {
  display: grid;
  gap: 1rem;
}

.lp-quote q {
  display: block;
  font-family: var(--lp-font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: normal;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.lp-quote footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  color: var(--lp-muted);
  font-size: 0.875rem;
}

.lp-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
  font-weight: 700;
  font-size: 0.75rem;
}

@media (min-width: 900px) {
  .lp-quotes {
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
  }

  .lp-quotes .lp-quote:first-child q {
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  }
}

/* FAQ */
.lp-faq {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
  margin-inline: auto;
}

.lp-faq details {
  border-radius: 1.35rem;
  background: rgba(20, 20, 20, 0.03);
  border: 1px solid var(--lp-line);
  padding: 0.25rem 1.15rem;
  transition: background-color 0.45s var(--lp-ease);
}

.lp-faq details[open] {
  background: var(--lp-bg-elevated);
}

.lp-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 0;
  font-family: var(--lp-font-display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

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

.lp-faq details p {
  margin: 0 0 1.15rem;
  color: var(--lp-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* CTA */
.lp-cta {
  padding-bottom: 6rem;
}

.lp-cta .lp-bezel-core {
  padding: 3rem 1.5rem;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(74, 93, 58, 0.16), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(196, 165, 116, 0.18), transparent 40%),
    #171716;
  color: #f4f3ef;
}

.lp-cta .lp-lead {
  margin-inline: auto;
  color: rgba(244, 243, 239, 0.65);
}

.lp-cta .lp-eyebrow {
  background: rgba(223, 230, 212, 0.15);
  color: var(--lp-accent-soft);
}

.lp-cta .lp-btn-primary {
  background: #f4f3ef;
  color: #141414;
}

.lp-cta .lp-btn-primary .lp-btn-icon {
  background: rgba(20, 20, 20, 0.08);
}

.lp-cta-inner {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
  max-width: 40rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .lp-cta .lp-bezel-core {
    padding: 4.5rem 3rem;
  }
}

/* Footer */
.lp-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--lp-line);
}

.lp-footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: var(--lp-muted);
  font-size: 0.875rem;
}

.lp-footer-links {
  display: flex;
  gap: 1rem;
}

/* Utility */
.lp-mt-1 { margin-top: 0.75rem; }
.lp-mt-2 { margin-top: 1.25rem; }
.lp-mt-3 { margin-top: 2rem; }

@media (max-width: 767px) {
  .lp-section {
    padding: 4rem 0;
  }
}
