:root {
  color-scheme: dark;
  --font-sans: "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --ink: #f3ede2;
  --ink-soft: #d6d0c4;
  --muted: #a6a39b;
  --paper: #0b0e0e;
  --surface: #121616;
  --surface-muted: #171b1a;
  --line: rgba(243, 237, 226, 0.16);
  --line-strong: rgba(201, 154, 75, 0.3);
  --primary: #c99a4b;
  --primary-hover: #e3bc76;
  --primary-soft: rgba(201, 154, 75, 0.12);
  --teal: #67c89a;
  --teal-soft: rgba(103, 200, 154, 0.12);
  --amber: #f0ad45;
  --amber-soft: rgba(240, 173, 69, 0.14);
  --coral: #ef7867;
  --dark: #0b0e0e;
  --dark-soft: #0a141d;
  --dark-line: rgba(201, 154, 75, 0.22);
  --light: #f3ede2;
  --focus: #e3bc76;
  --danger: #ff7f70;
  --shadow-small: 0 10px 32px rgba(0, 0, 0, 0.24);
  --shadow-large: 0 28px 80px rgba(0, 0, 0, 0.38);
  --header-height: 72px;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #0b0e0e;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.ambient-network,
.ambient-grid {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ambient-network { opacity: 0.58; }

.ambient-grid {
  opacity: 0.19;
  background-image:
    linear-gradient(rgba(201, 154, 75, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 154, 75, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.journey-rail {
  --journey-progress: 0;
  position: fixed;
  z-index: 20;
  top: 50%;
  right: 22px;
  width: 34px;
  height: 250px;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  align-items: center;
  justify-items: center;
  opacity: 0;
  transform: translate(18px, -50%);
  pointer-events: none;
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-rail.is-visible {
  opacity: 1;
  transform: translate(0, -50%);
}

.journey-line,
.journey-line::after {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 50%;
  width: 1px;
  transform-origin: top center;
}

.journey-line {
  background: rgba(243, 237, 226, 0.22);
}

.journey-line::after {
  content: "";
  inset: 0;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(201, 154, 75, 0.7);
  transform: scaleY(var(--journey-progress));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-rail > span[data-journey-target] {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(243, 237, 226, 0.48);
  border-radius: 50%;
  background: #071019;
  transition: width 220ms ease, height 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.journey-rail b {
  position: absolute;
  top: 50%;
  right: 16px;
  opacity: 0;
  color: var(--primary);
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 700;
  transform: translate(5px, -50%);
  transition: opacity 200ms ease, transform 200ms ease;
}

.journey-rail > span.is-past {
  border-color: var(--primary);
  background: var(--primary);
}

.journey-rail > span.is-active {
  width: 13px;
  height: 13px;
  border-color: var(--primary);
  background: #071019;
  box-shadow: 0 0 0 4px rgba(201, 154, 75, 0.12), 0 0 18px rgba(201, 154, 75, 0.64);
}

.journey-rail > span.is-active b {
  opacity: 1;
  transform: translate(0, -50%);
}

.site-header,
main,
.site-footer,
dialog,
.toast-region {
  position: relative;
  z-index: 1;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  stroke-width: 1.8;
}

::selection {
  background: var(--primary);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
  box-shadow: var(--shadow-small);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 108px 0;
  overflow: clip;
}

[data-scene]::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 22%;
  height: 1px;
  opacity: 0;
  background: var(--primary);
  box-shadow: 0 0 16px rgba(201, 154, 75, 0.62);
  transform: translateX(-105%);
  pointer-events: none;
}

[data-scene] > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-heading h2,
.remote-intro h2,
.faq-intro h2,
.final-cta h2 {
  margin: 10px 0 16px;
  font-size: 2.65rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading > p:last-child,
.faq-intro > p,
.remote-intro > p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #9dc1ff;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding: 8px 15px;
  font-size: 0.9rem;
}

.button-primary {
  background: var(--primary);
  color: #041017;
  box-shadow: 0 10px 28px rgba(201, 154, 75, 0.24);
}

.button-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 14px 36px rgba(201, 154, 75, 0.32);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #fff;
}

.button-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--ink);
  background: var(--surface-muted);
}

.button-light {
  background: var(--light);
  color: var(--dark);
}

.button-light:hover {
  background: #dfe8e4;
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.button-ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--primary);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(201, 154, 75, 0.35);
  text-underline-offset: 5px;
}

.text-link:hover {
  text-decoration-color: currentColor;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(86, 193, 240, 0.18);
  background: rgba(5, 9, 14, 0.86);
  color: #fff;
  backdrop-filter: blur(18px) saturate(125%);
}

.site-header.is-scrolled {
  background: rgba(5, 9, 14, 0.96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--primary);
  box-shadow: 0 0 14px rgba(201, 154, 75, 0.7);
  will-change: transform;
}

.header-inner {
  width: min(1320px, calc(100% - 48px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.08rem;
  font-weight: 680;
  white-space: nowrap;
}

.brand strong {
  color: var(--primary);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #d1d8d5;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.header-actions,
.language-control {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 14px;
}

.language-control {
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.language-control button {
  min-width: 36px;
  min-height: 32px;
  padding: 3px 7px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #b9c4c0;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.language-control button[aria-pressed="true"] {
  background: var(--primary);
  color: #041017;
}

.menu-button,
.icon-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
}

.menu-button {
  display: none;
  color: #fff;
}

.mobile-nav {
  width: min(100% - 32px, 520px);
  margin: 0 auto 16px;
  padding: 12px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--dark-soft);
}

.mobile-nav a:not(.button) {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid var(--dark-line);
  color: #e8eeeb;
}

.mobile-nav .button {
  width: 100%;
  margin-top: 12px;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(740px, calc(100svh - 170px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 54px) 0 70px;
  border-bottom: 1px solid rgba(201, 154, 75, 0.38);
  background-color: var(--dark);
  background-image: url("assets/optipc-remote-support-hero-1920.webp");
  background-position:
    calc(50% + var(--hero-shift-x, 0px))
    calc(50% + var(--hero-shift-y, 0px) + var(--hero-pointer-y, 0px));
  background-size: cover;
  color: #fff;
  transition: background-position 220ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: background-position;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(3, 8, 12, 0.64);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.18;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(201, 154, 75, 0.08) 4px
  );
  pointer-events: none;
}

#particle-canvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  opacity: 0.18;
  pointer-events: none;
}

.hero-grid::before,
.hero-grid::after {
  content: "";
  position: absolute;
  background: var(--primary);
}

.hero-grid::before {
  top: 22%;
  right: 9%;
  width: 38%;
  height: 1px;
  box-shadow: 0 128px 0 var(--primary), 0 256px 0 var(--primary), 0 384px 0 var(--primary);
}

.hero-grid::after {
  top: 14%;
  right: 15%;
  width: 1px;
  height: 62%;
  box-shadow: 120px 0 0 var(--primary), 240px 0 0 var(--primary), 360px 0 0 var(--primary);
}

.hero-rail {
  z-index: 2;
  display: block;
  position: absolute;
  right: 7%;
  height: 2px;
  transform-origin: left center;
  background: var(--primary);
  opacity: 0.62;
}

.hero-rail::before,
.hero-rail::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translateY(-50%);
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #0b0e0e;
  box-shadow: 0 0 14px currentColor;
}

.hero-rail::before { left: 0; }
.hero-rail::after { right: 0; }

.hero-rail-one {
  top: 39%;
  width: 34%;
  color: var(--primary);
}

.hero-rail-two {
  top: 60%;
  width: 24%;
  background: var(--teal);
  color: #33a890;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1060px;
  text-align: center;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid rgba(201, 154, 75, 0.3);
  border-radius: 999px;
  background: rgba(5, 15, 22, 0.72);
  color: var(--primary);
  box-shadow: inset 0 0 22px rgba(201, 154, 75, 0.05);
}

.hero .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px rgba(103, 200, 154, 0.8);
}

.hero h1 {
  max-width: 980px;
  margin: 22px auto 20px;
  font-size: 7.4rem;
  font-weight: 860;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 20px 52px rgba(0, 0, 0, 0.48);
}

.hero-accent {
  color: var(--primary);
  text-shadow: 0 0 34px rgba(201, 154, 75, 0.34);
}

.hero-lead {
  max-width: 740px;
  margin: 0 auto;
  color: #c3d2dc;
  font-size: 1.32rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  justify-content: center;
}

.hero-principles {
  max-width: 970px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 58px auto 0;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.hero-principles > li {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-right: 1px solid var(--dark-line);
  color: #dce5e1;
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-principles > li:first-child { padding-left: 0; }
.hero-principles > li:last-child { border-right: 0; }
.hero-principles svg { color: #80adff; }

.hero-next {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dark-line);
  border-radius: 7px;
  color: #c7d1cd;
}

/* Diagnostic method */
.solutions {
  position: relative;
  padding-top: 32px;
  overflow: hidden;
  background: rgba(5, 10, 16, 0.78);
  border-bottom: 1px solid var(--line);
}

.solutions .section-heading,
.process .section-heading,
.services .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.method-heading {
  max-width: 900px;
  margin-bottom: 52px;
}

.diagnostic-workbench {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(7, 14, 22, 0.9);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.score-panel,
.inspection-panel {
  min-width: 0;
  padding: 40px;
}

.inspection-panel {
  border-left: 1px solid var(--line-strong);
  background: rgba(10, 20, 29, 0.62);
}

.workbench-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
  margin-bottom: 28px;
}

.workbench-label {
  display: block;
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.workbench-header h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
}

.measurement-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(102, 209, 158, 0.34);
  border-radius: 999px;
  color: #9de8c3;
  font-size: 0.72rem;
  font-weight: 750;
}

.measurement-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(102, 209, 158, 0.35);
}

.inspection-count {
  color: var(--amber);
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 1.25rem;
  font-weight: 800;
}

.score-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.score-state {
  min-width: 0;
  padding: 26px 0;
}

.score-step {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 850;
}

.score-state-after .score-step { color: var(--teal); }

.score-state-heading {
  display: flex;
  align-items: center;
  gap: 13px;
}

.score-gauge {
  --score-angle: 0deg;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#8bb4ff var(--score-angle), rgba(139, 180, 255, 0.12) 0);
  box-shadow: 0 0 24px rgba(139, 180, 255, 0.1);
}

.score-gauge::before {
  content: "";
  grid-area: 1 / 1;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #09151f;
}

.score-state-heading .score-gauge span {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  margin: 0;
  color: #c7d9ff;
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 850;
}

.score-gauge-after {
  background: conic-gradient(var(--teal) var(--score-angle), rgba(102, 209, 158, 0.12) 0);
  box-shadow: 0 0 28px rgba(102, 209, 158, 0.14);
}

.score-state-heading .score-gauge-after span { color: #9de8c3; }

.score-demo-label {
  margin: 18px 0 0;
  color: #738a94;
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 0.66rem;
  line-height: 1.5;
  text-transform: uppercase;
}

.score-state-heading span {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

.score-state-heading strong {
  display: block;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.2;
}

.score-state > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.score-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--amber);
}

.score-connector span {
  width: 100%;
  height: 1px;
  background: var(--line-strong);
  transform: scaleX(0);
  transform-origin: left center;
}

.score-connector svg {
  width: 19px;
  height: 19px;
}

.score-connector small {
  color: var(--muted);
  font-size: 0.62rem;
  text-align: center;
}

.score-note {
  display: flex;
  gap: 10px;
  margin: 22px 0 0;
  color: #9baaa5;
  font-size: 0.76rem;
  line-height: 1.55;
}

.score-note svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--amber);
}

.inspection-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--line);
}

.inspection-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid var(--line);
}

.inspection-list li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.inspection-list li:nth-child(even) {
  padding-left: 18px;
}

.inspection-list svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  color: #8bb4ff;
}

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

.inspection-list strong {
  margin: 1px 0 4px;
  color: var(--ink);
  font-size: 0.82rem;
}

.inspection-list span {
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.5;
}

.evidence-method {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  list-style: none;
  overflow: hidden;
  background: rgba(7, 14, 22, 0.7);
}

.evidence-method li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 24px;
  border-right: 1px solid var(--line-strong);
}

.evidence-method li:last-child { border-right: 0; }

.evidence-method li > span {
  color: var(--amber);
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 0.8rem;
  font-weight: 850;
}

.evidence-method h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.evidence-method p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.55;
}

.method-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 26px;
  padding: 18px 0 0;
}

.method-cta > p {
  max-width: 720px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.method-cta > p svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.method-cta .button { flex: 0 0 auto; }

.solutions.has-entered .measurement-status i {
  animation: measurement-pulse 2.4s ease-out infinite;
}

.solutions.has-entered .score-connector span {
  transform: scaleX(1);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1) 260ms;
}

/* Process */
.process {
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 15, 23, 0.84);
}

.compact-heading { margin-bottom: 36px; }

.process-list {
  --process-progress: 0;
  position: relative;
  max-width: 1060px;
  margin: 64px auto 0;
  list-style: none;
  border-top: 0;
}

.process-list::before,
.process-list::after {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 2px;
  transform-origin: top center;
}

.process-list::before {
  background: var(--line-strong);
}

.process-list::after {
  transform: scaleY(var(--process-progress));
  background: var(--primary);
  box-shadow: 0 0 16px rgba(201, 154, 75, 0.55);
  transition: transform 80ms linear;
}

.process-list li {
  position: relative;
  width: calc(50% - 58px);
  display: grid;
  grid-template-columns: 56px 48px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 156px;
  margin-bottom: 34px;
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(8, 18, 27, 0.88);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.process-list li:nth-child(even) {
  margin-left: auto;
}

.process-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -59px;
  width: 58px;
  height: 1px;
  background: var(--line-strong);
}

.process-list li:nth-child(even)::before {
  right: auto;
  left: -59px;
}

.process-list li::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -65px;
  width: 13px;
  height: 13px;
  transform: translateY(-50%);
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: #071019;
  box-shadow: 0 0 16px rgba(201, 154, 75, 0.48);
}

.process-list li:nth-child(even)::after {
  right: auto;
  left: -65px;
}

.process-list li.is-process-complete {
  border-color: rgba(201, 154, 75, 0.46);
}

.process-list li.is-process-complete::after {
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(201, 154, 75, 0.1), 0 0 22px rgba(201, 154, 75, 0.76);
}

.process-list li.is-process-complete > svg {
  color: var(--teal);
  filter: drop-shadow(0 0 8px rgba(103, 200, 154, 0.44));
}

.process-index {
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 850;
}

.process-list > li > svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
  stroke-width: 1.4;
}

.process-list h3 {
  margin: 0 0 5px;
  font-size: 1.2rem;
}

.process-list p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.profile-studio {
  max-width: 1120px;
  margin: 92px auto 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(5, 12, 19, 0.62);
}

.profile-studio-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: end;
  padding: 40px 0 34px;
}

.profile-studio-heading .eyebrow { margin-bottom: 10px; }

.profile-studio-heading h3 {
  max-width: 540px;
  margin: 0;
  font-size: 2rem;
}

.profile-studio-heading > p {
  margin: 0;
  color: var(--muted);
}

.profile-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line-strong);
  border-bottom: 0;
}

.profile-tab {
  min-width: 0;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px;
  border: 0;
  border-right: 1px solid var(--line-strong);
  background: #07121b;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 760;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.profile-tab:last-child { border-right: 0; }

.profile-tab svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.profile-tab:hover,
.profile-tab:focus-visible { color: var(--ink); }

.profile-tab.is-active {
  background: rgba(201, 154, 75, 0.08);
  color: var(--primary);
  box-shadow: inset 0 -2px var(--primary);
}

.profile-panels {
  min-height: 232px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(90deg, rgba(201, 154, 75, 0.04), transparent 42%),
    #071019;
}

.profile-panel {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
  padding: 38px 40px;
}

.profile-panel.is-active { display: grid; }
.profile-panel[hidden] { display: none; }

.profile-panel > div > span {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.profile-panel h4 {
  margin: 0 0 8px;
  font-size: 1.42rem;
}

.profile-panel p {
  margin: 0;
  color: var(--muted);
}

.profile-panel ul {
  list-style: none;
  border-top: 1px solid var(--line);
}

.profile-panel li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid var(--line);
  color: #bdc9c5;
  font-size: 0.86rem;
}

.profile-panel li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 18px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--teal);
  transform: rotate(45deg);
}

.profile-panel.is-active > * {
  animation: profile-panel-in 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.profile-panel.is-active > :last-child { animation-delay: 60ms; }

/* Remote */
.remote {
  background: rgba(4, 9, 14, 0.9);
  color: #fff;
}

.remote-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 84px;
  align-items: center;
}

.remote-intro > p {
  color: #b8c5c0;
}

.remote-product-lockup {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 34px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(201, 154, 75, 0.25);
  border-radius: var(--radius);
  background: rgba(8, 22, 31, 0.72);
}

.remote-product-lockup > span:last-child {
  display: flex;
  flex-direction: column;
}

.remote-product-lockup strong { font-size: 0.92rem; }

.remote-product-lockup small {
  color: #8fa39d;
  font-size: 0.68rem;
}

.remote-intro .button { margin-top: 28px; }

.permission-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: rgba(9, 22, 32, 0.92);
  box-shadow: 18px 18px 0 rgba(2, 6, 10, 0.8), 0 0 70px rgba(201, 154, 75, 0.06);
}

.permission-panel::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: -24%;
  height: 1px;
  background: var(--primary);
  box-shadow: 0 0 18px rgba(201, 154, 75, 0.8);
  opacity: 0.5;
}

.permission-header {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--dark-line);
  font-size: 0.88rem;
  font-weight: 750;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #49c6a7;
  box-shadow: 0 0 0 5px rgba(73, 198, 167, 0.12);
}

.permission-state {
  margin-left: auto;
  padding: 4px 8px;
  border: 1px solid #53666e;
  border-radius: 4px;
  color: #b8c5c0;
  font-size: 0.72rem;
  font-weight: 650;
}

.permission-panel ul {
  list-style: none;
  padding: 8px 20px 14px;
}

.remote-connection-path {
  display: grid;
  grid-template-columns: 38px 1fr 38px 1fr 38px;
  align-items: center;
  padding: 22px 28px 8px;
}

.remote-connection-path span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 154, 75, 0.32);
  border-radius: 50%;
  background: #071019;
  color: var(--primary);
}

.remote-connection-path svg { width: 18px; height: 18px; }

.remote-connection-path b {
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 154, 75, 0.18), var(--primary), rgba(201, 154, 75, 0.18));
  transform-origin: left center;
}

.permission-panel li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--dark-line);
}

.permission-panel li > svg,
.permission-panel li > span {
  transition: color 260ms ease, opacity 260ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.permission-panel li:last-child { border-bottom: 0; }

.permission-panel li > svg {
  width: 24px;
  height: 24px;
  color: #80adff;
}

.permission-panel li span {
  display: flex;
  flex-direction: column;
}

.permission-panel strong {
  color: #fff;
  font-size: 0.94rem;
}

.permission-panel small {
  color: #9caba5;
  font-size: 0.82rem;
}

/* Services */
.services {
  background: rgba(5, 10, 16, 0.78);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: 36px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(8, 17, 25, 0.9);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.24);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: -32%;
  width: 24%;
  height: 2px;
  opacity: 0;
  background: var(--primary);
  box-shadow: 0 0 14px rgba(201, 154, 75, 0.9);
  pointer-events: none;
}

.service-card:not(.service-card-primary)::before {
  background: var(--teal);
  box-shadow: 0 0 14px rgba(103, 200, 154, 0.82);
}

.service-card:hover {
  border-color: rgba(201, 154, 75, 0.5);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.32), 0 0 36px rgba(201, 154, 75, 0.06);
}

.service-card-primary {
  border-top: 5px solid var(--primary);
}

.service-card:not(.service-card-primary) {
  border-top: 5px solid var(--teal);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--primary-soft);
  color: var(--primary);
}

.service-icon-business {
  background: var(--teal-soft);
  color: var(--teal);
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-tag {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
  text-align: right;
}

.service-card h3 {
  margin: 28px 0 10px;
  font-size: 1.7rem;
  line-height: 1.22;
}

.service-card > p {
  margin: 0;
  color: var(--muted);
}

.service-list {
  margin: 26px 0 30px;
}

.service-list li {
  padding: 10px 0;
  color: var(--ink-soft);
}

.price-block,
.proposal-note {
  min-height: 95px;
  margin-top: auto;
  margin-bottom: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.price-block {
  display: flex;
  flex-direction: column;
}

.price-main {
  font-size: 2rem;
  font-weight: 820;
  line-height: 1.2;
}

.price-main small {
  font-size: 0.82rem;
  font-weight: 750;
}

.price-alt,
.proposal-note span {
  color: var(--muted);
  font-size: 0.86rem;
}

.price-local,
.checkout-price-local {
  display: block;
  margin-top: 7px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 720;
}

[hidden] {
  display: none !important;
}

.proposal-note {
  display: flex;
  flex-direction: column;
}

/* FAQ */
.faq {
  border-top: 1px solid var(--line);
  background: rgba(8, 15, 23, 0.84);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 110px;
}

.faq-intro h2 {
  font-size: 2.2rem;
}

.faq-intro .text-link { margin-top: 14px; }

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { transition: transform 160ms ease; }
.faq-list details[open] summary svg { transform: rotate(45deg); }

.faq-list details p {
  margin: -4px 0 24px;
  padding-right: 48px;
  color: var(--muted);
}

/* Final CTA and footer */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  border-top: 1px solid rgba(201, 154, 75, 0.34);
  border-bottom: 1px solid rgba(201, 154, 75, 0.34);
  background: rgba(5, 15, 22, 0.9);
  color: #fff;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(201, 154, 75, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 154, 75, 0.18) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.final-cta::after {
  width: 30%;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.final-cta h2 {
  margin: 8px 0 8px;
  font-size: 2.3rem;
}

.final-cta p { color: #dfe8ff; }
.final-cta .eyebrow { color: var(--amber); }

.final-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.site-footer {
  padding: 70px 0 24px;
  background: rgba(3, 7, 11, 0.98);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 56px;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: #9caba5;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid nav h2 {
  margin: 0 0 10px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer-grid nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: #9caba5;
  font-size: 0.88rem;
}

.footer-grid nav a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--dark-line);
  color: #85958f;
  font-size: 0.78rem;
}

/* Dialogs and checkout */
.modal {
  width: min(900px, calc(100% - 32px));
  max-height: min(820px, calc(100dvh - 32px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-large);
}

.modal::backdrop {
  background: rgba(8, 13, 16, 0.72);
  backdrop-filter: blur(5px);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
}

.modal-header h2,
.result-modal h2 {
  margin: 3px 0 0;
  font-size: 1.55rem;
  line-height: 1.25;
}

.modal-kicker {
  margin: 0;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.icon-button {
  flex: 0 0 auto;
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--ink);
}

.icon-button:hover { background: var(--surface-muted); }

.checkout-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
}

.checkout-summary {
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  background: var(--surface-muted);
}

.checkout-price {
  display: block;
  font-size: 2rem;
  font-weight: 850;
  line-height: 1.2;
}

.checkout-price small {
  font-size: 0.82rem;
}

.checkout-price-alt {
  color: var(--muted);
  font-size: 0.84rem;
}

html:not([data-country="AR"]) .payment-actions {
  grid-template-columns: 1fr;
}

.checkout-summary ul {
  list-style: none;
  margin-top: 24px;
}

.checkout-summary li {
  display: flex;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.checkout-summary li svg { margin-top: 3px; color: var(--teal); }

.checkout-form {
  padding: 30px 28px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.84rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #08131c;
  color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder { color: #718696; }

.field select option {
  background: #08131c;
  color: var(--ink);
}

.field-hint {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.field textarea { min-height: 104px; resize: vertical; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--primary); }
.field input[aria-invalid="true"] { border-color: var(--danger); }

.modal-copy {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.proposal-modal { width: min(760px, calc(100% - 32px)); }
.proposal-form { padding: 26px 28px 28px; }
.proposal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
.proposal-submit { position: relative; margin-top: 18px; }
.proposal-submit .spinner { display: none; }
.proposal-submit.is-loading > span:first-child { visibility: hidden; }
.proposal-submit.is-loading .spinner { display: block; position: absolute; }
.form-message { min-height: 20px; margin: 10px 0 0; color: var(--danger); font-size: 0.82rem; text-align: center; }
.proposal-success { padding: 44px 28px 32px; text-align: center; }
.proposal-success h3 { margin: 18px 0 8px; font-size: 1.55rem; }
.proposal-success > p { max-width: 520px; margin: 0 auto; color: var(--muted); line-height: 1.65; }
.proposal-success .request-number { margin: 18px auto 22px; color: var(--ink); }
.proposal-success .request-number strong { color: var(--primary); font-family: "Cascadia Mono", Consolas, monospace; }

.field-error {
  display: none;
  margin-top: 5px;
  color: var(--danger);
  font-size: 0.78rem;
}

.field-error.is-visible { display: block; }

.referral-toggle {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -2px 0 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 720;
  text-align: left;
  cursor: pointer;
}

.referral-chevron { margin-left: auto; transition: transform 160ms ease; }
.referral-toggle[aria-expanded="true"] .referral-chevron { transform: rotate(180deg); }

.terms-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.8rem;
  cursor: pointer;
}

.terms-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--primary);
}

.payment-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.payment-button {
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.payment-button:hover { transform: translateY(-2px); }
.payment-button:disabled { opacity: 0.6; cursor: wait; transform: none; }
.payment-button small { font-size: 0.7rem; font-weight: 650; opacity: 0.84; }

.payment-mp { background: #1f7cc3; color: #fff; }
.payment-mp:hover { background: #17679f; }
.payment-paypal { border-color: #d69c00; background: #ffc439; color: #102a50; }
.payment-paypal:hover { background: #edb21f; }

.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.payment-button.is-loading .payment-label,
.payment-button.is-loading small { display: none; }
.payment-button.is-loading .spinner { display: block; }

.checkout-note {
  display: flex;
  gap: 8px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.checkout-note svg { margin-top: 2px; }

.result-modal {
  width: min(560px, calc(100% - 32px));
  padding: 40px;
  text-align: center;
}

.result-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.result-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
}

.result-icon svg { width: 29px; height: 29px; }

.result-modal > p:not(.modal-kicker) {
  color: var(--muted);
}

.result-steps {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  text-align: left;
}

.result-steps > span {
  min-height: 48px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  font-size: 0.84rem;
}

.result-steps b {
  color: var(--primary);
  text-align: center;
}

.toast-region {
  position: fixed;
  z-index: 3000;
  right: 20px;
  bottom: 20px;
  width: min(400px, calc(100% - 40px));
}

.toast {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid #edb2ac;
  border-radius: var(--radius);
  background: #fff5f3;
  color: #7d2117;
  box-shadow: var(--shadow-small);
  font-size: 0.88rem;
}

.toast.is-success {
  border-color: #a6d8cb;
  background: #f0faf7;
  color: #075f50;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Purposeful motion, progressively enhanced when scripts are available. */
@media (prefers-reduced-motion: no-preference) {
  .motion-ready .hero .eyebrow {
    animation: hero-copy-in 760ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
  }

  .motion-ready .hero h1 {
    animation: hero-title-in 980ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
  }

  .motion-ready .hero-lead {
    animation: hero-copy-in 820ms cubic-bezier(0.22, 1, 0.36, 1) 330ms both;
  }

  .motion-ready .hero-actions {
    animation: hero-copy-in 820ms cubic-bezier(0.22, 1, 0.36, 1) 450ms both;
  }

  .motion-ready .hero-principles {
    animation: hero-copy-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 560ms both;
  }

  .motion-ready #particle-canvas {
    animation: canvas-in 1200ms cubic-bezier(0.22, 1, 0.36, 1) 320ms both;
  }

  .motion-ready .hero-grid {
    animation: grid-drift 9s cubic-bezier(0.37, 0, 0.63, 1) infinite alternate;
  }

  .motion-ready .ambient-grid {
    animation: ambient-grid-drift 22s linear infinite;
  }

  .motion-ready [data-scene].has-entered::after {
    animation: scene-signal 1450ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .motion-ready .hero-rail {
    animation: rail-in 1250ms cubic-bezier(0.16, 1, 0.3, 1) 480ms both;
  }

  .motion-ready .hero-next {
    animation: next-cue 1900ms cubic-bezier(0.37, 0, 0.63, 1) 1200ms infinite;
  }

  .motion-ready [data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition:
      opacity 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
      transform 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .motion-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .motion-ready [data-reveal="left"] { transform: translateX(-54px); }
  .motion-ready [data-reveal="right"] { transform: translateX(54px); }
  .motion-ready [data-reveal="scale"] { transform: scale(0.94); }

  .motion-ready [data-reveal="left"].is-visible,
  .motion-ready [data-reveal="right"].is-visible { transform: translateX(0); }

  .motion-ready [data-reveal="scale"].is-visible { transform: scale(1); }

  .motion-ready .service-card[data-reveal="scale"] {
    transform: perspective(1000px) scale(0.94) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  }

  .motion-ready .service-card[data-reveal="scale"].is-visible {
    transform: perspective(1000px) scale(1) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  }

  .motion-ready .permission-panel.is-visible::after {
    animation: permission-scan 4.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  }

  .motion-ready .permission-panel.is-visible li > svg,
  .motion-ready .permission-panel.is-visible li > span {
    animation: permission-step 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .motion-ready .permission-panel.is-visible li:nth-child(1) > svg,
  .motion-ready .permission-panel.is-visible li:nth-child(1) > span { animation-delay: 180ms; }
  .motion-ready .permission-panel.is-visible li:nth-child(2) > svg,
  .motion-ready .permission-panel.is-visible li:nth-child(2) > span { animation-delay: 300ms; }
  .motion-ready .permission-panel.is-visible li:nth-child(3) > svg,
  .motion-ready .permission-panel.is-visible li:nth-child(3) > span { animation-delay: 420ms; }
  .motion-ready .permission-panel.is-visible li:nth-child(4) > svg,
  .motion-ready .permission-panel.is-visible li:nth-child(4) > span { animation-delay: 540ms; }

  .motion-ready .permission-panel.is-visible .remote-connection-path b {
    animation: remote-link-in 920ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .motion-ready .permission-panel.is-visible .remote-connection-path b:nth-of-type(2) {
    animation-delay: 280ms;
  }

  .motion-ready .service-card.is-visible::before {
    animation: service-signal 4.6s cubic-bezier(0.65, 0, 0.35, 1) 900ms infinite;
  }

  .motion-ready .service-card.is-visible .service-icon {
    animation: service-icon-pulse 3.4s cubic-bezier(0.37, 0, 0.63, 1) 1000ms infinite;
  }

  .motion-ready .process-list li.is-process-complete::after {
    animation: process-node-complete 540ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .motion-ready .final-cta.has-entered::before {
    animation: final-grid-drift 16s linear infinite;
  }

}

@keyframes scene-signal {
  0% { opacity: 0; transform: translateX(-105%); }
  22% { opacity: 0.82; }
  72% { opacity: 0.5; }
  100% { opacity: 0; transform: translateX(560%); }
}

@keyframes permission-step {
  from { opacity: 0.28; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes profile-panel-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes remote-link-in {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes service-signal {
  0%, 10% { left: -32%; opacity: 0; }
  18% { opacity: 0.9; }
  46% { left: 112%; opacity: 0; }
  100% { left: 112%; opacity: 0; }
}

@keyframes service-icon-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 154, 75, 0); }
  48% { box-shadow: 0 0 0 8px rgba(201, 154, 75, 0.07); }
}

@keyframes process-node-complete {
  0% { transform: translateY(-50%) scale(0.72); }
  65% { transform: translateY(-50%) scale(1.25); }
  100% { transform: translateY(-50%) scale(1); }
}

@keyframes final-grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 64px 64px, 64px 64px; }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-title-in {
  from { opacity: 0; transform: translateY(48px); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes canvas-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes rail-in {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 0.62; transform: scaleX(1); }
}

@keyframes next-cue {
  0%, 100% { transform: translateY(0); border-color: var(--dark-line); }
  50% { transform: translateY(6px); border-color: #80adff; }
}

@keyframes measurement-pulse {
  0% { box-shadow: 0 0 0 0 rgba(102, 209, 158, 0.36); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(102, 209, 158, 0); }
}

@keyframes permission-scan {
  0%, 10% { top: -8%; opacity: 0; }
  18% { opacity: 0.55; }
  78% { opacity: 0.38; }
  88%, 100% { top: 108%; opacity: 0; }
}

@media (max-width: 1020px) {
  .journey-rail { display: none; }
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; }
  .hero h1 { font-size: 4.4rem; }
  .hero-rail { opacity: 0.32; }
  .diagnostic-workbench { grid-template-columns: 1fr; }
  .inspection-panel { border-top: 1px solid var(--line-strong); border-left: 0; }
  .inspection-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .inspection-list li,
  .inspection-list li:nth-child(odd),
  .inspection-list li:nth-child(even) { padding: 18px; border-right: 1px solid var(--line); }
  .inspection-list li:nth-child(3n) { border-right: 0; }
  .remote-layout { gap: 48px; }
  .profile-studio-heading { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .profile-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--line-strong); }
  .profile-tab:nth-child(3) { border-right: 0; }
  .profile-tab:nth-child(-n+3) { border-bottom: 1px solid var(--line-strong); }
  .profile-tab:nth-child(4) { grid-column: 1 / span 1; }
  .profile-tab:nth-child(5) { grid-column: 2 / span 2; border-right: 0; }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 820px) {
  :root { --header-height: 66px; }
  .container,
  .header-inner { width: min(100% - 32px, 720px); }
  .section { padding: 82px 0; }
  .section-heading h2,
  .remote-intro h2,
  .final-cta h2 { font-size: 2.15rem; }
  .hero { min-height: auto; padding: calc(var(--header-height) + 72px) 0 78px; }
  .hero h1 { font-size: 3.8rem; }
  .hero-lead { font-size: 1.12rem; }
  .hero-principles { grid-template-columns: 1fr; margin-top: 56px; }
  .hero-principles > li { border-right: 0; border-bottom: 1px solid var(--dark-line); padding-left: 0; }
  .hero-principles > li:last-child { border-bottom: 0; }
  .hero-next { display: none; }
  .inspection-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .inspection-list li,
  .inspection-list li:nth-child(odd),
  .inspection-list li:nth-child(even) { padding: 18px; border-right: 1px solid var(--line); }
  .inspection-list li:nth-child(even) { border-right: 0; }
  .evidence-method { grid-template-columns: 1fr; }
  .evidence-method li { border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .evidence-method li:last-child { border-bottom: 0; }
  .method-cta { align-items: flex-start; flex-direction: column; }
  .profile-panel { grid-template-columns: 1fr; gap: 24px; }
  .process-list {
    margin-top: 46px;
    padding-left: 42px;
  }
  .process-list::before,
  .process-list::after { left: 10px; }
  .process-list li,
  .process-list li:nth-child(even) {
    width: 100%;
    margin-left: 0;
  }
  .process-list li::before,
  .process-list li:nth-child(even)::before {
    right: auto;
    left: -32px;
    width: 31px;
  }
  .process-list li::after,
  .process-list li:nth-child(even)::after {
    right: auto;
    left: -39px;
  }
  .remote-layout,
  .faq-layout { grid-template-columns: 1fr; gap: 46px; }
  .faq-intro { position: static; }
  .service-card { min-height: 0; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .container,
  .header-inner { width: min(100% - 24px, 560px); }
  .desktop-cta { display: none; }
  .language-control button { min-width: 32px; }
  .ambient-network { opacity: 0.34; }
  .ambient-grid { opacity: 0.1; }
  .hero { min-height: calc(100svh - 150px); padding-bottom: 48px; border-bottom-width: 1px; }
  .hero h1 { font-size: 3.05rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-grid::after { display: none; }
  .hero-rail { display: none; }
  .hero {
    background-image: url("assets/optipc-remote-support-hero-960.webp");
    background-position: 56% center;
  }
  .hero::before { background: rgba(3, 8, 12, 0.69); }
  .hero-principles { display: none; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2,
  .remote-intro h2,
  .faq-intro h2,
  .final-cta h2 { font-size: 1.85rem; }
  .score-panel,
  .inspection-panel { padding: 26px 22px; }
  .workbench-header { align-items: flex-start; }
  .measurement-status { white-space: nowrap; }
  .score-comparison { grid-template-columns: 1fr; }
  .score-state { padding: 22px 0; }
  .score-connector { min-height: 58px; }
  .score-connector span { width: 1px; height: 28px; transform: scaleY(0); transform-origin: top center; }
  .score-connector svg { transform: rotate(90deg); }
  .score-connector small { max-width: none; }
  .solutions.has-entered .score-connector span { transform: scaleY(1); }
  .inspection-list { grid-template-columns: 1fr; }
  .inspection-list li,
  .inspection-list li:nth-child(odd),
  .inspection-list li:nth-child(even) { padding: 16px 0; border-right: 0; }
  .evidence-method li { padding: 20px; }
  .method-cta .button { width: 100%; }
  .process-list { padding-left: 30px; }
  .process-list::before,
  .process-list::after { left: 6px; }
  .process-list li { grid-template-columns: 30px 30px minmax(0, 1fr); gap: 10px; align-items: start; min-height: 0; padding: 22px 16px; }
  .process-list li::before,
  .process-list li:nth-child(even)::before { left: -24px; width: 23px; }
  .process-list li::after,
  .process-list li:nth-child(even)::after { left: -31px; }
  .process-list > li > svg { width: 26px; height: 26px; margin-top: 3px; }
  .profile-studio { margin-top: 68px; }
  .profile-studio-heading { padding: 30px 0 26px; }
  .profile-studio-heading h3 { font-size: 1.6rem; }
  .profile-tabs { grid-template-columns: 1fr; border-bottom: 0; }
  .profile-tab,
  .profile-tab:nth-child(3),
  .profile-tab:nth-child(4),
  .profile-tab:nth-child(5) {
    grid-column: auto;
    min-height: 52px;
    justify-content: flex-start;
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }
  .profile-tab:last-child { border-bottom: 0; }
  .profile-panel { padding: 26px 20px; }
  .profile-panel h4 { font-size: 1.2rem; }
  .remote-product-lockup { width: 100%; }
  .remote-connection-path { padding-inline: 18px; }
  .permission-panel { box-shadow: 8px 8px 0 #0a1115; }
  .permission-state { max-width: 110px; text-align: right; }
  .service-options { grid-template-columns: 1fr; }
  .service-card { padding: 26px 22px; }
  .service-card-top { align-items: flex-start; }
  .final-actions { width: 100%; flex-direction: column; }
  .final-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
  .modal-header { padding: 18px; }
  .modal-header h2 { font-size: 1.35rem; }
  .checkout-summary,
  .checkout-form,
  .proposal-form { padding: 18px; }
  .checkout-summary ul { margin-top: 14px; }
  .checkout-summary li { padding: 7px 0; }
  .checkout-form .field { margin-bottom: 12px; }
  .proposal-grid { grid-template-columns: 1fr; gap: 0; }
  .field input,
  .field select { min-height: 44px; }
  .payment-button { min-height: 58px; }
  .payment-actions { grid-template-columns: 1fr; }
  .result-modal { padding: 36px 20px 24px; }
}

@media (max-width: 360px) {
  .header-inner {
    width: calc(100% - 16px);
    gap: 8px;
  }

  .brand {
    gap: 8px;
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-actions { gap: 8px; }

  .language-control button {
    min-width: 28px;
    padding-inline: 4px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }
}

@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;
  }
}
