:root {
  --ink: #0a0a0b;
  --ink-soft: #111216;
  --panel: #16171b;
  --paper: #f4f5f6;
  --white: #ffffff;
  --text: #17181b;
  --muted: #737985;
  --line: #dcdfe3;
  --line-dark: rgba(255, 255, 255, 0.12);
  --orange: #f7652b;
  --orange-light: #ff8251;
  --blue: #2e8cff;
  --green: #56d497;
  --shadow: 0 24px 80px rgba(16, 21, 28, 0.12);
  --radius: 24px;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(46, 140, 255, 0.8);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--orange);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

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

.section {
  padding: 128px 0;
}

.section-dark,
.section-process,
.shop-section,
.contact-section {
  color: var(--white);
  background: var(--ink);
}

.section-light {
  background: var(--paper);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  background: rgba(10, 10, 11, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 8px 28px rgba(247, 101, 43, 0.26);
  font-size: 22px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 19px;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 7px;
  color: #9298a4;
  font: 600 9px/1 var(--mono);
  letter-spacing: 0.24em;
}

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: #aeb2bb;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--orange);
  transition: right 0.2s ease;
}

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

.main-nav a:hover::after {
  right: 0;
}

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

.lang-switch {
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-switch button {
  min-width: 32px;
  min-height: 30px;
  padding: 0 7px;
  border-radius: 7px;
  color: #747a84;
  background: transparent;
  cursor: pointer;
  font: 600 10px/1 var(--mono);
}

.lang-switch button.active {
  color: var(--white);
  background: #2a2b30;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  border-radius: 10px;
  font-size: 12px;
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 16px 36px rgba(247, 101, 43, 0.2);
}

.button-primary:hover {
  background: var(--orange-light);
}

.button-ghost {
  color: var(--white);
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
}

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

.button-light {
  color: #16171a;
  background: var(--white);
}

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

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #b7bbc3;
  font: 600 11px/1.2 var(--mono);
  letter-spacing: 0.16em;
}

.kicker > span:first-child {
  width: 28px;
  height: 2px;
  flex: none;
  background: var(--orange);
}

.kicker-dark {
  color: #727782;
}

.hero {
  position: relative;
  min-height: 890px;
  padding: 166px 0 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -180px;
  bottom: -290px;
  border-radius: 50%;
  border: 1px solid rgba(247, 101, 43, 0.28);
  box-shadow: 0 0 0 90px rgba(247, 101, 43, 0.04), 0 0 0 180px rgba(247, 101, 43, 0.025);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 74%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 50px;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(50px, 6vw, 86px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.58);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: #9da2ad;
  font-size: 17px;
  line-height: 1.75;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 62px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}

.hero-proof div {
  display: grid;
  gap: 4px;
}

.hero-proof strong {
  color: var(--white);
  font: 600 13px/1.2 var(--mono);
}

.hero-proof span {
  color: #6f747e;
  font-size: 11px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 575px;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.65);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 11, 0.78) 100%), linear-gradient(90deg, rgba(10, 10, 11, 0.14), transparent 32%);
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 575px;
  object-fit: cover;
  object-position: 55% center;
}

.hero-scan {
  position: absolute;
  z-index: 2;
  left: 5%;
  right: 5%;
  top: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 16px var(--blue);
  opacity: 0.75;
  animation: scan 5s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateY(0); opacity: 0.2; }
  50% { transform: translateY(390px); opacity: 0.9; }
}

.status-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  color: var(--white);
  background: rgba(10, 12, 16, 0.8);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.status-card small,
.status-card strong {
  display: block;
}

.status-card small {
  color: #7e8590;
  font: 600 8px/1.2 var(--mono);
  letter-spacing: 0.14em;
}

.status-card strong {
  margin-top: 3px;
  font-size: 11px;
}

.status-top {
  top: 28px;
  right: 26px;
}

.status-bottom {
  left: 26px;
  bottom: 28px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(86, 212, 151, 0.12), 0 0 18px var(--green);
}

.status-code {
  margin-left: 16px;
  color: var(--blue);
  font: 600 9px/1 var(--mono);
}

.status-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--orange);
  background: rgba(247, 101, 43, 0.12);
}

.status-icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.brand-line {
  position: relative;
  z-index: 3;
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-dark);
  color: #5e626b;
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.12em;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.section-heading h2,
.process-intro h2,
.portal-copy h2,
.contact-layout h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.section-heading > p,
.process-intro > p:last-child,
.portal-copy > p,
.contact-actions > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 318px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #c8ccd1;
  box-shadow: var(--shadow);
}

.service-card-featured {
  grid-row: span 2;
  min-height: 652px;
  padding: 50px;
  color: var(--white);
  border-color: #1e2025;
  background: var(--ink-soft);
}

.service-card-featured::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -170px;
  bottom: -170px;
  border-radius: 50%;
  border: 1px solid rgba(46, 140, 255, 0.35);
  box-shadow: 0 0 0 72px rgba(46, 140, 255, 0.035), 0 0 90px rgba(46, 140, 255, 0.13);
}

.service-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #b8bdc5;
  font: 600 10px/1 var(--mono);
}

.service-card-featured .service-number {
  color: #626873;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--orange);
  background: #fff0e9;
}

.service-card-featured .service-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(247, 101, 43, 0.16);
  background: rgba(247, 101, 43, 0.1);
}

.service-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-card h3 {
  margin: 34px 0 15px;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.service-card-featured h3 {
  margin-top: 58px;
  font-size: 38px;
}

.service-card p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.service-card-featured p {
  color: #9ea4af;
  font-size: 16px;
}

.service-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d5d8de;
  font-size: 13px;
}

.service-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(247, 101, 43, 0.1);
}

.service-card > a {
  position: absolute;
  left: 38px;
  bottom: 31px;
  color: #414650;
  font-size: 12px;
  font-weight: 800;
}

.service-card > a span:last-child {
  color: var(--orange);
}

.section-process {
  position: relative;
  overflow: hidden;
}

.section-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 22%, rgba(46, 140, 255, 0.14), transparent 28%);
}

.section-process .shell {
  position: relative;
}

.process-intro {
  max-width: 760px;
}

.process-intro > p:last-child {
  max-width: 560px;
  margin-top: 28px;
  color: #8e949e;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 72px 0 98px;
  border-top: 1px solid var(--line-dark);
}

.process-track article {
  position: relative;
  min-height: 180px;
  padding: 32px 28px 0 0;
  border-right: 1px solid var(--line-dark);
}

.process-track article:last-child {
  border-right: 0;
  padding-left: 28px;
}

.process-track article:not(:first-child):not(:last-child) {
  padding-left: 28px;
}

.process-track article::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: -5px;
  left: 0;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(247, 101, 43, 0.1);
}

.process-track article:not(:first-child)::before {
  left: 28px;
}

.process-track article > span {
  color: #50555e;
  font: 600 10px/1 var(--mono);
}

.process-track h3 {
  margin: 36px 0 8px;
  font-size: 17px;
}

.process-track p {
  margin: 0;
  color: #7e848e;
  font-size: 12px;
  line-height: 1.65;
}

.compatibility-card {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 70px;
  align-items: center;
  padding: 62px;
  border: 1px solid var(--line-dark);
  border-radius: 30px;
  background: linear-gradient(125deg, #15161a, #0d0e11);
}

.compatibility-copy h3 {
  margin: 0 0 20px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.compatibility-copy > p:not(.kicker) {
  margin: 0 0 28px;
  color: #9096a0;
  font-size: 14px;
  line-height: 1.75;
}

.vin-panel {
  padding: 26px;
  border: 1px solid rgba(46, 140, 255, 0.25);
  border-radius: 18px;
  background: #090e15;
  box-shadow: inset 0 0 70px rgba(46, 140, 255, 0.05), 0 30px 60px rgba(0, 0, 0, 0.28);
  font-family: var(--mono);
}

.vin-head,
.vin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vin-head {
  padding-bottom: 18px;
  color: #5e6c7d;
  font-size: 8px;
  letter-spacing: 0.15em;
}

.live {
  color: var(--green);
}

.live i {
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.vin-code {
  padding: 18px 16px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  color: #dceaff;
  background: rgba(46, 140, 255, 0.05);
  font-size: clamp(14px, 2vw, 19px);
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.vin-code b {
  color: #415268;
}

.vin-row {
  min-height: 51px;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 9px;
}

.vin-row span {
  width: 100px;
  color: #536070;
}

.vin-row strong {
  margin-right: auto;
  color: #ced7e2;
  font-size: 10px;
}

.vin-row em {
  color: var(--green);
  font-size: 8px;
  font-style: normal;
}

.vin-progress {
  height: 3px;
  margin-top: 20px;
  border-radius: 3px;
  background: #17202c;
  overflow: hidden;
}

.vin-progress span {
  width: 84%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 0 12px var(--blue);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case-card {
  min-height: 490px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  overflow: hidden;
  transition: transform 0.25s ease;
}

.case-card:hover {
  transform: translateY(-5px);
}

.case-dark {
  background: radial-gradient(circle at 85% 16%, rgba(255, 255, 255, 0.08), transparent 24%), #121318;
}

.case-blue {
  background: radial-gradient(circle at 85% 16%, rgba(255, 255, 255, 0.13), transparent 24%), #1764b7;
}

.case-orange {
  background: radial-gradient(circle at 85% 16%, rgba(255, 255, 255, 0.16), transparent 24%), #e85b27;
}

.case-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.56);
  font: 600 9px/1 var(--mono);
  letter-spacing: 0.1em;
}

.case-card h3 {
  margin: 92px 0 20px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.case-card > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.75;
}

.case-result {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.case-result span {
  color: rgba(255, 255, 255, 0.45);
  font: 600 8px/1 var(--mono);
  letter-spacing: 0.14em;
}

.case-result strong {
  font-size: 11px;
  line-height: 1.55;
}

.portal-section {
  background: #e8ebee;
  overflow: hidden;
}

.portal-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 74px;
  align-items: center;
}

.portal-copy h2 {
  font-size: clamp(42px, 5vw, 66px);
}

.portal-copy > p {
  margin-top: 28px;
}

.portal-list {
  display: grid;
  gap: 13px;
  margin: 32px 0 35px;
  padding: 0;
  list-style: none;
}

.portal-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #484d56;
  font-size: 13px;
}

.portal-list li > span:first-child {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  color: var(--orange);
  background: #fff0e9;
  font-size: 11px;
  font-weight: 800;
}

.portal-window {
  min-width: 740px;
  border: 1px solid #d4d8dd;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 40px 120px rgba(41, 50, 62, 0.18);
  overflow: hidden;
  transform: rotate(1.2deg);
}

.window-bar {
  height: 45px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-bottom: 1px solid #e7e9ec;
  background: #fafafa;
}

.window-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d5d7db;
}

.window-bar i:first-child {
  background: var(--orange);
}

.window-bar span {
  margin: auto;
  color: #a0a4ab;
  font: 500 8px/1 var(--mono);
}

.window-body {
  min-height: 405px;
  display: grid;
  grid-template-columns: 72px 1fr;
  background: #f3f4f6;
}

.window-body aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding-top: 24px;
  background: #111216;
}

.mini-logo {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: white;
  background: var(--orange);
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
}

.window-body aside > span {
  width: 19px;
  height: 4px;
  border-radius: 3px;
  background: #3a3c43;
}

.window-body aside > span:nth-of-type(1) {
  background: var(--orange);
}

.window-main {
  padding: 34px;
}

.window-title,
.window-title > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-title > div {
  display: grid;
}

.window-title small,
.window-stats small,
.window-history > small {
  color: #a3a8b0;
  font: 600 7px/1 var(--mono);
  letter-spacing: 0.12em;
}

.window-title strong {
  margin-top: 8px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.window-title > span {
  padding: 6px 9px;
  border-radius: 20px;
  color: #1a8e58;
  background: #dcf7e9;
  font: 600 7px/1 var(--mono);
}

.window-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 26px 0;
}

.window-stats > div {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid #e2e4e8;
  border-radius: 13px;
  background: var(--white);
}

.window-stats strong {
  font-size: 23px;
}

.window-stats em {
  color: #a1a5ad;
  font-size: 10px;
  font-style: normal;
}

.window-history {
  padding: 20px;
  border: 1px solid #e2e4e8;
  border-radius: 13px;
  background: var(--white);
}

.window-history > div {
  min-height: 63px;
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 13px;
  align-items: center;
  border-bottom: 1px solid #eff0f2;
}

.window-history > div:last-child {
  border-bottom: 0;
}

.window-history b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.window-history span {
  display: grid;
}

.window-history strong {
  font-size: 10px;
}

.window-history em {
  margin-top: 3px;
  color: #9da1a9;
  font-size: 7px;
  font-style: normal;
}

.window-history i {
  color: #a2a6ad;
  font: 600 7px/1 var(--mono);
  font-style: normal;
}

.shop-section {
  background: #101115;
}

.section-heading-dark > p {
  color: #858b95;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.shop-filters,
.rail-controls {
  display: flex;
  gap: 7px;
}

.shop-filters button,
.rail-controls button {
  min-height: 41px;
  padding: 0 16px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  color: #858b95;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.shop-filters button.active,
.shop-filters button:hover,
.rail-controls button:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.rail-controls button {
  width: 43px;
  padding: 0;
  font-size: 16px;
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 51px) / 4);
  gap: 17px;
  padding: 2px 2px 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-rail::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: #16171b;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 0.84;
  padding: 20px;
  background: radial-gradient(circle at 50% 85%, rgba(46, 140, 255, 0.12), transparent 38%), #0d0e12;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #aeb4bf;
  background: rgba(10, 10, 11, 0.76);
  font: 600 7px/1 var(--mono);
  letter-spacing: 0.1em;
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-copy > small {
  color: var(--orange);
  font: 600 8px/1 var(--mono);
  letter-spacing: 0.13em;
}

.product-copy h3 {
  margin: 12px 0 9px;
  font-size: 18px;
  line-height: 1.3;
}

.product-copy > p {
  margin: 0 0 22px;
  color: #7e848e;
  font-size: 11px;
  line-height: 1.65;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.product-price {
  display: grid;
}

.product-price small {
  color: #686e78;
  font: 500 7px/1 var(--mono);
  letter-spacing: 0.08em;
}

.product-price strong {
  margin-top: 5px;
  font-size: 18px;
}

.product-details {
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.product-compare {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 22px;
  border-top: 1px solid var(--line-dark);
  color: #8a909a;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
}

.product-compare input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--orange);
}

.shop-disclaimer {
  max-width: 780px;
  margin: 22px 0 0;
  color: #60656e;
  font-size: 10px;
  line-height: 1.7;
}

.contact-section {
  position: relative;
  padding: 128px 0;
  background: var(--ink);
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 45%, rgba(247, 101, 43, 0.06));
}

.contact-orbit {
  position: absolute;
  border: 1px solid rgba(247, 101, 43, 0.2);
  border-radius: 50%;
}

.orbit-one {
  width: 520px;
  height: 520px;
  right: -170px;
  top: -220px;
}

.orbit-two {
  width: 330px;
  height: 330px;
  right: -75px;
  top: -125px;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  gap: 90px;
  align-items: end;
}

.contact-layout h2 {
  max-width: 760px;
  font-size: clamp(46px, 6vw, 78px);
}

.contact-actions {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.contact-mail {
  padding-bottom: 6px;
  border-bottom: 1px solid #4a4e56;
  color: #d5d7dc;
  font-size: 16px;
  font-weight: 700;
}

.contact-mail span {
  color: var(--orange);
}

.contact-actions > p {
  color: #696f78;
  font-size: 11px;
}

.site-footer {
  color: #767b84;
  background: #080809;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 38px;
  align-items: center;
}

.brand-footer {
  color: var(--white);
}

.footer-grid > p {
  margin: 0;
  font-size: 10px;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 10px;
  font-weight: 600;
}

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

.copyright {
  grid-column: 2;
  margin-top: -40px !important;
  font-family: var(--mono);
}

.product-dialog {
  width: min(1000px, calc(100% - 32px));
  max-height: min(88vh, 820px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  color: var(--white);
  background: #121318;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.65);
  overflow: auto;
}

.product-dialog::backdrop {
  background: rgba(2, 3, 5, 0.82);
  backdrop-filter: blur(10px);
}

.dialog-close {
  position: sticky;
  z-index: 4;
  top: 18px;
  float: right;
  width: 42px;
  height: 42px;
  margin: 18px 18px 0 0;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--white);
  background: rgba(15, 16, 20, 0.86);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.dialog-product {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 600px;
}

.dialog-image {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 48px;
  background: radial-gradient(circle at 50% 70%, rgba(46, 140, 255, 0.17), transparent 38%), #0b0c10;
}

.dialog-image img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.dialog-copy {
  padding: 62px 52px 48px;
}

.dialog-copy > small {
  color: var(--orange);
  font: 600 9px/1 var(--mono);
  letter-spacing: 0.14em;
}

.dialog-copy h2 {
  margin: 17px 0 12px;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.dialog-copy > p {
  margin: 0;
  color: #8a909a;
  font-size: 13px;
  line-height: 1.75;
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 28px 0;
}

.spec-list dt,
.spec-list dd {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 10px;
}

.spec-list dt {
  color: #666c75;
}

.spec-list dd {
  color: #d6d9df;
  text-align: right;
}

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

.dialog-price {
  display: grid;
  margin-right: auto;
}

.dialog-price small {
  color: #6d727b;
  font: 500 8px/1 var(--mono);
}

.dialog-price strong {
  margin-top: 6px;
  font-size: 25px;
}

.compare-view {
  padding: 58px 42px 46px;
}

.compare-view h2 {
  margin: 0 0 12px;
  font-size: 36px;
  letter-spacing: -0.04em;
}

.compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.difference-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #a0a6b0;
  font-size: 11px;
  cursor: pointer;
}

.difference-toggle input {
  width: 17px;
  height: 17px;
  accent-color: var(--orange);
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  font-size: 11px;
}

.compare-table th,
.compare-table td {
  min-width: 160px;
  padding: 15px;
  border-bottom: 1px solid var(--line-dark);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.compare-table tbody th {
  color: #686e78;
  font-weight: 500;
}

.compare-table td {
  color: #d2d5db;
}

.compare-table tr.is-different td,
.compare-table tr.is-different th {
  background: rgba(46, 140, 255, 0.06);
}

.compare-dock {
  position: fixed;
  z-index: 110;
  left: 50%;
  bottom: 18px;
  width: min(820px, calc(100% - 32px));
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: var(--white);
  background: rgba(18, 19, 24, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.compare-dock[hidden] {
  display: none;
}

.compare-dock > div:first-child {
  display: grid;
}

.compare-dock small {
  color: #6f7580;
  font: 600 7px/1 var(--mono);
  letter-spacing: 0.1em;
}

.compare-dock strong {
  margin-top: 6px;
  font-size: 13px;
}

.compare-names {
  display: flex;
  gap: 7px;
  min-width: 0;
}

.compare-chip {
  max-width: 150px;
  padding: 7px 10px;
  border-radius: 30px;
  color: #b7bbc4;
  background: #272930;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 9px;
}

.compare-clear {
  color: #777d86;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@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; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 12px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr); gap: 36px; }
  .product-rail { grid-auto-columns: calc((100% - 34px) / 3); }
  .portal-grid { grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
  .portal-window { min-width: 650px; }
}

@media (max-width: 920px) {
  .shell { width: min(100% - 36px, 760px); }
  .section { padding: 94px 0; }
  .header-inner { min-height: 72px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 12px 18px 22px;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(10, 10, 11, 0.98);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; }
  .main-nav a::after { display: none; }
  .hero { min-height: auto; padding-top: 136px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero-visual { min-height: 510px; margin-top: 16px; }
  .hero-visual > img { height: 510px; }
  .brand-line { overflow-x: auto; justify-content: flex-start; }
  .brand-line span { flex: none; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 52px; }
  .section-heading > p { max-width: 560px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card-featured { grid-column: span 2; grid-row: auto; min-height: 520px; }
  .process-track { grid-template-columns: 1fr 1fr; border-top: 0; gap: 1px; background: var(--line-dark); }
  .process-track article, .process-track article:last-child, .process-track article:not(:first-child):not(:last-child) { padding: 28px; border: 0; background: var(--ink); }
  .process-track article::before, .process-track article:not(:first-child)::before { top: 29px; left: auto; right: 28px; }
  .compatibility-card { grid-template-columns: 1fr; gap: 42px; }
  .case-grid { grid-template-columns: 1fr; }
  .case-card { min-height: 390px; }
  .case-card h3 { max-width: 560px; margin-top: 65px; }
  .portal-grid { grid-template-columns: 1fr; }
  .portal-copy { max-width: 630px; }
  .portal-window { min-width: 720px; margin-left: 70px; }
  .product-rail { grid-auto-columns: calc((100% - 17px) / 2); }
  .contact-layout { grid-template-columns: 1fr; gap: 46px; }
  .contact-actions { max-width: 420px; }
  .footer-grid { grid-template-columns: auto 1fr; padding: 34px 0; }
  .footer-links { grid-column: 1 / -1; }
  .copyright { grid-column: 2; margin-top: 0 !important; }
  .dialog-product { grid-template-columns: 1fr; }
  .dialog-image { min-height: 390px; }
}

@media (max-width: 640px) {
  .shell { width: calc(100% - 28px); }
  .section { padding: 78px 0; }
  .header-inner { min-height: 68px; gap: 10px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 17px; }
  .header-actions .button { display: none; }
  .menu-toggle { margin-left: auto; }
  .main-nav { top: 68px; }
  .lang-switch { order: 2; }
  .lang-switch button { min-width: 29px; padding-inline: 4px; }
  .hero { padding-top: 118px; }
  .hero h1 { font-size: clamp(45px, 14vw, 62px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 14px; margin-top: 42px; }
  .hero-proof div { grid-template-columns: 60px 1fr; align-items: center; }
  .hero-visual { min-height: 410px; border-radius: 22px 22px 0 0; }
  .hero-visual > img { height: 410px; object-position: 51% center; }
  .status-top { top: 14px; right: 14px; }
  .status-code { display: none; }
  .status-bottom { left: 14px; bottom: 16px; right: 14px; }
  .brand-line { min-height: 78px; }
  .section-heading h2, .process-intro h2, .portal-copy h2 { font-size: 41px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card-featured { grid-column: auto; min-height: 340px; padding: 30px; }
  .service-card-featured { min-height: 530px; }
  .service-card-featured h3 { margin-top: 52px; font-size: 32px; }
  .service-card > a { left: 30px; bottom: 26px; }
  .process-track { grid-template-columns: 1fr; margin: 55px 0 70px; }
  .compatibility-card { padding: 32px 22px; }
  .compatibility-copy .button { width: 100%; text-align: center; }
  .vin-panel { padding: 19px 16px; }
  .vin-code { font-size: 12px; letter-spacing: 0.12em; }
  .vin-row { gap: 7px; }
  .vin-row span { width: 80px; }
  .case-card { min-height: 430px; padding: 28px; }
  .case-card h3 { font-size: 25px; }
  .portal-window { min-width: 630px; margin-left: 24px; transform: scale(0.82) rotate(1deg); transform-origin: left top; margin-bottom: -72px; }
  .window-body { min-height: 380px; }
  .shop-toolbar { align-items: flex-end; }
  .shop-filters { max-width: calc(100% - 95px); overflow-x: auto; }
  .shop-filters button { flex: none; }
  .product-rail { grid-auto-columns: 86%; }
  .contact-section { padding: 90px 0; }
  .contact-layout h2 { font-size: 45px; }
  .footer-grid { grid-template-columns: 1fr; gap: 23px; }
  .footer-links { grid-column: auto; flex-wrap: wrap; }
  .copyright { grid-column: auto; }
  .product-dialog { width: calc(100% - 18px); max-height: 92vh; border-radius: 18px; }
  .dialog-image { min-height: 300px; padding: 34px; }
  .dialog-copy { padding: 38px 24px 32px; }
  .dialog-copy h2 { font-size: 31px; }
  .spec-list { grid-template-columns: 1fr 1fr; }
  .dialog-actions { align-items: stretch; }
  .dialog-price { width: 100%; margin-bottom: 6px; }
  .dialog-actions .button { flex: 1; }
  .compare-view { padding: 52px 20px 28px; }
  .compare-head { align-items: flex-start; flex-direction: column; }
  .compare-dock { grid-template-columns: auto 1fr auto; gap: 10px; padding: 10px 12px; }
  .compare-names { display: none; }
  .compare-clear { grid-column: 3; }
  .compare-dock .button { grid-column: 1 / -1; width: 100%; }
}

/* Mcoding live chat */
.chat-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 210;
  min-height: 58px;
  padding: 0 21px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 55px rgba(10,10,12,.28);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s, background .2s, bottom .25s;
}
.chat-launcher:hover { transform: translateY(-3px); background: #18191d; }
.chat-launcher svg { width: 22px; height: 22px; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.chat-launcher i { position: absolute; top: -3px; right: -3px; width: 13px; height: 13px; border: 3px solid #fff; border-radius: 50%; background: var(--orange); }
.chat-launcher.has-unread { animation: chatPulse 1.8s infinite; }
.compare-is-open .chat-launcher { bottom: 112px; }

.chat-panel {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 211;
  width: min(390px, calc(100vw - 28px));
  height: min(650px, calc(100dvh - 120px));
  min-height: 480px;
  display: grid;
  grid-template-rows: auto minmax(0,1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 95px rgba(10,12,17,.32);
  color: var(--text);
  animation: chatEnter .22s ease-out;
}
.chat-panel[hidden] { display: none; }
.compare-is-open .chat-panel { bottom: 176px; }
.chat-head { min-height: 79px; padding: 14px 15px; display: grid; grid-template-columns:auto minmax(0,1fr) auto; align-items: center; gap: 11px; background: radial-gradient(circle at 10% 0,#30333a 0,transparent 35%),linear-gradient(135deg,#17181c,#090a0c); color:#fff; }
.chat-head-mark { position: relative; width: 45px; height: 45px; display: grid; place-items: center; border-radius: 13px; background: var(--orange); font-size: 19px; font-weight: 900; transform: skew(-4deg); box-shadow: 0 8px 20px rgba(247,101,43,.25); }
.chat-head-mark span { transform: skew(4deg); }
.chat-head-mark i { position: absolute; right: -2px; bottom: -2px; width: 12px; height: 12px; border: 3px solid #15161a; border-radius: 50%; background: var(--green); }
.chat-head strong,.chat-head small { display:block; }
.chat-head strong { font-size: 15px; letter-spacing: -.02em; }
.chat-head small { margin-top: 2px; color: #9ea3ad; font-size: 10px; line-height: 1.4; }
.chat-head>button { width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,.08); color:#c9cdd4; font-size:22px; line-height:1; cursor:pointer; }
.chat-head>button:hover { background: rgba(255,255,255,.14); color:#fff; }
.chat-body { position:relative; min-height:0; overflow:hidden; }
.chat-start { height:100%; padding:24px 20px 20px; overflow-y:auto; }
.chat-start[hidden],.chat-conversation[hidden] { display:none; }
.chat-welcome { margin-bottom:19px; }
.chat-welcome>span { color:var(--orange); font-family:var(--mono); font-size:9px; font-weight:700; letter-spacing:.14em; }
.chat-welcome h2 { margin:5px 0 7px; font-size:25px; line-height:1.15; letter-spacing:-.045em; }
.chat-welcome p { margin:0; color:#777e88; font-size:12px; line-height:1.55; }
.chat-start label { display:block; margin-top:13px; }
.chat-start label>span { display:block; margin-bottom:6px; color:#515862; font-size:11px; font-weight:800; }
.chat-start input,.chat-start textarea { width:100%; border:1px solid #dfe3e7; border-radius:11px; background:#f8f9fa; color:var(--text); font-size:13px; outline:0; transition:border .17s,box-shadow .17s,background .17s; }
.chat-start input { height:45px; padding:0 13px; }
.chat-start textarea { min-height:88px; padding:11px 13px; resize:vertical; }
.chat-start input:focus,.chat-start textarea:focus { border-color:rgba(247,101,43,.7); background:#fff; box-shadow:0 0 0 3px rgba(247,101,43,.1); }
.chat-primary { width:100%; height:47px; margin-top:16px; padding:0 15px; display:flex; align-items:center; justify-content:center; gap:9px; border-radius:12px; background:var(--orange); color:#fff; font-size:12px; font-weight:900; cursor:pointer; }
.chat-primary:hover { background:#df511a; }
.chat-primary:disabled,.chat-compose button:disabled { opacity:.58; cursor:wait; }
.chat-primary svg,.chat-compose button svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.chat-conversation { height:100%; min-height:0; display:grid; grid-template-rows:minmax(0,1fr) auto; background:#f4f5f7; }
.chat-messages { min-height:0; padding:17px; display:flex; flex-direction:column; gap:10px; overflow-y:auto; overscroll-behavior:contain; }
.chat-bubble { width:max-content; max-width:84%; padding:10px 12px; align-self:flex-end; border-radius:14px 14px 4px 14px; background:var(--orange); color:#fff; box-shadow:0 6px 20px rgba(21,24,29,.08); }
.chat-bubble.admin { align-self:flex-start; border:1px solid #e0e4e8; border-radius:14px 14px 14px 4px; background:#fff; color:var(--text); }
.chat-bubble>span { display:block; margin-bottom:4px; color:rgba(255,255,255,.7); font-size:8px; font-weight:900; letter-spacing:.07em; text-transform:uppercase; }
.chat-bubble.admin>span { color:var(--orange); }
.chat-bubble p { margin:0; white-space:pre-wrap; overflow-wrap:anywhere; font-size:12px; line-height:1.5; }
.chat-bubble time { display:block; margin-top:5px; color:rgba(255,255,255,.68); font-size:8px; text-align:right; }
.chat-bubble.admin time { color:#979da6; text-align:left; }
.chat-compose { padding:11px; display:grid; grid-template-columns:minmax(0,1fr) 43px; gap:8px; border-top:1px solid #e1e4e8; background:#fff; }
.chat-compose textarea { min-height:43px; max-height:100px; padding:11px 12px; resize:none; border:1px solid #dfe3e7; border-radius:11px; background:#f8f9fa; color:var(--text); font-size:12px; line-height:1.45; outline:0; }
.chat-compose textarea:focus { border-color:rgba(247,101,43,.7); box-shadow:0 0 0 3px rgba(247,101,43,.09); }
.chat-compose button { width:43px; height:43px; display:grid; place-items:center; align-self:end; border-radius:11px; background:var(--orange); color:#fff; cursor:pointer; }
.chat-status { position:absolute; right:12px; bottom:67px; left:12px; z-index:2; margin:0; padding:9px 11px; border:1px solid #dce6ef; border-radius:9px; background:#f2f7fb; color:#52616e; box-shadow:0 8px 25px rgba(20,25,31,.1); font-size:10px; line-height:1.4; text-align:center; }
.chat-status.error { border-color:#f0caca; background:#fff0f0; color:#a32f2f; }
.chat-start:not([hidden])~.chat-status { bottom:13px; }
.chat-foot { min-height:30px; padding:0 15px; display:flex; align-items:center; justify-content:center; gap:6px; border-top:1px solid #eceef1; background:#fafbfc; color:#9298a1; font-size:8px; }
.chat-foot>span:first-child { width:5px; height:5px; border-radius:50%; background:var(--green); }
@keyframes chatEnter { from { opacity:0; transform:translateY(12px) scale(.98); } to { opacity:1; transform:none; } }
@keyframes chatPulse { 0%,100% { box-shadow:0 18px 55px rgba(10,10,12,.28); } 50% { box-shadow:0 18px 55px rgba(10,10,12,.28),0 0 0 9px rgba(247,101,43,.12); } }

@media (max-width: 640px) {
  body.chat-is-open { overflow:hidden; }
  .chat-launcher { right:14px; bottom:14px; min-width:54px; min-height:54px; padding:0; justify-content:center; border-radius:17px; }
  .chat-launcher>span { display:none; }
  .compare-is-open .chat-launcher { bottom:128px; }
  .chat-panel,.compare-is-open .chat-panel { inset:72px 10px 10px; width:auto; height:auto; min-height:0; border-radius:21px; }
  .chat-head { min-height:72px; }
  .chat-start { padding:21px 17px 18px; }
  .chat-messages { padding:14px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .chat-panel,.chat-launcher.has-unread { animation:none; }
}
