:root {
  --black-velvet: #050304;
  --black-soft: #10080a;
  --red-velvet: #6e0f1a;
  --red-accent: #b5162a;
  --red-light: #d72a3f;
  --cream: #f7efe8;
  --muted: #b8a7a2;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);

  --color-bg: var(--black-velvet);
  --color-bg-secondary: var(--black-soft);
  --color-purple: var(--red-accent);
  --color-purple-light: var(--red-light);
  --color-purple-soft: rgba(181, 22, 42, 0.16);
  --color-white: var(--cream);
  --color-white-soft: var(--cream);
  --color-text: var(--cream);
  --color-text-muted: var(--muted);
  --color-card: var(--card);
  --color-card-hover: rgba(255, 255, 255, 0.09);
  --color-border: var(--border);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 18% -5%, rgba(181, 22, 42, 0.24), transparent 38rem),
    radial-gradient(ellipse at 88% 38%, rgba(110, 15, 26, 0.16), transparent 46rem),
    linear-gradient(145deg, var(--black-velvet), var(--black-soft) 48%, #080405 75%, var(--black-velvet));
  color: var(--color-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    repeating-linear-gradient(101deg, rgba(247, 239, 232, 0.012) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(79deg, rgba(0, 0, 0, 0.11) 0 1px, transparent 1px 5px),
    radial-gradient(ellipse at 50% 0%, rgba(215, 42, 63, 0.055), transparent 62%);
  background-size: 7px 100%, 9px 100%, 100% 100%;
  mask-image: linear-gradient(180deg, #000, rgba(0, 0, 0, 0.72) 72%, transparent);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(93deg, transparent 0 10%, rgba(247, 239, 232, 0.018) 18%, transparent 28% 43%, rgba(110, 15, 26, 0.075) 52%, transparent 64% 79%, rgba(247, 239, 232, 0.012) 88%, transparent),
    radial-gradient(ellipse 22% 85% at 24% 48%, rgba(181, 22, 42, 0.055), transparent 72%),
    radial-gradient(ellipse 24% 90% at 72% 52%, rgba(110, 15, 26, 0.07), transparent 74%);
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(5, 3, 4, 0.86);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(18px);
}

.logo,
.footer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.logo b,
.footer b {
  color: var(--color-purple-light);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-purple), var(--color-purple-light));
  border-radius: 8px;
  font-size: 24px;
  line-height: 1;
}

.nav {
  display: none;
}

.primary-button,
.small-button,
.mobile-sticky a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--cream);
  background:
    repeating-linear-gradient(102deg, rgba(247, 239, 232, 0.025) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(78deg, rgba(0, 0, 0, 0.1) 0 1px, transparent 1px 5px),
    radial-gradient(ellipse at 34% 0%, rgba(215, 42, 63, 0.2), transparent 58%),
    linear-gradient(145deg, #7a1421, var(--red-velvet) 48%, #4b0811);
  border: 1px solid rgba(215, 42, 63, 0.32);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(247, 239, 232, 0.1),
    inset 0 -10px 22px rgba(0, 0, 0, 0.16),
    0 14px 30px rgba(42, 3, 9, 0.38);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-messengers {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-messengers a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 11px;
  color: var(--color-white-soft);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible,
.small-button:hover,
.small-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(215, 42, 63, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(247, 239, 232, 0.13),
    inset 0 -10px 22px rgba(0, 0, 0, 0.13),
    0 18px 38px rgba(42, 3, 9, 0.5);
}

.primary-button:active,
.small-button:active,
.mobile-sticky a:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 2px 9px rgba(0, 0, 0, 0.32),
    0 8px 18px rgba(42, 3, 9, 0.34);
}

.header-messengers a:hover,
.header-messengers a:focus-visible {
  color: var(--color-white);
  background: var(--color-purple-soft);
  border-color: rgba(215, 42, 63, 0.34);
}

.section {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 56px 16px;
}

.hero {
  display: grid;
  gap: 30px;
  min-height: calc(100svh - 56px);
  align-items: center;
  padding-top: 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-purple-light);
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(38px, 11vw, 76px);
  line-height: 0.98;
  font-weight: 850;
}

h1 span,
h2 span {
  color: var(--color-purple-light);
}

h1 .hero-result {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.72em;
  line-height: 1.08;
}

.hero .eyebrow {
  color: #b9918d;
}

.hero h1 .hero-result {
  color: #d8c2bb;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 7.5vw, 52px);
  line-height: 1.05;
  font-weight: 850;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.2;
}

.lead,
.section-head p,
.bingo-copy p,
.mobile-copy p,
.request-copy p,
.price-section .section-head p,
.why-section .section-head p {
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.62;
}

.lead {
  max-width: 690px;
  margin-bottom: 18px;
}

.price-note {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 9px 12px;
  color: var(--color-white-soft);
  background: var(--color-purple-soft);
  border: 1px solid rgba(215, 42, 63, 0.28);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.secondary-link {
  color: var(--color-white-soft);
  border-bottom: 1px solid rgba(215, 42, 63, 0.46);
  font-size: 15px;
  font-weight: 750;
}

.button-note {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--color-text-muted);
  font-size: 14px;
}

.hero-visual,
.compare-phones {
  display: grid;
  gap: 18px;
  align-items: center;
  justify-items: center;
}

.hero-visual .old-phone {
  width: min(78%, 228px);
  opacity: 0.82;
  transform: scale(0.94);
}

.hero-visual .reference-phone {
  width: min(100%, 336px);
  z-index: 1;
}

.hero-visual .reference-phone-label {
  padding: 8px 12px;
  box-shadow: 0 10px 28px rgba(110, 15, 26, 0.44);
  font-size: 13px;
}

.phone {
  position: relative;
  width: min(100%, 292px);
  padding: 12px;
  background: linear-gradient(180deg, #1a1f35, #090b16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.phone::before {
  content: "";
  display: block;
  width: 74px;
  height: 5px;
  margin: 0 auto 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.phone-label {
  position: absolute;
  top: 26px;
  left: 24px;
  z-index: 2;
  padding: 7px 10px;
  color: #fff;
  background: rgba(5, 3, 4, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.reference-phone-label {
  background: rgba(181, 22, 42, 0.82);
}

.phone-screen {
  min-height: 420px;
  overflow: hidden;
  background: #fff;
  border-radius: 22px;
}

.legacy-site {
  padding: 50px 14px 16px;
  color: #2a2a2f;
  background: #eee9dc;
}

.legacy-top {
  margin-bottom: 18px;
  padding: 8px;
  color: #31384c;
  background: #d8dde0;
  border: 1px solid #c1c3c5;
  font-size: 13px;
  font-weight: 700;
}

.legacy-site h2 {
  margin-bottom: 12px;
  color: #252f48;
  font-size: 20px;
  line-height: 1.1;
}

.legacy-site p {
  margin-bottom: 12px;
  color: #5a5a5a;
  font-size: 12px;
  line-height: 1.35;
}

.legacy-site button {
  width: 132px;
  min-height: 32px;
  margin-bottom: 16px;
  color: #fff;
  background: #777;
  border: 0;
  border-radius: 2px;
  font-size: 11px;
}

.legacy-box {
  padding: 12px;
  background: #fff;
  border: 1px solid #d0d0d0;
  font-size: 12px;
}

.legacy-box ul {
  margin: 8px 0 0;
  padding-left: 18px;
  line-height: 1.7;
}

.reference-phone {
  position: relative;
  width: min(100%, 320px);
  filter: drop-shadow(0 24px 55px rgba(110, 15, 26, 0.38)) drop-shadow(0 18px 50px rgba(0, 0, 0, 0.42));
}

.reference-phone-crop {
  position: relative;
  overflow: visible;
}

.reference-phone-crop img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.new-phone {
  border-color: rgba(215, 42, 63, 0.48);
  box-shadow: 0 24px 80px rgba(110, 15, 26, 0.38);
}

.transition-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--color-purple-light);
  background: var(--color-purple-soft);
  border: 1px solid rgba(215, 42, 63, 0.28);
  border-radius: 50%;
  font-size: 28px;
  animation: softPulse 2.8s ease-in-out infinite;
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.recognition-grid,
.changes-grid,
.why-grid,
.review-grid {
  display: grid;
  gap: 14px;
}

.soft-card {
  padding: 20px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.soft-card:hover {
  transform: translateY(-2px);
  background: var(--color-card-hover);
  border-color: rgba(215, 42, 63, 0.28);
}

.soft-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.recognition-grid .soft-card {
  position: relative;
  overflow: hidden;
  padding-top: 52px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.088), rgba(255, 255, 255, 0.05)),
    rgba(16, 8, 10, 0.72);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.recognition-grid .soft-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(181, 22, 42, 0.14), rgba(255, 255, 255, 0.052)),
    rgba(16, 8, 10, 0.74);
}

.recognition-grid .soft-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(110, 15, 26, 0.17), rgba(255, 255, 255, 0.052)),
    rgba(16, 8, 10, 0.74);
}

.recognition-grid .soft-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(181, 22, 42, 0.07)),
    rgba(16, 8, 10, 0.74);
}

.recognition-grid .soft-card:nth-child(5) {
  background:
    linear-gradient(135deg, rgba(181, 22, 42, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(16, 8, 10, 0.76);
  border-color: rgba(215, 42, 63, 0.28);
}

.recognition-grid .soft-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-purple), rgba(215, 42, 63, 0.08));
}

.recognition-grid .soft-card::after {
  position: absolute;
  top: 18px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--color-purple-light);
  background: rgba(181, 22, 42, 0.12);
  border: 1px solid rgba(215, 42, 63, 0.28);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.recognition-grid .soft-card:nth-child(1)::after {
  content: "1";
}

.recognition-grid .soft-card:nth-child(2)::after {
  content: "2";
}

.recognition-grid .soft-card:nth-child(3)::after {
  content: "3";
}

.recognition-grid .soft-card:nth-child(4)::after {
  content: "4";
}

.recognition-grid .soft-card:nth-child(5)::after {
  content: "5";
}

.recognition-grid .soft-card h3 {
  position: relative;
  margin-top: 2px;
}

.recognition-grid .soft-card p {
  position: relative;
}

.bingo {
  display: grid;
  gap: 22px;
}

.checklist {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(215, 42, 63, 0.22);
  border-radius: 8px;
}

.checklist label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 42px;
  padding: 10px;
  color: var(--color-white-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
}

.checklist input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-purple);
}

.checklist p {
  margin: 10px 0 0;
  color: var(--color-text-muted);
}

.small-button {
  justify-self: start;
  min-height: 40px;
  margin-top: 4px;
  padding: 0 14px;
  font-size: 14px;
}

.review-cta {
  margin-top: 18px;
}

.soft-link {
  display: block;
  width: fit-content;
  margin: 24px auto 0;
  color: var(--color-purple-light);
  border-bottom: 1px solid rgba(215, 42, 63, 0.45);
  font-weight: 750;
}

.process-grid {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 18px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.process-grid li > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--color-purple-soft);
  border: 1px solid rgba(215, 42, 63, 0.35);
  border-radius: 50%;
  font-weight: 850;
}

.process-grid p {
  margin: 0;
  color: var(--color-text-muted);
}

.compare-phone {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin: 0;
}

.compare-phone figcaption {
  max-width: 320px;
  color: var(--color-text-muted);
  text-align: center;
  font-size: 14px;
}

.changes-grid .soft-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--color-white);
  background:
    linear-gradient(135deg, var(--color-purple), var(--color-purple-light));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(110, 15, 26, 0.34);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.mobile-section {
  display: grid;
  gap: 24px;
}

.mobile-demo {
  display: grid;
  gap: 20px;
  justify-items: center;
}

.pizza-phone {
  width: min(100%, 300px);
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.32));
}

.corporate-phone {
  width: min(100%, 300px);
  filter: drop-shadow(0 22px 48px rgba(110, 15, 26, 0.3)) drop-shadow(0 18px 44px rgba(0, 0, 0, 0.42));
}

.mobile-points {
  display: grid;
  gap: 10px;
  width: min(100%, 360px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-points li {
  padding: 12px 14px;
  color: var(--color-white-soft);
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.works-section {
  max-width: 100%;
  padding: 60px 0;
  overflow: hidden;
}

.examples-head {
  width: min(100%, 1180px);
  margin: 0 auto 24px;
  padding: 0 16px;
}

.examples-head p:not(.eyebrow) {
  max-width: 700px;
  color: var(--color-text-muted);
  font-size: 17px;
}

.examples-gallery-wrap {
  position: relative;
}

.examples-gallery {
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 8px max(16px, calc((100vw - 1180px) / 2)) 18px;
  touch-action: pan-y;
  user-select: none;
}

.examples-gallery-track {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.examples-gallery.is-dragging {
  cursor: grabbing;
}

.reference-card {
  flex: 0 0 min(76vw, 440px);
  margin: 0;
  overflow: hidden;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  cursor: grab;
}

.reference-card:active,
.examples-gallery.is-dragging .reference-card {
  cursor: grabbing;
}

.reference-card img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: contain;
  object-position: center;
  background: var(--black-soft);
  -webkit-user-drag: none;
  user-select: none;
}

.reference-card figcaption {
  padding: 12px 14px;
  color: var(--color-white-soft);
  font-size: 14px;
  font-weight: 750;
}

.examples-arrow {
  position: absolute;
  top: calc(50% - 24px);
  z-index: 3;
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0 0 4px;
  color: #fff;
  background: rgba(181, 22, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: transform 170ms ease, background 170ms ease;
}

.lightbox-open {
  overflow: hidden;
}

.work-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(5, 3, 4, 0.9);
  backdrop-filter: blur(14px);
}

.work-lightbox.is-open {
  display: grid;
}

.work-lightbox-content {
  display: grid;
  gap: 10px;
  width: min(1100px, 94vw);
  max-height: 90vh;
  justify-items: center;
}

.work-lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - 54px);
  object-fit: contain;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
}

.work-lightbox-content p {
  margin: 0;
  color: var(--cream);
  font-size: 14px;
}

.work-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0 0 4px;
  color: var(--cream);
  background: rgba(110, 15, 26, 0.82);
  border: 1px solid rgba(247, 239, 232, 0.2);
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.examples-arrow-prev {
  left: 10px;
}

.examples-arrow-next {
  right: 10px;
}

.examples-arrow.is-pressed,
.examples-arrow:active {
  transform: scale(0.94);
}

.works-transition {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(100% - 32px, 880px);
  margin: 20px auto 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.works-transition p {
  max-width: 560px;
  margin: 0;
  color: var(--color-text-muted);
}

.price-layout {
  display: grid;
  gap: 18px;
}

.price-card {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(181, 22, 42, 0.15), rgba(255, 255, 255, 0.05)),
    var(--color-card);
  border: 1px solid rgba(215, 42, 63, 0.34);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-card-label {
  margin-bottom: 8px;
  color: var(--color-purple-light);
  font-weight: 850;
}

.price-card p,
.price-notes p {
  color: var(--color-text-muted);
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  color: var(--color-white-soft);
  list-style: none;
}

.price-card li::before {
  content: "— ";
  color: var(--color-purple-light);
}

.price-notes {
  display: grid;
  gap: 14px;
}

.price-notes p {
  margin: 0;
  padding: 18px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.request-section {
  display: grid;
  gap: 24px;
}

.request-hint {
  padding: 12px 14px;
  background: var(--color-purple-soft);
  border: 1px solid rgba(215, 42, 63, 0.28);
  border-radius: 8px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form span {
  color: var(--color-white-soft);
  font-size: 14px;
  font-weight: 750;
}

.lead-form label small {
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 500;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(184, 179, 199, 0.68);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(215, 42, 63, 0.7);
  box-shadow: 0 0 0 3px rgba(181, 22, 42, 0.16);
}

.lead-form .checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 34px;
  margin-top: -6px;
  padding: 7px 10px;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
}

.lead-form .checkbox-row input {
  width: 17px;
  min-height: 17px;
  height: 17px;
  padding: 0;
  accent-color: var(--color-purple);
}

.lead-form .checkbox-row span {
  color: var(--color-text-muted);
  font-size: 13px;
}

.lead-form input:disabled {
  color: rgba(184, 179, 199, 0.7);
  background: rgba(255, 255, 255, 0.035);
  cursor: not-allowed;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-button {
  width: 100%;
}

.form-message {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
}

.form-message.error {
  color: #ffb9c5;
}

.form-message.success {
  color: #a7f3d0;
}

.form-message.info {
  color: var(--color-text-muted);
}

.form-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 13px;
}

.form-notes span {
  color: var(--color-text-muted);
  font-weight: 500;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 16px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.faq-list summary {
  color: var(--color-white-soft);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--color-text-muted);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 16px 86px;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}

.mobile-sticky {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: block;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  background: rgba(5, 3, 4, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.mobile-sticky a {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  font-size: 14px;
  white-space: nowrap;
}

.mobile-sticky > span {
  flex: 1;
  padding-left: 5px;
  color: var(--color-text-muted);
  font-size: 11px;
  line-height: 1.2;
}

.reveal {
  animation: revealUp 620ms ease both;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 767px) {
  body {
    background:
      radial-gradient(ellipse 70% 28% at 18% 0%, rgba(110, 15, 26, 0.12), transparent 72%),
      radial-gradient(ellipse 52% 34% at 100% 42%, rgba(110, 15, 26, 0.065), transparent 76%),
      linear-gradient(155deg, #050304, #0b0507 46%, #070405 74%, #050304);
  }

  body::before {
    opacity: 0.72;
    background-image:
      repeating-linear-gradient(102deg, rgba(247, 239, 232, 0.014) 0 1px, transparent 1px 3px),
      repeating-linear-gradient(78deg, rgba(0, 0, 0, 0.15) 0 1px, transparent 1px 5px),
      radial-gradient(ellipse at 50% 0%, rgba(110, 15, 26, 0.035), transparent 58%);
  }

  body::after {
    opacity: 0.48;
    background:
      linear-gradient(96deg, transparent 0 16%, rgba(247, 239, 232, 0.012) 28%, transparent 41% 62%, rgba(110, 15, 26, 0.045) 74%, transparent 90%),
      radial-gradient(ellipse 28% 88% at 22% 46%, rgba(110, 15, 26, 0.045), transparent 74%),
      radial-gradient(ellipse 25% 90% at 78% 54%, rgba(0, 0, 0, 0.2), transparent 76%);
    mix-blend-mode: normal;
  }

  .hero .eyebrow {
    color: #b9918d;
  }

  .hero h1 .hero-result {
    color: #d8c2bb;
  }

  main {
    display: flex;
    flex-direction: column;
  }

  .hero {
    order: 1;
  }

  #quick-review {
    order: 2;
  }

  #before-after {
    order: 3;
  }

  .bingo {
    order: 4;
  }

  #what-changes {
    order: 5;
  }

  #mobile {
    order: 6;
  }

  #works {
    order: 7;
  }

  #price {
    order: 8;
  }

  #process {
    order: 9;
  }

  .why-section {
    order: 10;
  }

  #request {
    order: 11;
  }

  #faq {
    order: 12;
  }

  #recognition {
    order: 13;
  }

  .hero {
    gap: 24px;
    padding-bottom: 42px;
  }

  .hero .lead {
    font-size: 16px;
    line-height: 1.48;
  }

  .examples-gallery.is-mobile-collapsed .reference-card:nth-child(n + 7) {
    display: none;
  }

  .examples-gallery {
    padding: 8px 16px 18px;
    overflow: visible;
    touch-action: auto;
    user-select: auto;
  }

  .examples-gallery.is-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .examples-gallery.is-mobile-grid .reference-card {
    width: 100%;
  }

  .examples-gallery.is-mobile-grid .reference-card img {
    height: 42vw;
  }

  .examples-more {
    display: flex;
    margin: 8px auto 0;
  }

  .reference-card img {
    height: min(76vw, 360px);
    object-fit: contain;
  }

  .reference-card figcaption {
    display: flex;
    align-items: center;
    min-height: 52px;
  }

  .price-title span {
    display: block;
  }
}

@media (min-width: 430px) {
  .hero-visual {
    grid-template-columns: minmax(0, 0.72fr) auto minmax(0, 1.28fr);
  }

  .compare-phones {
    grid-template-columns: 1fr auto 1fr;
  }

  .compare-phones {
    grid-template-columns: 1fr 1fr;
  }

  .compare-phones .transition-arrow {
    display: none;
  }
}

@media (min-width: 768px) {
  .site-header {
    padding: 14px 22px;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 700;
  }

  .nav a:hover,
  .footer a:hover {
    color: var(--color-white);
  }

  .section {
    padding: 74px 24px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 34px;
  }

  .hero-visual {
    grid-template-columns: minmax(170px, 0.9fr) 44px minmax(190px, 1fr);
  }

  .hero-visual .phone {
    width: min(100%, 220px);
  }

  .hero-visual .reference-phone {
    width: min(100%, 338px);
  }

  .recognition-grid,
  .changes-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .soft-card-wide {
    grid-column: span 2;
  }

  .bingo,
  .mobile-section,
  .price-layout,
  .request-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    align-items: start;
  }

  .mobile-demo {
    grid-template-columns: 290px 1fr;
    align-items: center;
  }

  .pizza-phone {
    width: min(100%, 290px);
  }

  .corporate-phone {
    width: min(100%, 292px);
  }

  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reference-card {
    flex-basis: 430px;
  }

  .reference-card img {
    height: 420px;
  }

  .mobile-sticky {
    display: none;
  }

  .footer {
    padding-bottom: 34px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 88px 24px;
  }

  .hero-visual .phone {
    width: 224px;
  }

  .hero-visual .reference-phone {
    width: 348px;
  }

  .recognition-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .soft-card-wide {
    grid-column: span 2;
  }

  .changes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .compare-phones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
    margin: 0 auto;
  }

  .price-card {
    padding: 30px;
  }
}

@media (min-width: 1440px) {
  .hero {
    width: min(100%, 1280px);
  }
}

@media (max-width: 429px) {
  h1 {
    font-size: clamp(35px, 10.2vw, 42px);
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .secondary-link {
    align-self: flex-start;
  }

  .transition-arrow {
    transform: rotate(90deg);
  }

  .phone {
    width: min(100%, 278px);
  }

  .hero-visual .old-phone {
    width: min(72vw, 218px);
  }

  .phone-screen {
    min-height: 398px;
    height: 398px;
  }

  .reference-phone {
    width: min(100%, 292px);
  }

  .hero-visual .reference-phone {
    width: min(94vw, 336px);
  }

  .pizza-phone {
    width: min(100%, 284px);
  }

  .corporate-phone {
    width: min(100%, 286px);
  }

  .examples-arrow {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .reference-card {
    flex-basis: 82vw;
  }

  .reference-card img {
    height: min(82vw, 340px);
  }
}
