.lp-page {
  --lp-bg: #080b12;
  --lp-bg-2: #0d111b;
  --lp-panel: rgba(18, 23, 35, 0.78);
  --lp-panel-solid: #121723;
  --lp-panel-2: #171d2b;
  --lp-border: rgba(168, 184, 255, 0.18);
  --lp-border-strong: rgba(168, 184, 255, 0.34);
  --lp-text: #f5f7ff;
  --lp-muted: #aeb5c8;
  --lp-soft: #737c96;
  --lp-blue: #5f7cff;
  --lp-blue-2: #9db3ff;
  --lp-green: #91d98b;
  --lp-radius: 8px;
  --lp-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: Onest, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}

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

.lp-section {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  padding: 82px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 24%, rgba(95, 124, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #080b12 0%, #0c1019 100%);
}

.lp-section + .lp-section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.lp-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(143, 162, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 162, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 60% 40%, #000 0%, transparent 72%);
}

.lp-shell {
  position: relative;
  width: min(1500px, calc(100% - 72px));
  margin: 0 auto;
}

.lp-eyebrow {
  margin: 0 0 18px;
  color: var(--lp-blue-2);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-page h1,
.lp-page h2,
.lp-page h3,
.lp-page p {
  letter-spacing: 0;
}

.lp-page h1,
.lp-page h2 {
  margin: 0;
  color: var(--lp-text);
  font-weight: 650;
  line-height: 0.98;
}

.lp-page h1 {
  max-width: 780px;
  font-size: clamp(3.45rem, 4.85vw, 4.85rem);
}

.lp-page h1 span {
  display: block;
  white-space: nowrap;
}

.lp-page h2 {
  font-size: clamp(2.45rem, 3.35vw, 3.55rem);
}

.lp-page h3 {
  margin: 0;
  color: var(--lp-text);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.18;
}

.lp-page p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 18px;
  line-height: 1.65;
}

.lp-lede {
  max-width: 620px;
  margin-top: 28px !important;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem) !important;
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
}

.lp-btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 32px;
  border: 1px solid transparent;
  border-radius: var(--lp-radius);
  color: var(--lp-text);
  font-size: 17px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.lp-btn:hover {
  transform: translateY(-1px);
  color: var(--lp-text);
}

.lp-btn-primary {
  background: linear-gradient(180deg, #6d88ff 0%, #3657e5 100%);
  box-shadow: 0 18px 44px rgba(73, 99, 255, 0.28);
}

.lp-btn-ghost {
  color: var(--lp-blue-2);
}

.lp-btn-outline {
  border-color: var(--lp-border-strong);
  background: rgba(8, 11, 18, 0.28);
}

.lp-shot,
.lp-panel-shot,
.lp-ghost-shot,
.lp-step-shot img,
.lp-bento img,
.lp-before-after img,
.lp-result img,
.lp-faq-stack img,
.lp-final-wall img {
  display: block;
  width: 100%;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: #101522;
  box-shadow: var(--lp-shadow);
}

.lp-hero {
  min-height: min(860px, calc(100vh - 72px));
  padding-top: 68px;
  padding-bottom: 68px;
}

.lp-hero::after,
.lp-final::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 11, 18, 0.95) 0%, rgba(8, 11, 18, 0.78) 34%, rgba(8, 11, 18, 0.2) 76%, rgba(8, 11, 18, 0.82) 100%),
    radial-gradient(circle at 76% 52%, rgba(135, 159, 255, 0.16), transparent 32%);
}

.lp-hero-shell {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(520px, 0.95fr) minmax(600px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.lp-hero-copy {
  z-index: 3;
}

.lp-trust {
  display: flex;
  max-width: 430px;
  gap: 18px;
  align-items: center;
  margin-top: 32px !important;
  font-size: 16px !important;
}

.lp-trust span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid rgba(95, 124, 255, 0.42);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 124, 255, 0.2), transparent 70%);
}

.lp-trust span::before {
  content: "";
  width: 24px;
  height: 24px;
  margin: auto;
  border: 2px solid var(--lp-blue-2);
  border-radius: 6px;
}

.lp-hero-stage {
  position: relative;
  height: min(650px, 60vw);
  min-height: 500px;
}

.lp-shot-back {
  position: absolute;
  top: 14px;
  right: 2%;
  width: 88%;
  opacity: 0.82;
  filter: brightness(1.12) contrast(1.04);
  transform: rotate(3deg) skewY(-1deg);
}

.lp-shot-main {
  position: absolute;
  top: 92px;
  right: 1%;
  width: 94%;
  opacity: 1;
  filter: brightness(1.14) contrast(1.06);
  transform: rotate(2deg);
}

.lp-shot-float {
  position: absolute;
  right: 34%;
  bottom: 0;
  width: 46%;
  filter: brightness(1.1) contrast(1.04);
  transform: rotate(4deg);
}

.lp-shot-product {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 42%;
  object-fit: cover;
  aspect-ratio: 1.05;
  filter: brightness(1.08) contrast(1.06) saturate(0.94);
  transform: rotate(-5deg);
}

.lp-page--photo-to-3d-crystal-engraving {
  --lp-blue: #6288ff;
  --lp-blue-2: #a8bcff;
  --lp-green: #99e3af;
}

.lp-page--photo-to-3d-crystal-engraving .lp-section {
  background:
    radial-gradient(circle at 76% 22%, rgba(119, 152, 255, 0.16), transparent 35%),
    radial-gradient(circle at 12% 78%, rgba(229, 166, 84, 0.11), transparent 34%),
    linear-gradient(180deg, #080a10 0%, #0c111a 100%);
}

.lp-page--photo-to-3d-crystal-engraving .lp-hero::after,
.lp-page--photo-to-3d-crystal-engraving .lp-final::after {
  background:
    linear-gradient(90deg, rgba(8, 10, 16, 0.96) 0%, rgba(8, 10, 16, 0.82) 35%, rgba(8, 10, 16, 0.18) 74%, rgba(8, 10, 16, 0.78) 100%),
    radial-gradient(circle at 70% 54%, rgba(110, 139, 255, 0.2), transparent 36%),
    radial-gradient(circle at 18% 64%, rgba(227, 165, 83, 0.13), transparent 32%);
}

.lp-page--photo-to-3d-crystal-engraving .lp-shot-back {
  width: 82%;
  opacity: 0.72;
}

.lp-page--photo-to-3d-crystal-engraving .lp-shot-main {
  top: 86px;
  right: -1%;
  width: 84%;
}

.lp-page--photo-to-3d-crystal-engraving .lp-shot-float {
  right: 51%;
  bottom: 4px;
  width: 36%;
  z-index: 3;
}

.lp-page--photo-to-3d-crystal-engraving .lp-shot-product {
  z-index: 2;
}

.lp-rail {
  display: none;
}

.lp-rail span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lp-blue);
  box-shadow: 0 0 28px rgba(95, 124, 255, 0.8);
}

.lp-rail p {
  writing-mode: vertical-rl;
  color: currentColor;
  font-size: 16px;
  line-height: 1;
}

.lp-problem {
  min-height: 700px;
}

.lp-problem-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px 62px;
  align-items: center;
}

.lp-copy-block {
  max-width: 660px;
}

.lp-copy-block p:last-child,
.lp-center-head p,
.lp-files-copy > p,
.lp-example-copy > p,
.lp-final-shell > p {
  margin-top: 24px;
}

.lp-problem-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  grid-column: 1 / 2;
}

.lp-card,
.lp-bento-card,
.lp-faq-item,
.lp-proof-strip,
.lp-upload-zone,
.lp-output-list div {
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: linear-gradient(180deg, rgba(23, 29, 43, 0.84), rgba(13, 17, 27, 0.86));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.lp-card {
  min-height: 188px;
  padding: 24px 22px;
}

.lp-card-number {
  display: block;
  margin-bottom: 30px;
  color: var(--lp-blue);
  font-weight: 700;
}

.lp-card p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.55;
}

.lp-problem-visual {
  position: relative;
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  min-height: 500px;
}

.lp-ghost-shot {
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  opacity: 0.24;
  filter: saturate(0.8);
}

.lp-panel-shot {
  position: absolute;
  right: -5%;
  bottom: 8px;
  width: 104%;
  opacity: 0.96;
  transform: rotate(-2deg);
}

.lp-center-head {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.lp-workflow {
  min-height: 0;
  padding-top: 56px;
  padding-bottom: 58px;
}

.lp-workflow .lp-center-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.lp-workflow h2 {
  font-size: clamp(2.1rem, 2.75vw, 3rem);
}

.lp-workflow-media {
  display: grid;
  grid-template-columns: 0.75fr 0.85fr 1.35fr 0.85fr 0.75fr;
  gap: 20px;
  align-items: center;
}

.lp-step-shot {
  overflow: hidden;
  border-radius: var(--lp-radius);
}

.lp-step-shot img {
  height: 220px;
  object-fit: cover;
}

.lp-step-shot-small img {
  height: 188px;
}

.lp-step-shot-large img {
  height: 250px;
}

.lp-workflow-line {
  height: 2px;
  margin: 20px 0 0;
  background: linear-gradient(90deg, transparent, rgba(95, 124, 255, 0.95), transparent);
  box-shadow: 0 0 32px rgba(95, 124, 255, 0.28);
}

.lp-step-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: -19px;
}

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

.lp-step span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #8da0ff, #4865e9);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(95, 124, 255, 0.36);
}

.lp-step p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.42;
}

.lp-center-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.lp-files {
  min-height: 700px;
}

.lp-files-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 54px;
  align-items: center;
}

.lp-bento {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
}

.lp-bento-card {
  min-height: 204px;
  padding: 22px;
}

.lp-bento-card p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.5;
}

.lp-upload-zone {
  display: grid;
  min-height: 118px;
  place-items: center;
  margin-top: 22px;
  border-style: dashed;
  text-align: center;
}

.lp-upload-zone span {
  color: var(--lp-blue-2);
  font-weight: 800;
}

.lp-upload-icon {
  position: relative;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(157, 179, 255, 0.7);
  border-radius: 50%;
}

.lp-upload-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 12px;
  height: 12px;
  border-left: 2px solid rgba(157, 179, 255, 0.9);
  border-top: 2px solid rgba(157, 179, 255, 0.9);
  transform: translateX(-50%) rotate(45deg);
}

.lp-upload-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 11px;
  width: 2px;
  height: 18px;
  background: rgba(157, 179, 255, 0.9);
  transform: translateX(-50%);
}

.lp-file-row,
.lp-file-download {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 10px;
  border: 1px solid var(--lp-border);
  border-radius: 7px;
  background: rgba(9, 12, 19, 0.55);
}

.lp-file-row img {
  width: 62px;
  height: 54px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: none;
}

.lp-file-row strong,
.lp-file-download strong {
  display: block;
  color: var(--lp-text);
  font-size: 14px;
}

.lp-file-row span,
.lp-file-download span {
  color: var(--lp-muted);
  font-size: 13px;
}

.lp-file-download {
  justify-content: space-between;
  margin-top: 14px;
}

.lp-file-download strong {
  color: var(--lp-blue-2);
}

.lp-upload-zone small {
  color: var(--lp-muted);
}

.lp-mesh-card {
  grid-row: span 2;
}

.lp-mesh-card img {
  height: 260px;
  margin: 16px 0;
  object-fit: contain;
  object-position: center;
}

.lp-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.lp-status {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(145, 217, 139, 0.3);
  border-radius: 999px;
  background: rgba(145, 217, 139, 0.14);
  color: var(--lp-green);
  font-size: 13px;
  font-weight: 700;
}

.lp-format-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 28px;
}

.lp-format-tabs span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lp-border);
  border-radius: 6px;
  color: var(--lp-muted);
}

.lp-format-tabs span:first-child {
  background: linear-gradient(180deg, #7f98ff, #4a64e7);
  color: #fff;
}

.lp-credit-card {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(23, 29, 43, 0.9), rgba(13, 17, 27, 0.94));
}

.lp-credit-card strong {
  display: block;
  margin-top: 18px;
  color: var(--lp-green);
  font-size: 34px;
  line-height: 1;
}

.lp-credit-card small {
  display: block;
  margin-top: 18px;
  color: var(--lp-muted);
  font-size: 15px;
  line-height: 1.55;
}

.lp-bento-note {
  grid-column: 1 / -1;
  padding: 16px 20px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  font-size: 15px !important;
}

.lp-files-copy h2 {
  max-width: 620px;
}

.lp-output-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.lp-output-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 20px 22px;
}

.lp-output-list span {
  color: var(--lp-blue-2);
  font-weight: 700;
}

.lp-output-list strong {
  color: var(--lp-text);
  font-weight: 500;
}

.lp-example {
  min-height: 640px;
}

.lp-example-shell {
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: center;
}

.lp-example h2 {
  font-size: clamp(2.05rem, 2.65vw, 3rem);
}

.lp-example-copy {
  position: relative;
  z-index: 2;
  max-width: 460px;
}

.lp-before-after {
  position: relative;
  display: grid;
  grid-template-columns: 0.42fr 90px 1fr;
  gap: 24px;
  align-items: center;
}

.lp-page--photo-to-3d-crystal-engraving .lp-before-after,
.lp-page--depth-map-for-laser-engraving .lp-before-after {
  grid-template-columns: 0.33fr 72px 0.62fr 0.46fr;
}

.lp-before-after figure {
  margin: 0;
}

.lp-before figcaption,
.lp-after figcaption,
.lp-result figcaption {
  margin-bottom: 12px;
  color: var(--lp-blue-2);
  font-size: 16px;
  font-weight: 700;
}

.lp-before img {
  height: 218px;
  object-fit: cover;
  object-position: 48% 44%;
}

.lp-after img {
  height: 374px;
  object-fit: cover;
  object-position: left top;
}

.lp-result img {
  height: 324px;
  object-fit: cover;
  object-position: center;
}

.lp-depth-line {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.lp-depth-line span {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--lp-blue), var(--lp-blue-2));
}

.lp-depth-line p {
  color: var(--lp-blue-2);
  font-size: 13px;
}

.lp-proof-strip {
  position: relative;
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -42px;
  padding: 18px 24px;
}

.lp-proof-strip span {
  color: var(--lp-text);
  font-weight: 650;
}

.lp-faq {
  min-height: 660px;
}

.lp-faq-shell {
  display: grid;
  grid-template-columns: minmax(400px, 0.86fr) minmax(0, 1.14fr);
  gap: 58px;
  align-items: center;
}

.lp-faq-stack {
  position: relative;
  min-height: 500px;
}

.lp-faq-stack img {
  position: absolute;
  object-fit: cover;
}

.lp-faq-stack img:nth-child(1) {
  top: 0;
  left: -10px;
  width: 78%;
  height: 270px;
  object-position: left top;
  opacity: 0.58;
  transform: rotate(3deg);
}

.lp-faq-stack img:nth-child(2) {
  top: 112px;
  right: 0;
  width: 58%;
  height: 260px;
  object-position: center;
}

.lp-faq-stack img:nth-child(3) {
  left: 18%;
  bottom: 0;
  width: 72%;
  height: 250px;
  object-position: left top;
}

.lp-credit-mini {
  position: absolute;
  left: 0;
  bottom: 56px;
  width: 206px;
  padding: 22px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: rgba(15, 20, 31, 0.92);
  color: var(--lp-green);
  font-size: 30px;
  font-weight: 800;
  box-shadow: var(--lp-shadow);
}

.lp-credit-mini small {
  display: block;
  margin-top: 8px;
  color: var(--lp-text);
  font-size: 16px;
  font-weight: 500;
}

.lp-faq-list h2 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(2.1rem, 2.75vw, 3rem);
}

.lp-faq-item {
  margin-top: 14px;
  padding: 0;
}

.lp-faq-item summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 22px;
  color: var(--lp-text);
  cursor: pointer;
  font-size: 19px;
  font-weight: 650;
  list-style: none;
}

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

.lp-faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 2px solid var(--lp-blue);
  border-radius: 50%;
  background: rgba(95, 124, 255, 0.08);
  color: var(--lp-blue-2);
  font-size: 22px;
  font-weight: 650;
  line-height: 28px;
  text-align: center;
}

.lp-faq-item[open] summary::after {
  content: "-";
  background: rgba(95, 124, 255, 0.16);
  line-height: 26px;
}

.lp-faq-item p {
  padding: 0 22px 22px;
  font-size: 16px;
}

.lp-final {
  min-height: 560px;
  padding-top: 66px;
  padding-bottom: 66px;
  display: grid;
  align-items: center;
}

.lp-final h2 {
  font-size: clamp(2.65rem, 3.7vw, 4.1rem);
}

.lp-final-wall {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.58;
}

.lp-final-wall img {
  position: absolute;
  object-fit: cover;
}

.lp-final-wall img:nth-child(1) {
  left: -2%;
  top: 5%;
  width: 48%;
  height: 82%;
  object-position: left top;
  transform: rotate(-2deg);
}

.lp-final-wall img:nth-child(2) {
  left: 27%;
  top: -1%;
  width: 50%;
  height: 62%;
  object-position: left top;
}

.lp-final-wall img:nth-child(3) {
  right: 1%;
  top: 6%;
  width: 32%;
  height: 48%;
  object-position: center;
  transform: rotate(2deg);
}

.lp-final-wall img:nth-child(4) {
  right: -2%;
  bottom: 4%;
  width: 38%;
  height: 50%;
  object-position: center top;
  transform: rotate(-2deg);
}

.lp-final-shell {
  max-width: 860px;
  text-align: center;
}

.lp-final-actions {
  justify-content: center;
}

.lp-final-trust {
  margin-top: 24px !important;
  color: var(--lp-text) !important;
}

.lp-final-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 34px;
  color: var(--lp-muted);
}

.lp-final-notes span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 18px;
  border-radius: 50%;
  background: var(--lp-blue);
  vertical-align: middle;
}

@media screen and (max-width: 1200px) {
  .lp-shell {
    width: min(100% - 40px, 1060px);
  }

  .lp-hero-shell,
  .lp-problem-shell,
  .lp-files-shell,
  .lp-faq-shell,
  .lp-example-shell {
    grid-template-columns: 1fr;
  }

  .lp-hero-stage {
    height: 580px;
    min-height: 0;
  }

  .lp-problem-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .lp-workflow-media {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-step-shot-large {
    grid-column: span 2;
  }

  .lp-step-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
  }

  .lp-step {
    text-align: left;
  }

  .lp-before-after,
  .lp-proof-strip {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    grid-column: auto;
    margin-top: 48px;
  }

  .lp-page--photo-to-3d-crystal-engraving .lp-before-after {
    grid-template-columns: 0.42fr 80px 0.92fr;
  }

  .lp-result {
    grid-column: 1 / -1;
  }

  .lp-result img {
    height: 300px;
  }
}

@media screen and (max-width: 767px) {
  .lp-section {
    min-height: 0;
    padding: 66px 0;
  }

  .lp-shell {
    width: min(100% - 32px, 100%);
  }

  .lp-page h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 9.8vw, 2.8rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .lp-page h1 span {
    display: block;
    white-space: normal;
  }

  .lp-page h2 {
    font-size: clamp(2.3rem, 9.8vw, 3.1rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .lp-page p {
    font-size: 16px;
  }

  .lp-lede {
    margin-top: 22px !important;
    max-width: calc(100vw - 32px);
    font-size: 15.5px !important;
  }

  .lp-rail {
    display: none;
  }

  .lp-hero-shell {
    min-height: 0;
    gap: 16px;
  }

  .lp-hero-copy {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .lp-actions,
  .lp-btn {
    width: 100%;
    max-width: 100%;
  }

  .lp-actions {
    gap: 12px;
  }

  .lp-btn {
    min-height: 54px;
    padding: 0 18px;
    font-size: 15px;
  }

  .lp-btn span[aria-hidden="true"] {
    display: none;
  }

  .lp-trust {
    align-items: flex-start;
    margin-top: 24px !important;
  }

  .lp-hero-stage {
    height: 340px;
    margin-top: 0;
  }

  .lp-shot-back {
    width: 86%;
    right: -1%;
  }

  .lp-shot-main {
    top: 62px;
    width: 92%;
    right: 0;
  }

  .lp-shot-float {
    width: 54%;
    right: 10%;
  }

  .lp-shot-product {
    width: 46%;
    left: 0;
    bottom: 4px;
  }

  .lp-page--photo-to-3d-crystal-engraving .lp-shot-main {
    top: 60px;
    width: 88%;
  }

  .lp-page--photo-to-3d-crystal-engraving .lp-shot-float {
    width: 42%;
    right: 42%;
  }

  .lp-problem-cards,
  .lp-bento,
  .lp-proof-strip,
  .lp-step-grid {
    grid-template-columns: 1fr;
  }

  .lp-card-number {
    margin-bottom: 28px;
  }

  .lp-card {
    min-height: 0;
  }

  .lp-workflow-media {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .lp-workflow-media .lp-step-shot:nth-child(4),
  .lp-workflow-media .lp-step-shot:nth-child(5) {
    display: none;
  }

  .lp-step-shot-large {
    grid-column: span 2;
  }

  .lp-step-shot img,
  .lp-step-shot-small img,
  .lp-step-shot-large img {
    height: 170px;
  }

  .lp-step-shot-large img {
    height: 210px;
  }

  .lp-workflow-line {
    display: none;
  }

  .lp-step-grid {
    gap: 14px;
    margin-top: 22px;
  }

  .lp-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 2px 14px;
    text-align: left;
  }

  .lp-step span {
    grid-row: 1 / 3;
    margin: 0;
  }

  .lp-step p {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.42;
  }

  .lp-panel-shot {
    right: 0;
    width: 96%;
  }

  .lp-output-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lp-files-shell,
  .lp-faq-shell {
    gap: 42px;
  }

  .lp-files-copy {
    order: -1;
  }

  .lp-bento-card {
    min-height: 0;
    padding: 18px;
  }

  .lp-upload-zone {
    min-height: 92px;
    margin-top: 14px;
  }

  .lp-mesh-card img {
    height: 190px;
  }

  .lp-format-tabs {
    margin-top: 16px;
  }

  .lp-output-list {
    margin-top: 20px;
  }

  .lp-before-after {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .lp-page--photo-to-3d-crystal-engraving .lp-before-after {
    grid-template-columns: 1fr;
  }

  .lp-depth-line {
    display: none;
  }

  .lp-before img,
  .lp-after img {
    height: 230px;
    object-fit: contain;
    object-position: center;
  }

  .lp-result img {
    height: 240px;
  }

  .lp-example h2 {
    font-size: clamp(2.05rem, 8.4vw, 2.55rem);
  }

  .lp-proof-strip {
    margin-top: 16px;
  }

  .lp-faq-stack {
    display: none;
  }

  .lp-faq-stack img:nth-child(1) {
    width: 92%;
    height: 210px;
  }

  .lp-faq-stack img:nth-child(2) {
    top: 98px;
    width: 64%;
    height: 210px;
  }

  .lp-faq-stack img:nth-child(3) {
    left: 10%;
    width: 84%;
    height: 220px;
  }

  .lp-credit-mini {
    width: 178px;
    padding: 18px;
    font-size: 25px;
  }

  .lp-faq-list h2 {
    margin-bottom: 28px;
  }

  .lp-faq-item summary {
    min-height: 68px;
    font-size: 18px;
  }

  .lp-final-wall img:nth-child(1) {
    width: 92%;
  }

  .lp-final-wall img:nth-child(2),
  .lp-final-wall img:nth-child(3),
  .lp-final-wall img:nth-child(4) {
    display: none;
  }

  .lp-final {
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .lp-final h2 {
    font-size: clamp(2.15rem, 8.6vw, 2.8rem);
  }
}
