:root {
  --bg: #fff7fb;
  --surface: #ffffff;
  --surface-soft: #fff0f7;
  --text: #110820;
  --muted: #66576d;
  --line: rgba(131, 58, 180, .16);
  --purple: #833ab4;
  --pink: #e1306c;
  --red: #fd1d1d;
  --orange: #f77737;
  --gradient: linear-gradient(135deg, #833ab4 0%, #c13584 32%, #e1306c 56%, #fd1d1d 78%, #f77737 100%);
  --shadow: 0 24px 70px rgba(131, 58, 180, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Plus Jakarta Sans", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
.lp-page { overflow: hidden; }
.lp-svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lp-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.lp-hero {
  position: relative;
  min-height: 100vh;
  padding: 28px 0 64px;
  background:
    radial-gradient(circle at 12% 14%, rgba(131, 58, 180, .16), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(247, 119, 55, .16), transparent 28%),
    linear-gradient(135deg, #fff 0%, #fff0f7 52%, #fff7f0 100%);
}
.lp-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(131,58,180,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131,58,180,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent);
}
.lp-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: 42px;
  align-items: center;
}
.lp-brandbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 46px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.70);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 16px 45px rgba(131,58,180,.10);
  backdrop-filter: blur(14px);
  animation: lpFloatSoft 6s ease-in-out infinite;
}
.lp-brandbar img {
  width: 154px;
  height: auto;
  display: block;
}
.lp-contact,
.lp-form-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.lp-contact a,
.lp-form-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 850;
  font-size: 14px;
}
.lp-form-contact {
  justify-content: center;
  margin-top: 14px;
}
.lp-kicker,
.lp-section-title span,
.lp-form-tag,
.lp-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  color: var(--pink);
  font-weight: 800;
  letter-spacing: .01em;
}
.lp-offer {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 12px;
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 36px rgba(225,48,108,.18);
  animation: lpPulse 2.4s ease-in-out infinite;
}
.lp-urgent {
  display: grid;
  gap: 4px;
  max-width: 560px;
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--pink);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 14px 34px rgba(131,58,180,.08);
}
.lp-urgent b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 18px;
}
.lp-urgent span {
  color: var(--muted);
  font-weight: 700;
}
.lp-hero h1 {
  max-width: 820px;
  margin: 20px 0 18px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
}
.lp-hero-copy > p,
.lp-section-title p,
.lp-card p,
.lp-package p,
.lp-process p,
.lp-cta p,
.lp-form p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.lp-keywords,
.lp-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.lp-keywords span {
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(131,58,180,.08);
}
.lp-proof div {
  min-width: 140px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.lp-proof strong {
  display: block;
  color: var(--pink);
  font-size: 32px;
  line-height: 1;
}
.lp-proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}
.lp-form {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 30px 80px rgba(17,8,32,.18);
  backdrop-filter: blur(18px);
}
.lp-form h2 {
  margin: 16px 0 8px;
  font-size: 32px;
}
.lp-form label {
  display: block;
  margin-top: 14px;
}
.lp-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}
.lp-form .lp-label-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp-form .lp-label-title .lp-svg {
  width: 17px;
  height: 17px;
  color: var(--pink);
}
.lp-form input,
.lp-form select,
.lp-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fbf8fd;
  color: var(--text);
  font: inherit;
  outline: 0;
}
.lp-form textarea {
  min-height: 112px;
  resize: vertical;
}
.lp-form input:focus,
.lp-form select:focus,
.lp-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(225,48,108,.12);
}
.lp-button,
.lp-outline {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  background: var(--gradient);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(225,48,108,.22);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
  gap: 9px;
}
.lp-form .lp-button {
  width: 100%;
  margin-top: 18px;
}
.lp-outline {
  width: 100%;
  margin-top: 18px;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.lp-outline:hover,
.lp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(225,48,108,.25);
}
.lp-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}
.lp-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--bg);
}
.lp-section:before {
  content: "";
  position: absolute;
  inset: 28px auto auto max(20px, calc((100vw - 1180px) / 2));
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(131,58,180,.10), rgba(225,48,108,.07));
  transform: rotate(12deg);
  opacity: .5;
}
.lp-section:nth-of-type(even):before {
  left: auto;
  right: max(20px, calc((100vw - 1180px) / 2));
  transform: rotate(-12deg);
}
.lp-section > .lp-shell {
  position: relative;
  z-index: 1;
}
.lp-soft {
  background:
    radial-gradient(circle at 12% 10%, rgba(131,58,180,.08), transparent 28%),
    linear-gradient(180deg, #fff, var(--surface-soft));
}
.lp-section-title {
  max-width: 790px;
  margin-bottom: 34px;
}
.lp-section-title.centered,
.lp-section-title:has(+ .lp-card-grid) {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.lp-section-title h2,
.lp-cta h2 {
  margin: 16px 0 12px;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.06;
}
.lp-card-grid,
.lp-package-grid,
.lp-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.lp-card,
.lp-package,
.lp-process article {
  position: relative;
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(17,8,32,.06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
}
.lp-card:after,
.lp-package:after,
.lp-process article:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 10%, rgba(255,255,255,.56) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}
.lp-card:hover,
.lp-package:hover,
.lp-process article:hover,
.lp-checklist div:hover {
  transform: translateY(-6px);
  border-color: rgba(225,48,108,.28);
  box-shadow: 0 24px 62px rgba(131,58,180,.13);
}
.lp-card:hover:after,
.lp-package:hover:after,
.lp-process article:hover:after {
  transform: translateX(120%);
}
.lp-card i {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--gradient);
  color: #fff;
}
.lp-card i .lp-svg {
  width: 25px;
  height: 25px;
}
.lp-card h3,
.lp-package h3,
.lp-process h3 {
  margin: 20px 0 10px;
  font-size: 24px;
}
.lp-package.featured {
  color: #fff;
  background: var(--gradient);
  border-color: transparent;
  transform: translateY(-10px);
}
.lp-package.featured p,
.lp-package.featured li {
  color: rgba(255,255,255,.88);
}
.lp-package > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(131,58,180,.10);
  color: var(--pink);
  font-weight: 900;
}
.lp-package.featured > span {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.lp-package strong {
  display: block;
  margin: 16px 0;
  font-size: 30px;
}
.lp-package ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lp-package li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.55;
}
.lp-feature-icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--pink);
}
.lp-package.featured .lp-feature-icon {
  color: #fff;
}
.lp-two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: start;
}
.lp-checklist {
  display: grid;
  gap: 14px;
}
.lp-checklist div {
  display: flex;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(17,8,32,.05);
  font-weight: 750;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.lp-checklist b,
.lp-process article > span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
}
.lp-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.lp-process article > span {
  width: 42px;
  height: 42px;
  font-weight: 900;
  gap: 0;
  position: relative;
}
.lp-process article > span .lp-svg {
  position: absolute;
  right: -8px;
  bottom: -7px;
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 999px;
  background: #fff;
  color: var(--pink);
}
.lp-cta {
  margin-top: 42px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 28px;
  background: #110820;
  color: #fff;
}
.lp-cta h2 {
  color: #fff;
}
.lp-cta p {
  margin: 0;
  color: rgba(255,255,255,.76);
}
.lp-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.lp-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes lpFloatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes lpPulse {
  0%, 100% { box-shadow: 0 16px 36px rgba(225,48,108,.18); }
  50% { box-shadow: 0 20px 46px rgba(225,48,108,.30); }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 991px) {
  .lp-shell { width: min(100% - 28px, 760px); }
  .lp-hero-grid,
  .lp-two-col {
    grid-template-columns: 1fr;
  }
  .lp-card-grid,
  .lp-package-grid,
  .lp-process {
    grid-template-columns: 1fr;
  }
  .lp-hero {
    padding: 18px 0 68px;
  }
  .lp-brandbar {
    align-items: flex-start;
    border-radius: 24px;
    flex-direction: column;
  }
  .lp-contact {
    width: 100%;
  }
  .lp-contact a {
    flex: 1 1 100%;
    justify-content: center;
  }
  .lp-section {
    padding: 70px 0;
  }
  .lp-package.featured {
    transform: none;
  }
  .lp-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
