:root {
  color-scheme: dark;
  --bg: #07080b;
  --surface: #0d0e13;
  --panel: #121319;
  --panel-2: #191a22;
  --text: #f6f6f7;
  --muted: #c4c5cc;
  --soft: #8c8e98;
  --line: rgba(255, 255, 255, 0.14);
  --red: #e11620;
  --red-dark: #9f0f17;
  --red-soft: rgba(225, 22, 32, 0.14);
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--red);
  color: var(--white);
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(225, 22, 32, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(7, 8, 11, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header[data-scrolled="true"] {
  background: rgba(8, 8, 11, 0.92);
  border-color: var(--line);
}

.brand img {
  width: clamp(150px, 17vw, 220px);
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: var(--muted);
  font-size: 0.9rem;
}

.desktop-nav a {
  transition: color 160ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.nav-cta,
.primary-button,
.secondary-button {
  min-height: 44px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.lang-toggle {
  width: 48px;
  background: transparent;
  color: var(--white);
}

.nav-cta,
.primary-button {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding: 0 18px;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0 18px;
}

.lang-toggle:hover,
.nav-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
}

.section-band {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 86px;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(104px, 13vh, 138px) clamp(18px, 5vw, 76px) 68px;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(225, 22, 32, 0.12), transparent 42%),
    radial-gradient(circle at 80% 26%, rgba(255, 255, 255, 0.08), transparent 32%),
    var(--bg);
}

.hero-bg span {
  position: absolute;
  width: 1px;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(225, 22, 32, 0.65), transparent);
  animation: scan 7s linear infinite;
}

.hero-bg span:nth-child(1) { left: 12%; animation-delay: 0s; }
.hero-bg span:nth-child(2) { left: 28%; animation-delay: 1.4s; }
.hero-bg span:nth-child(3) { left: 45%; animation-delay: 3s; }
.hero-bg span:nth-child(4) { left: 62%; animation-delay: 2.1s; }
.hero-bg span:nth-child(5) { left: 78%; animation-delay: 4.4s; }
.hero-bg span:nth-child(6) { left: 91%; animation-delay: 5.1s; }

@keyframes scan {
  from { transform: translateY(-180px); opacity: 0; }
  18% { opacity: 1; }
  to { transform: translateY(calc(100vh + 180px)); opacity: 0; }
}

.hero-photo-bg {
  display: none;
}

.hero-content,
.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6.1vw, 5.55rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.8vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.15;
}

.hero-copy,
.problem p,
.contact p,
.outcomes p {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.section-heading p {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
}

.hero-proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-hero-photo,
.mobile-sticky-cta {
  display: none;
}

.mobile-story {
  display: none;
}

.mobile-story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 0.9fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.mobile-story-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--panel);
}

.mobile-story-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.mobile-story-photo picture {
  display: block;
  width: 100%;
}

.mobile-story-copy h2 {
  max-width: 720px;
}

.story-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.story-chips span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  padding: 9px 12px;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% 0 10% 12%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.03);
  transform: skewY(-4deg);
}

.hero-visual img {
  position: relative;
  width: min(92%, 560px);
  filter: drop-shadow(0 24px 80px rgba(0, 0, 0, 0.5));
}

.signal-panel {
  position: absolute;
  right: 2%;
  bottom: 4%;
  width: min(82%, 360px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(10, 10, 14, 0.82);
  backdrop-filter: blur(12px);
}

.signal-panel strong,
.signal-panel span {
  display: block;
}

.signal-panel strong {
  color: var(--white);
  font-size: 1.2rem;
}

.signal-panel span {
  color: var(--muted);
}

.problem,
.offer,
.examples,
.mobile-story,
.packages,
.calculator,
.services,
.experience,
.method,
.outcomes,
.market,
.toolbox,
.faq,
.contact {
  padding: clamp(60px, 8vw, 104px) clamp(18px, 5vw, 76px);
}

.problem,
.experience,
.method,
.market,
.toolbox {
  background: var(--surface);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  gap: clamp(26px, 5vw, 80px);
  align-items: start;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 30px;
}

.offer {
  background:
    linear-gradient(90deg, rgba(225, 22, 32, 0.13), transparent 48%),
    #08080b;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.offer p,
.experience .section-heading p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.pricing-strip {
  display: grid;
  gap: 12px;
}

.pricing-strip div,
.proof-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 20px;
}

.pricing-strip span,
.proof-grid span {
  display: block;
  color: var(--muted);
}

.pricing-strip strong,
.proof-grid strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  line-height: 1.05;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.packages {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 46%),
    #08080b;
}

.calculator {
  background:
    linear-gradient(90deg, transparent, rgba(225, 22, 32, 0.09)),
    var(--surface);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.calculator-layout p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.calculator-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 19, 25, 0.96);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.step-progress {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.step-progress span {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.step-progress span.active {
  background: var(--red);
}

.scope-form {
  display: grid;
  gap: 18px;
}

.scope-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.scope-step.active {
  display: grid;
  gap: 12px;
}

.scope-step legend,
.result-step h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.05;
}

.scope-step label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
  color: var(--muted);
  cursor: pointer;
}

.scope-step input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.scope-step label:has(input:checked) {
  border-color: rgba(225, 22, 32, 0.72);
  background: var(--red-soft);
  color: var(--white);
}

.result-step {
  display: none;
}

.result-step.active {
  display: grid;
  gap: 14px;
}

.result-kicker {
  margin-bottom: 0;
  color: var(--red) !important;
  font-size: 0.78rem !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.result-message-label {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  cursor: default !important;
}

.result-message-label textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #09090d;
  color: var(--white);
  padding: 12px;
}

.calculator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calculator-actions .primary-button,
.calculator-actions .secondary-button,
.copy-result {
  min-width: 150px;
}

.hidden {
  display: none !important;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.package-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)), var(--panel);
  padding: 24px;
}

.package-card.featured {
  border-color: rgba(225, 22, 32, 0.75);
  background:
    linear-gradient(180deg, rgba(225, 22, 32, 0.2), rgba(17, 17, 22, 0.96)),
    var(--panel);
}

.package-label {
  align-self: flex-start;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-card p {
  color: var(--muted);
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.example-grid article,
.timeline article,
.outcome-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-card,
.example-grid article {
  min-height: 250px;
  padding: 24px;
}

.service-card p,
.example-grid p,
.timeline p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--red);
}

.icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-tags span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 750;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline article {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.timeline span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 900;
}

.outcomes {
  background:
    linear-gradient(180deg, rgba(225, 22, 32, 0.12), transparent 38%),
    #08080b;
}

.outcomes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.outcome-list {
  display: grid;
  gap: 12px;
}

.outcome-list div {
  padding: 20px;
}

.outcome-list strong,
.outcome-list span {
  display: block;
}

.outcome-list strong {
  margin-bottom: 6px;
  color: var(--white);
}

.outcome-list span {
  color: var(--muted);
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.market p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.market-tags,
.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.market-tags {
  margin-top: 20px;
}

.market-tags span,
.tool-tags span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-weight: 750;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-size: 1.2rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact {
  background:
    linear-gradient(90deg, rgba(225, 22, 32, 0.18), transparent 48%),
    #08080b;
  color: var(--white);
}

.contact .eyebrow {
  color: var(--red);
}

.contact p {
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 80px);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 8px;
  background: rgba(18, 19, 25, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 750;
}

.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: #111116;
  color: var(--white);
  padding: 12px 13px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #737681;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 22, 32, 0.2);
}

.contact-form .primary-button {
  width: 100%;
  margin-top: 4px;
}

.contact-form .primary-button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  display: none;
  max-width: none !important;
  margin: -2px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white) !important;
  font-size: 0.9rem;
  line-height: 1.35;
}

.form-status[data-state] {
  display: block;
}

.form-status[data-state="success"] {
  border-color: rgba(37, 211, 102, 0.42);
  background: rgba(37, 211, 102, 0.12);
}

.form-status[data-state="error"] {
  border-color: rgba(225, 22, 32, 0.58);
  background: rgba(225, 22, 32, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 0.86rem;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(4, 44px);
  justify-content: center;
  gap: 8px;
}

.contact-links a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 0;
}

.contact-links .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-links .social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-links .social-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-links .email-link {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.contact-links .whatsapp-link {
  border-color: rgba(37, 211, 102, 0.55);
  background: #25d366;
  color: #fff;
}

.contact-links .facebook-link {
  border-color: rgba(24, 119, 242, 0.55);
  background: #1877f2;
  color: #fff;
}

.contact-links .linkedin-link {
  border-color: rgba(10, 102, 194, 0.55);
  background: #0a66c2;
  color: #fff;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 76px);
  background: #050507;
  color: var(--muted);
}

.site-footer img {
  width: 190px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .split,
  .offer-layout,
  .calculator-layout,
  .outcomes-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 320px;
  }

  .service-grid,
  .example-grid,
  .package-grid,
  .proof-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  html {
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
  }

  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  main > .section-band {
    min-height: 100svh;
    display: flex;
    align-items: center;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  main > .calculator {
    scroll-margin-top: 0;
    scroll-snap-stop: normal;
  }

  .section-inner {
    width: 100%;
  }

  .site-header {
    padding: 12px 16px;
    min-height: 72px;
  }

  .brand img {
    width: 148px;
  }

  .lang-toggle {
    width: 44px;
    min-height: 44px;
  }

  .problem,
  .offer,
  .examples,
  .mobile-story,
  .packages,
  .calculator,
  .services,
  .experience,
  .method,
  .outcomes,
  .market,
  .toolbox,
  .faq,
  .contact {
    padding: 20px 16px;
  }

  .hero {
    display: flex;
    align-items: flex-end;
    padding: 0;
    min-height: 100svh;
  }

  .hero-bg {
    display: none;
  }

  .hero-photo-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    display: block;
  }

  .hero-photo-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translateY(var(--hero-shift, 0));
    transition: transform 120ms linear;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(180deg, rgba(7, 8, 11, 0.26) 0%, rgba(7, 8, 11, 0.18) 36%, rgba(7, 8, 11, 0.6) 76%, #07080b 100%),
      linear-gradient(90deg, rgba(7, 8, 11, 0.82), rgba(7, 8, 11, 0.18) 58%, rgba(7, 8, 11, 0.05));
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100svh;
    padding: 104px 16px 26px;
  }

  h1 {
    max-width: 8.5ch;
    margin-bottom: 12px;
    font-size: clamp(2.45rem, 11.5vw, 3.45rem);
    line-height: 0.95;
    text-shadow: 0 8px 34px rgba(0, 0, 0, 0.55);
  }

  h2 {
    font-size: clamp(1.65rem, 7.6vw, 2.35rem);
    line-height: 1.06;
  }

  h3 {
    font-size: 1.08rem;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero-copy {
    max-width: 25ch;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.45;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  }

  .hero-actions {
    margin: auto 0 14px;
    gap: 10px;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  }

  .hero-proof {
    display: none;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
  }

  .mobile-story {
    display: block;
    padding: 0;
    background: #050507;
  }

  .mobile-story-layout {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 0;
  }

  .mobile-story-photo {
    position: absolute;
    inset: 0;
    border: 0;
    border-radius: 0;
  }

  .mobile-story-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(5, 5, 7, 0.04), rgba(5, 5, 7, 0.28) 40%, rgba(5, 5, 7, 0.9) 78%, #050507 100%),
      linear-gradient(90deg, rgba(5, 5, 7, 0.7), transparent 70%);
  }

  .mobile-story-photo img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    transform: translateY(var(--story-shift, 0));
    transition: transform 120ms linear;
  }

  .mobile-story-photo picture {
    height: 100%;
  }

  .mobile-story-copy {
    position: relative;
    z-index: 1;
    padding: 88px 16px 98px;
  }

  .mobile-story-copy h2 {
    max-width: 11ch;
    margin-bottom: 18px;
    font-size: clamp(2rem, 9.4vw, 2.8rem);
    text-shadow: 0 8px 34px rgba(0, 0, 0, 0.6);
  }

  .story-chips {
    gap: 8px;
  }

  .story-chips span {
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .split,
  .offer-layout,
  .calculator-layout,
  .contact-layout {
    gap: 18px;
  }

  .offer,
  .packages,
  .calculator,
  .experience,
  .method,
  .contact {
    align-items: center;
  }

  .offer {
    background:
      radial-gradient(circle at 80% 12%, rgba(225, 22, 32, 0.22), transparent 34%),
      linear-gradient(180deg, #08080b, #13060a);
  }

  .offer-layout {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 72px;
    padding-bottom: 20px;
  }

  .offer-layout > div:first-child p:not(.eyebrow) {
    max-width: 29ch;
  }

  .pricing-strip {
    width: 100%;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .hero-copy,
  .problem p,
  .offer p,
  .market p,
  .calculator-layout p,
  .contact p,
  .outcomes p,
  .section-heading p,
  .experience .section-heading p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .pricing-strip {
    gap: 8px;
  }

  .pricing-strip div,
  .proof-grid article,
  .service-card,
  .example-grid article,
  .timeline article,
  .outcome-list div,
  .package-card,
  details {
    border-radius: 10px;
  }

  .pricing-strip div,
  .proof-grid article {
    padding: 13px 16px;
  }

  .pricing-strip strong,
  .proof-grid strong {
    font-size: clamp(1.28rem, 6.4vw, 1.72rem);
  }

  .packages {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 36%),
      #08080b;
  }

  .packages .section-heading p {
    display: none;
  }

  .packages .section-inner {
    padding-top: 76px;
    padding-bottom: 18px;
  }

  .packages .section-heading {
    margin-bottom: 14px;
  }

  .package-grid {
    display: flex;
    gap: 12px;
    margin: 0 -16px;
    overflow-x: auto;
    padding: 0 16px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .package-grid::-webkit-scrollbar {
    display: none;
  }

  .package-card {
    flex: 0 0 84%;
    min-height: 380px;
    padding: 17px;
    scroll-snap-align: center;
  }

  .package-card ul {
    gap: 8px;
  }

  .package-card li {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .package-card p {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .package-label {
    margin-bottom: 14px;
    font-size: 0.68rem;
  }

  .calculator {
    background:
      radial-gradient(circle at 100% 0%, rgba(225, 22, 32, 0.2), transparent 36%),
      var(--surface);
  }

  .calculator-layout {
    min-height: 100svh;
    align-content: center;
    padding-top: 74px;
    padding-bottom: 16px;
  }

  .calculator-layout > div:first-child p:not(.eyebrow) {
    display: none;
  }

  .calculator-panel {
    max-height: calc(100svh - 222px);
    overflow: auto;
    overscroll-behavior: contain;
    padding: 12px;
    scroll-snap-type: none;
  }

  .step-progress {
    gap: 5px;
    margin-bottom: 12px;
  }

  .step-progress span {
    height: 5px;
  }

  .scope-step {
    gap: 8px;
    animation: stepSlide 220ms ease both;
  }

  @keyframes stepSlide {
    from {
      opacity: 0;
      transform: translateX(18px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .scope-step legend,
  .result-step h3 {
    margin-bottom: 8px;
    font-size: clamp(1.22rem, 6.4vw, 1.66rem);
  }

  .scope-step label {
    grid-template-columns: 18px 1fr;
    padding: 10px 11px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .scope-step input {
    width: 16px;
    height: 16px;
  }

  .calculator-actions {
    position: sticky;
    bottom: -12px;
    z-index: 3;
    margin: 4px -12px -12px;
    padding: 10px 12px 12px;
    background: linear-gradient(180deg, rgba(18, 19, 25, 0), rgba(18, 19, 25, 0.98) 26%);
  }

  .calculator-actions .primary-button,
  .calculator-actions .secondary-button,
  .copy-result {
    width: 100%;
  }

  .service-grid,
  .example-grid,
  .proof-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card,
  .example-grid article {
    min-height: auto;
    padding: 20px;
  }

  .experience {
    background:
      linear-gradient(180deg, rgba(225, 22, 32, 0.1), transparent 42%),
      var(--surface);
  }

  .experience .section-inner {
    padding-top: 74px;
    padding-bottom: 20px;
  }

  .experience .section-heading {
    margin-bottom: 14px;
  }

  .experience .section-heading p,
  .case-tags {
    display: none;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-grid article {
    min-height: 118px;
  }

  .method {
    align-items: flex-start;
    background: #08080b;
  }

  .method .section-inner {
    padding-top: 72px;
    padding-bottom: 18px;
  }

  .method .section-heading {
    margin-bottom: 14px;
  }

  .method .section-heading p {
    display: none;
  }

  .timeline {
    gap: 8px;
  }

  .timeline article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    padding: 12px 14px;
  }

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

  .timeline h3,
  .timeline p {
    grid-column: 2;
  }

  .timeline p {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .timeline h3 {
    margin-bottom: 4px;
    font-size: 1rem;
  }

  .contact {
    background:
      linear-gradient(180deg, rgba(225, 22, 32, 0.12), transparent 36%),
      #08080b;
  }

  .contact-layout {
    min-height: 100svh;
    align-content: center;
    padding-top: 72px;
    padding-bottom: 18px;
  }

  .contact-layout h2 {
    margin-bottom: 10px;
  }

  .contact p {
    max-width: 30ch;
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .contact-form {
    gap: 10px;
    padding: 12px;
  }

  .contact-form label {
    gap: 5px;
    font-size: 0.9rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px 11px;
  }

  .contact-form textarea {
    min-height: 86px;
  }

  .form-note {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .form-status {
    margin: -2px 0 0;
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .contact-links {
    grid-template-columns: repeat(4, 42px);
    gap: 8px;
  }

  .contact-links a {
    width: 42px;
    height: 42px;
  }

  .icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
  }

  .hero-visual {
    display: none;
  }

  .signal-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 104px;
  }

  main > .problem,
  main > .examples,
  main > .services,
  main > .outcomes,
  main > .market,
  main > .toolbox,
  main > .faq {
    display: none !important;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 40;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(8, 8, 11, 0.88);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body[data-sticky-cta="true"] .mobile-sticky-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-sticky-cta a {
    min-height: 46px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    font-size: 0.92rem;
    font-weight: 900;
  }

  .mobile-sticky-cta a:first-child {
    background: var(--red);
    color: var(--white);
  }

  .mobile-sticky-cta a:last-child {
    border: 1px solid var(--line);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
  }

  .js-motion main > .section-band {
    opacity: 0.58;
    transform: translateY(20px) scale(0.985);
    transition: opacity 420ms ease, transform 420ms ease;
  }

  .js-motion main > .section-band.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .js-motion .hero-content > *,
  .js-motion .mobile-story-copy > *,
  .js-motion .offer-layout > *,
  .js-motion .section-heading,
  .js-motion .calculator-layout > *,
  .js-motion .contact-layout > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 460ms ease, transform 460ms ease;
  }

  .js-motion .is-visible .hero-content > *,
  .js-motion .is-visible .mobile-story-copy > *,
  .js-motion .is-visible .offer-layout > *,
  .js-motion .is-visible .section-heading,
  .js-motion .is-visible .calculator-layout > *,
  .js-motion .is-visible .contact-layout > * {
    opacity: 1;
    transform: translateY(0);
  }

  .js-motion .is-visible .hero-content > :nth-child(2),
  .js-motion .is-visible .mobile-story-copy > :nth-child(2),
  .js-motion .is-visible .offer-layout > :nth-child(2),
  .js-motion .is-visible .calculator-layout > :nth-child(2),
  .js-motion .is-visible .contact-layout > :nth-child(2) {
    transition-delay: 80ms;
  }

  .js-motion .pricing-strip > *,
  .js-motion .package-card,
  .js-motion .proof-grid > *,
  .js-motion .timeline > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 420ms ease, transform 420ms ease;
  }

  .js-motion .is-visible .pricing-strip > *,
  .js-motion .is-visible .package-card,
  .js-motion .is-visible .proof-grid > *,
  .js-motion .is-visible .timeline > * {
    opacity: 1;
    transform: translateY(0);
  }

  .js-motion .is-visible .pricing-strip > :nth-child(2),
  .js-motion .is-visible .package-card:nth-child(2),
  .js-motion .is-visible .proof-grid > :nth-child(2),
  .js-motion .is-visible .timeline > :nth-child(2) {
    transition-delay: 90ms;
  }

  .js-motion .is-visible .pricing-strip > :nth-child(3),
  .js-motion .is-visible .package-card:nth-child(3),
  .js-motion .is-visible .proof-grid > :nth-child(3),
  .js-motion .is-visible .timeline > :nth-child(3) {
    transition-delay: 160ms;
  }

  .js-motion .is-visible .proof-grid > :nth-child(4),
  .js-motion .is-visible .timeline > :nth-child(4) {
    transition-delay: 230ms;
  }
}

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