:root {
  color-scheme: dark;
  --ink: #030712;
  --ink-deep: #01040a;
  --surface: rgba(9, 22, 43, 0.72);
  --line: rgba(126, 166, 221, 0.16);
  --line-strong: rgba(61, 131, 255, 0.34);
  --text: #f5f7fb;
  --muted: #a8b4c7;
  --blue: #1769ff;
  --cyan: #65b9ff;
  --champagne: #d9c3a1;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 18%, rgba(23, 105, 255, 0.12), transparent 31rem),
    linear-gradient(180deg, var(--ink-deep), var(--ink));
  color: var(--text);
  font-family: "Segoe UI Variable", "Segoe UI", Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(1, 4, 10, 0.78);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img { display: block; width: 192px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; color: #c7d0df; font-size: 0.84rem; }
.nav-links a { transition: color 180ms ease; }
.nav-links a:hover { color: white; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button span[aria-hidden="true"] { transition: transform 180ms ease; }
.button:hover span[aria-hidden="true"] { transform: translateX(4px); }
.button-primary { background: var(--blue); box-shadow: 0 14px 40px rgba(23, 105, 255, 0.23); }
.button-primary:hover { background: #2b78ff; }
.button-secondary { border-color: rgba(119, 169, 255, 0.45); color: #e7edf8; background: rgba(9, 23, 45, 0.36); }

.hero {
  position: relative;
  min-height: calc(100vh - 87px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 76px 0 66px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 38%, black 72%, transparent 100%);
}

.js .hero-copy > * { animation: hero-enter 760ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.js .hero-copy > :nth-child(2) { animation-delay: 90ms; }
.js .hero-copy > :nth-child(3) { animation-delay: 170ms; }
.js .hero-copy > :nth-child(4) { animation-delay: 250ms; }
.js .hero-copy > :nth-child(5) { animation-delay: 330ms; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  align-items: center;
  gap: clamp(54px, 7vw, 100px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--blue); }

h1 {
  max-width: 770px;
  margin: 0;
  font-size: clamp(3.55rem, 6.2vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 400;
}
h1 span { color: #9acbff; }
.hero-lede {
  max-width: 670px;
  margin: 30px 0 0;
  color: #d4dbe7;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.68;
}
.hero-lede strong { color: white; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.proof { display: flex; flex-wrap: wrap; gap: 18px 30px; margin-top: 45px; color: #8f9aae; font-size: 0.78rem; }
.proof span { display: flex; align-items: center; gap: 9px; }
.proof span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 14px var(--blue); }

.nss-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(12, 31, 60, 0.9), rgba(3, 10, 23, 0.82));
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.nss-card::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  top: -70px;
  right: -60px;
  border-radius: 50%;
  background: rgba(23, 105, 255, 0.18);
  filter: blur(70px);
}
.nss-watermark {
  position: absolute;
  right: 22px;
  bottom: 16px;
  width: 170px;
  opacity: 0.055;
  pointer-events: none;
}
.nss-top { position: relative; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.nss-name { margin: 0; font-size: 0.78rem; letter-spacing: 0.19em; color: #c7d5ea; }
.nss-title { margin: 8px 0 0; font-size: 1.22rem; font-weight: 500; letter-spacing: -0.02em; }
.demo-label { padding: 6px 9px; border: 1px solid rgba(104, 162, 255, 0.28); border-radius: 999px; color: #91a8c7; font-size: 0.58rem; letter-spacing: 0.12em; white-space: nowrap; }
.score-zone { position: relative; display: grid; grid-template-columns: 158px 1fr; align-items: center; gap: 30px; margin-top: 35px; }
.score-ring {
  position: relative;
  width: 158px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 75%, var(--cyan) 75% 82%, rgba(126, 166, 221, 0.12) 82% 100%);
  box-shadow: 0 0 42px rgba(23, 105, 255, 0.2);
}
.score-ring::before { content: ""; position: absolute; inset: 16px; border-radius: 50%; background: #071225; border: 1px solid var(--line); }
.score-value { position: relative; text-align: center; }
.score-value strong { display: block; font-size: 3.3rem; line-height: 1; font-weight: 400; }
.score-value small { color: #90a0b7; font-size: 0.68rem; letter-spacing: 0.15em; }
.metrics { display: grid; gap: 17px; }
.metric-head { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 7px; color: #bac6d8; font-size: 0.69rem; letter-spacing: 0.1em; text-transform: uppercase; }
.track { height: 3px; border-radius: 999px; background: rgba(137, 173, 224, 0.12); overflow: hidden; }
.track span { display: block; height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: inherit; }
.track-risk span { width: 38%; }
.track-momentum span { width: 77%; }
.track-liquidity span { width: 71%; }
.js .nss-card .track span { transform: scaleX(0); transform-origin: left; transition: transform 1050ms cubic-bezier(0.22, 1, 0.36, 1); }
.js .nss-card.is-visible .track span { transform: scaleX(1); }
.js .nss-card.is-visible .metric:nth-child(2) .track span { transition-delay: 120ms; }
.js .nss-card.is-visible .metric:nth-child(3) .track span { transition-delay: 240ms; }
.horizon { display: flex; justify-content: space-between; gap: 20px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); color: #8fa1b9; font-size: 0.72rem; }
.horizon strong { color: white; font-weight: 500; }

.section {
  padding: clamp(88px, 10vw, 138px) 0;
  border-top: 1px solid var(--line);
}
.section-kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.048em;
  font-weight: 400;
}
.section-copy {
  margin: 25px 0 0;
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.statement-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: end;
}
.problem-line {
  margin: 0;
  font-size: clamp(2.9rem, 5.2vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 400;
}
.problem-line span { display: block; color: #8ec4ff; }
.problem-copy { margin: 0; color: #c1cad8; font-size: 1.08rem; line-height: 1.75; }
.pain-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 74px;
  border-top: 1px solid var(--line);
}
.pain-item { padding: 27px 28px 0 0; }
.pain-item + .pain-item { padding-left: 28px; border-left: 1px solid var(--line); }
.pain-item strong { display: block; margin-bottom: 8px; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.pain-item span { color: #8794a8; font-size: 0.9rem; line-height: 1.55; }

.answer { background: rgba(7, 18, 37, 0.36); }
.answer-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(50px, 9vw, 130px); align-items: start; }
.answer-steps { display: grid; gap: 0; border-top: 1px solid var(--line); }
.answer-step { display: grid; grid-template-columns: 54px 140px 1fr; gap: 20px; align-items: baseline; padding: 21px 0; border-bottom: 1px solid var(--line); }
.answer-step b { color: var(--blue); font-size: 0.75rem; }
.answer-step strong { font-size: 0.83rem; letter-spacing: 0.08em; text-transform: uppercase; }
.answer-step span { color: #929fb1; line-height: 1.55; }

.nss-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 50%, rgba(23, 105, 255, 0.13), transparent 35rem),
    var(--ink-deep);
}
.nss-layout { display: grid; grid-template-columns: 0.84fr 1.16fr; gap: clamp(60px, 8vw, 110px); align-items: center; }
.nss-detail { position: relative; padding: 40px; border: 1px solid var(--line-strong); border-radius: 26px; background: rgba(6, 17, 36, 0.72); }
.nss-detail::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(126, 166, 221, 0.06); border-radius: 17px; pointer-events: none; }
.method-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 190px; gap: 42px; align-items: center; }
.dimension-list { display: grid; }
.dimension { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); color: #d4ddea; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.dimension::after { content: ""; width: 48px; height: 2px; background: linear-gradient(90deg, var(--blue), transparent); }
.method-score { width: 190px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--blue) 0 82%, rgba(126, 166, 221, 0.12) 82%); box-shadow: 0 0 70px rgba(23, 105, 255, 0.2); }
.method-score-inner { width: 156px; aspect-ratio: 1; display: grid; place-items: center; align-content: center; border-radius: 50%; background: #061126; border: 1px solid var(--line); text-align: center; }
.method-score strong { font-size: 3.6rem; line-height: 1; font-weight: 400; }
.method-score small { margin-top: 7px; color: #92a1b7; font-size: 0.65rem; letter-spacing: 0.15em; }
.nss-note { position: relative; z-index: 1; margin: 30px 0 0; padding-top: 22px; border-top: 1px solid var(--line); color: #8492a8; font-size: 0.79rem; line-height: 1.6; }
.text-action { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; color: #b9d9ff; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.deliverable-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.deliverable-head .section-copy { max-width: 500px; margin: 0; }
.deliverables { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 72px; border-top: 1px solid var(--line); }
.deliverable { padding: 30px 28px 0 0; }
.deliverable + .deliverable { padding-left: 28px; border-left: 1px solid var(--line); }
.deliverable-number { color: var(--blue); font-size: 0.72rem; letter-spacing: 0.12em; }
.deliverable h3 { margin: 24px 0 10px; font-size: 1.08rem; font-weight: 500; }
.deliverable p { margin: 0; color: #8d99ab; font-size: 0.9rem; line-height: 1.58; }

.process { background: rgba(7, 18, 37, 0.35); }
.process-top { display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; }
.process-step { position: relative; padding-right: 42px; }
.process-step:not(:last-child)::after { content: "→"; position: absolute; top: 14px; right: 16px; color: rgba(101, 185, 255, 0.55); }
.step-number { width: 44px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(101, 185, 255, 0.45); border-radius: 50%; color: #cce6ff; font-size: 0.78rem; }
.process-step h3 { margin: 24px 0 9px; font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase; }
.process-step p { margin: 0; color: #8e9caf; font-size: 0.9rem; line-height: 1.58; }

.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.editorial-panel { min-height: 460px; padding: 64px 70px 64px 0; display: flex; flex-direction: column; justify-content: space-between; }
.editorial-panel + .editorial-panel { padding-left: 70px; padding-right: 0; border-left: 1px solid var(--line); }
.editorial-panel h2 { margin: 0; font-size: clamp(2.6rem, 4.6vw, 4.8rem); line-height: 1.02; letter-spacing: -0.05em; font-weight: 400; }
.editorial-panel p { margin: 28px 0 0; color: #98a4b7; line-height: 1.68; }
.founder-signature { display: flex; align-items: center; gap: 22px; margin-top: 42px; }
.founder-mark { flex: 0 0 72px; width: 72px; height: 72px; display: grid; place-items: center; margin: 0; border: 1px solid var(--line); border-radius: 50%; background: rgba(9, 24, 49, 0.5); }
.founder-mark img { display: block; width: 46px; height: auto; opacity: 1; }
.founder-copy { display: block; min-width: 0; }
.founder-signature strong { display: block; font-size: 0.84rem; letter-spacing: 0.1em; text-transform: uppercase; }
.founder-copy > span { display: block; margin-top: 5px; color: #8693a5; font-size: 0.82rem; }

.fit-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(50px, 8vw, 110px); }
.fit-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.fit-list h3 { margin: 0 0 24px; color: #c8d3e2; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; }
.fit-list ul { list-style: none; padding: 0; margin: 0; }
.fit-list li { position: relative; padding: 14px 0 14px 24px; border-bottom: 1px solid var(--line); color: #99a6b9; line-height: 1.5; }
.fit-list li::before { content: ""; position: absolute; left: 0; top: 22px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.fit-list.negative li::before { background: transparent; border: 1px solid #677489; }

.pricing { background: rgba(7, 18, 37, 0.35); }
.pricing-top { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 62px; }
.price-card { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: 20px; background: rgba(5, 14, 29, 0.58); }
.price-card { transition: transform 260ms ease, border-color 260ms ease, background 260ms ease; }
.price-card:hover { transform: translateY(-5px); border-color: rgba(101, 185, 255, 0.34); background: rgba(7, 20, 42, 0.72); }
.price-card.featured { border-color: rgba(23, 105, 255, 0.78); box-shadow: 0 22px 70px rgba(23, 105, 255, 0.15); }
.plan-badge { position: absolute; top: 20px; right: 20px; color: #78baff; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.price-card h3 { margin: 0; font-size: 1.08rem; font-weight: 500; }
.price { margin: 38px 0 10px; font-size: 3.4rem; letter-spacing: -0.045em; }
.price small { font-size: 1rem; color: #a8b4c7; letter-spacing: 0; }
.price-card p { min-height: 48px; margin: 0 0 28px; color: #8794a7; line-height: 1.55; }
.price-card .button { width: 100%; }
.plan-links-status { min-height: 1.5em; margin: 20px auto 0; color: #8fa1b9; font-size: 0.78rem; text-align: center; }

.faq-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(55px, 8vw, 110px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; list-style: none; cursor: pointer; padding: 24px 46px 24px 0; font-size: 1rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 3px; top: 20px; color: var(--cyan); font-size: 1.4rem; font-weight: 300; }
details[open] summary::after { content: "−"; }
details p { margin: -4px 52px 24px 0; color: #919fb2; line-height: 1.65; }

.final-cta { position: relative; overflow: hidden; padding: clamp(100px, 12vw, 170px) 0; border-top: 1px solid var(--line); text-align: center; background: radial-gradient(circle at 50% 100%, rgba(23, 105, 255, 0.2), transparent 36rem); }
.final-cta::before { content: ""; position: absolute; width: 620px; height: 620px; left: 50%; top: 66%; transform: translate(-50%, -50%); border: 1px solid rgba(101, 185, 255, 0.11); border-radius: 50%; box-shadow: 0 0 0 80px rgba(101, 185, 255, 0.025), 0 0 0 160px rgba(101, 185, 255, 0.018); }
.final-cta .shell { position: relative; z-index: 1; }
.final-cta h2 { max-width: 980px; margin: 0 auto; font-size: clamp(3rem, 6.2vw, 6.5rem); line-height: 0.98; letter-spacing: -0.055em; font-weight: 400; }
.final-cta h2 span { color: #95c9ff; }
.final-cta p { margin: 28px 0 34px; color: #aab5c5; font-size: 1.05rem; }

.site-footer { padding: 52px 0 34px; border-top: 1px solid var(--line); background: #01040a; }
.footer-top { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 50px; align-items: start; }
.footer-brand img { width: 174px; }
.footer-brand p { max-width: 390px; margin: 20px 0 0; color: #7f8b9e; line-height: 1.6; }
.footer-column h3 { margin: 0 0 18px; color: #cbd5e3; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-column a { display: block; width: fit-content; margin: 10px 0; color: #8693a5; font-size: 0.88rem; }
.disclaimer { margin: 42px 0 0; padding-top: 26px; border-top: 1px solid var(--line); color: #657185; font-size: 0.75rem; line-height: 1.7; }
.copyright { display: flex; justify-content: space-between; gap: 30px; margin-top: 24px; color: #586476; font-size: 0.7rem; }
.whatsapp { position: fixed; z-index: 20; right: 24px; bottom: 24px; width: 54px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: #1677ff; box-shadow: 0 14px 40px rgba(0, 0, 0, 0.36); font-weight: 800; letter-spacing: -0.05em; transition: opacity 180ms ease, transform 180ms ease; }
.whatsapp.is-hidden { opacity: 0; pointer-events: none; transform: translateY(12px); }

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 100ms; }
.js .reveal[data-delay="2"] { transition-delay: 200ms; }

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes grid-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(18px, -12px, 0); }
}

@media (min-width: 1081px) {
  .hero::after { animation: grid-drift 18s ease-in-out infinite alternate; }
  .score-ring, .method-score { transition: transform 320ms ease, box-shadow 320ms ease; }
  .nss-card:hover .score-ring, .nss-detail:hover .method-score { transform: scale(1.025); box-shadow: 0 0 78px rgba(23, 105, 255, 0.28); }
}

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .nss-card { width: min(100%, 620px); }
  .statement-grid, .answer-grid, .nss-layout, .fit-grid, .faq-layout { grid-template-columns: 1fr; }
  .pain-row, .deliverables, .process-steps { grid-template-columns: repeat(2, 1fr); row-gap: 42px; }
  .deliverable-head, .process-top, .pricing-top { display: block; }
  .deliverable-head .section-copy, .process-top .section-copy, .pricing-top .section-copy { margin-top: 24px; }
  .editorial-panel { padding-right: 44px; }
  .editorial-panel + .editorial-panel { padding-left: 44px; }
}

@media (max-width: 600px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 72px; }
  .brand img { width: 150px; }
  .nav > .button { min-height: 42px; padding: 0 14px; font-size: 0.66rem; }
  .hero { padding: 55px 0 46px; }
  .hero-grid { gap: 44px; }
  h1 { font-size: clamp(2.85rem, 12vw, 4.4rem); line-height: 1; }
  .hero-lede { font-size: 1rem; line-height: 1.58; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .score-zone { grid-template-columns: 1fr; justify-items: center; }
  .metrics { width: 100%; }
  .nss-card { padding: 22px; border-radius: 19px; }
  .nss-top { align-items: center; }
  .proof { display: grid; gap: 12px; }
  .section { padding: 78px 0; }
  .pain-row, .deliverables, .process-steps, .pricing-grid, .fit-lists, .editorial-grid { grid-template-columns: 1fr; }
  .pain-item, .deliverable { padding: 22px 0; border-bottom: 1px solid var(--line); }
  .pain-item + .pain-item, .deliverable + .deliverable { padding-left: 0; border-left: 0; }
  .answer-step { grid-template-columns: 36px 108px 1fr; gap: 12px; font-size: 0.86rem; }
  .nss-detail { padding: 24px; }
  .method-grid { grid-template-columns: 1fr; justify-items: center; }
  .dimension-list { width: 100%; }
  .process-step { padding: 0 0 34px; }
  .process-step:not(:last-child)::after { display: none; }
  .editorial-panel { min-height: auto; padding: 52px 0; }
  .editorial-panel + .editorial-panel { padding: 52px 0; border-left: 0; border-top: 1px solid var(--line); }
  .fit-lists { gap: 40px; }
  .price-card p { min-height: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .copyright { display: grid; }
  .whatsapp { right: 15px; bottom: 15px; width: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .nss-card .track span { transform: none; }
}
