:root {
  --bg-primary: #050505;
  --bg-secondary: #0a1020;
  --bg-card: #101522;
  --bg-ink: #070a10;
  --accent-cyan: #00d4ff;
  --accent-blue: #007bff;
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --line: rgba(0, 212, 255, 0.2);
  --line-strong: rgba(0, 212, 255, 0.42);
  --shadow: 0 0 32px rgba(0, 212, 255, 0.18);
  --max: 1180px;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: #030506;
  color: var(--text-primary);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.72) 44%, rgba(0, 0, 0, 0.86)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(5, 5, 5, 0.94)),
    url("/assets/images/t2f-microscope-hero-v1.png") center / cover no-repeat fixed;
  opacity: 0.92;
  z-index: -4;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 4%, rgba(0, 123, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 8% 50%, rgba(0, 212, 255, 0.08), transparent 24rem),
    radial-gradient(ellipse at 50% 100%, rgba(0, 212, 255, 0.11), transparent 58%),
    linear-gradient(rgba(0, 212, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 72%);
  opacity: 0.82;
  z-index: -3;
}

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

img {
  max-width: 100%;
}

main {
  position: relative;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
  background: rgba(3, 7, 12, 0.78);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: Sora, Inter, sans-serif;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.2);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 800;
}

.site-nav a {
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--text-primary);
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 7px;
  font-weight: 800;
  font-size: 14px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--accent-cyan);
  color: #001018;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.42);
}

.button-secondary {
  border: 1px solid rgba(0, 212, 255, 0.45);
  background: rgba(0, 212, 255, 0.04);
  color: var(--text-primary);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  margin-top: -72px;
  padding: 128px 0 44px;
  isolation: isolate;
  background: transparent;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0.52;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-lab-badge {
  position: absolute;
  top: 155px;
  right: max(28px, calc((100vw - var(--max)) / 2 + 24px));
  z-index: 1;
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 8px;
  background: rgba(3, 7, 12, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 26px rgba(0, 212, 255, 0.08);
}

.hero-lab-badge span {
  color: var(--text-primary);
  font-family: Sora, Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.hero-lab-badge strong {
  color: var(--accent-cyan);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.64) 42%, rgba(0, 0, 0, 0.26) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(5, 5, 5, 0.72) 92%);
}

.hero-inner,
.section,
.trust-strip {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.44fr);
  gap: 42px;
  align-items: center;
  min-height: 560px;
}

.hero-copy {
  max-width: 790px;
  min-width: 0;
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Sora, Inter, sans-serif;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 860px;
  font-size: clamp(34px, 3.1vw, 48px);
  font-weight: 700;
  line-height: 1.04;
  text-wrap: balance;
}

h2 {
  font-size: clamp(26px, 2.35vw, 34px);
  font-weight: 700;
  line-height: 1.12;
  text-wrap: balance;
}

h3 {
  font-size: 20px;
  font-weight: 700;
}

p {
  color: var(--text-secondary);
  line-height: 1.65;
}

.hero-lede {
  max-width: 670px;
  margin: 26px 0 0;
  font-size: 18px;
}

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

.hero-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.26);
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.18);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.hero-panel div {
  padding: 20px;
  background: rgba(4, 10, 17, 0.86);
}

.hero-panel span {
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 800;
}

.hero-panel strong {
  display: block;
  margin-top: 10px;
  font-family: Sora, Inter, sans-serif;
  font-size: 20px;
}

.hero-panel p {
  margin: 8px 0 0;
  font-size: 14px;
}

.trust-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: -34px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.18);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46), 0 0 34px rgba(0, 212, 255, 0.12);
}

.trust-strip div {
  position: relative;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(11, 20, 34, 0.9), rgba(6, 12, 20, 0.82)),
    rgba(8, 14, 24, 0.78);
  backdrop-filter: blur(14px);
}

.trust-strip div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.72), transparent);
  opacity: 0.55;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-family: Sora, Inter, sans-serif;
}

.trust-strip span {
  margin-top: 7px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.mobile-repair-console,
.mobile-sticky-cta,
.mobile-expand-button,
.mobile-booking-trigger,
.mobile-info-trigger,
.booking-modal,
.info-modal {
  display: none;
}

.section {
  position: relative;
  padding: 78px 0;
}

.lab-cinema::before,
.services-section::before,
.process::before,
.important-questions::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -56px;
  bottom: -56px;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}

.lab-cinema::before {
  background:
    linear-gradient(180deg, transparent, rgba(2, 9, 14, 0.78) 18%, rgba(2, 9, 14, 0.54) 76%, transparent),
    radial-gradient(circle at 74% 20%, rgba(0, 212, 255, 0.09), transparent 32rem);
}

.services-section::before {
  background:
    linear-gradient(180deg, transparent, rgba(2, 5, 9, 0.7) 22%, rgba(4, 10, 17, 0.72) 80%, transparent),
    radial-gradient(circle at 18% 24%, rgba(0, 123, 255, 0.12), transparent 30rem);
}

.process::before,
.important-questions::before {
  background: linear-gradient(180deg, transparent, rgba(3, 8, 13, 0.58) 18%, rgba(3, 8, 13, 0.62) 82%, transparent);
}

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

.lab-cinema {
  display: grid;
  grid-template-columns: minmax(320px, 0.38fr) minmax(0, 0.62fr);
  gap: 34px;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 86px;
}

.cinema-copy {
  position: relative;
  z-index: 2;
}

.cinema-copy p:not(.eyebrow) {
  max-width: 460px;
  font-size: 18px;
}

.cinema-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.08), transparent),
    rgba(5, 7, 10, 0.82);
  backdrop-filter: blur(8px);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.5), 0 0 52px rgba(0, 212, 255, 0.18);
  transform: translateY(var(--parallax-y, 0));
}

.cinema-stage img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1200ms ease, opacity 900ms ease;
}

.cinema-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 12, 0.55), transparent 45%),
    linear-gradient(180deg, transparent 40%, rgba(3, 7, 12, 0.74));
}

.lab-cinema.is-visible .cinema-stage img {
  transform: scale(1.01);
}

.cinema-panel {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 5px;
  min-width: 126px;
  padding: 14px;
  border: 1px solid rgba(0, 212, 255, 0.26);
  border-radius: 8px;
  background: rgba(3, 7, 12, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.cinema-panel span {
  color: var(--accent-cyan);
  font-size: 11px;
  font-weight: 800;
}

.cinema-panel strong {
  font-family: Sora, Inter, sans-serif;
  font-size: 18px;
}

.cinema-panel-a {
  left: 22px;
  top: 22px;
}

.cinema-panel-b {
  right: 36px;
  top: 44%;
}

.cinema-panel-c {
  left: 42px;
  bottom: 28px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(320px, 0.36fr);
  gap: 16px;
  align-items: stretch;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 184px;
  padding: 22px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(16, 21, 34, 0.82), rgba(7, 11, 18, 0.88)),
    var(--bg-card);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 0%, rgba(0, 212, 255, 0.13), transparent 15rem);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.55);
  box-shadow: var(--shadow);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.06);
  color: var(--accent-cyan);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.board-proof {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.84);
  backdrop-filter: blur(8px);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.46), 0 0 42px rgba(0, 212, 255, 0.16);
}

.board-proof img {
  width: 100%;
  height: 100%;
  min-height: 584px;
  display: block;
  object-fit: cover;
}

.board-proof::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 12, 0.08), rgba(3, 7, 12, 0.78)),
    radial-gradient(circle at 50% 24%, rgba(0, 212, 255, 0.04), transparent 18rem);
}

.board-proof-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: 8px;
  background: rgba(3, 7, 12, 0.74);
  backdrop-filter: blur(16px);
}

.board-proof-copy span,
.board-proof-copy strong {
  display: block;
}

.board-proof-copy span {
  color: var(--accent-cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-proof-copy strong {
  margin-top: 8px;
  font-family: Sora, Inter, sans-serif;
  font-size: 22px;
  line-height: 1.15;
}

.board-proof-copy p {
  margin: 8px 0 0;
  font-size: 14px;
}

.lab-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.78fr);
  gap: 34px;
  align-items: center;
  padding-top: 66px;
  padding-bottom: 74px;
}

.lab-image {
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: 8px;
  background: #05070a;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), var(--shadow);
}

.lab-image img {
  width: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.lab-copy {
  padding: 8px 0;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.proof-list div,
.book-notes div {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(0, 212, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15, 26, 42, 0.84), rgba(7, 12, 20, 0.78)),
    rgba(16, 21, 34, 0.75);
}

.proof-list div::before,
.book-notes div::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 2px;
  background: rgba(0, 212, 255, 0.38);
}

.proof-list strong,
.book-notes strong {
  display: block;
  font-family: Sora, Inter, sans-serif;
  font-size: 18px;
}

.proof-list span,
.book-notes span {
  display: block;
  margin-top: 7px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.45;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  padding: 22px 0 0;
  margin: 0;
  list-style: none;
  overflow: visible;
}

.process-flow::before {
  content: "";
  position: absolute;
  top: 47px;
  left: 44px;
  right: 44px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.18), rgba(0, 212, 255, 0.72), rgba(0, 212, 255, 0.18));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms ease 180ms;
}

.process-flow.is-visible::before,
.process.is-visible .process-flow::before {
  transform: scaleX(1);
}

.process-flow li {
  position: relative;
  min-height: 104px;
  padding: 0;
  background: transparent;
}

.process {
  padding-top: 64px;
  padding-bottom: 36px;
}

.process-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 21px;
  right: -13px;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(0, 212, 255, 0.7);
  border-right: 2px solid rgba(0, 212, 255, 0.7);
  background: transparent;
  transform: rotate(45deg);
}

.process-flow span,
.process-flow strong,
.process-flow em {
  display: block;
}

.process-flow span {
  position: relative;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(0, 212, 255, 0.48);
  border-radius: 50%;
  background: #06101b;
  color: var(--accent-cyan);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.12);
}

.process-flow strong {
  margin-top: 20px;
  font-family: Sora, Inter, sans-serif;
  font-size: 20px;
}

.process-flow em {
  margin-top: 7px;
  color: var(--text-secondary);
  font-size: 13px;
  font-style: normal;
  line-height: 1.4;
}

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

.evidence-section,
.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
  gap: 34px;
  align-items: center;
  padding-top: 64px;
}

.report-visual {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.84);
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), var(--shadow);
}

.report-visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  object-fit: cover;
  opacity: 0.82;
}

.report-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 12, 0.05), rgba(3, 7, 12, 0.42));
}

.report-float {
  position: absolute;
  z-index: 2;
  width: min(240px, 46%);
  padding: 14px;
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 8px;
  background: rgba(3, 7, 12, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.report-float span,
.report-float strong {
  display: block;
}

.report-float span {
  color: var(--accent-cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-float strong {
  margin-top: 6px;
  font-family: Sora, Inter, sans-serif;
  font-size: 14px;
}

.report-float-a {
  left: 20px;
  top: 20px;
}

.report-float-b {
  right: 20px;
  bottom: 20px;
}

.report-copy {
  display: grid;
  gap: 14px;
}

.report-copy > p {
  margin-top: 0;
}

.evidence-card,
.question-grid a,
.tracking-panel {
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 21, 34, 0.78), rgba(7, 11, 18, 0.88));
  backdrop-filter: blur(14px);
}

.evidence-card,
.question-grid a {
  padding: 20px;
}

.evidence-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-card p,
.question-grid span {
  margin-bottom: 0;
}

.tracking-section,
.warranty-band {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(260px, 0.26fr) minmax(0, 0.32fr);
  gap: 28px;
  align-items: center;
}

.question-grid strong,
.question-grid span {
  display: block;
}

.question-grid strong {
  font-family: Sora, Inter, sans-serif;
  font-size: 19px;
}

.question-grid span {
  margin-top: 10px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.tracking-copy {
  max-width: 540px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent-cyan);
  font-weight: 800;
}

.tracking-panel {
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38), var(--shadow);
}

.tracking-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 20px;
}

.tracking-preview label {
  display: grid;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 800;
}

.tracking-preview input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 7px;
  padding: 0 13px;
  background: rgba(2, 5, 9, 0.82);
  color: var(--text-primary);
  font: inherit;
}

.tracking-status {
  grid-column: 1 / -1;
  padding: 20px;
  border: 1px solid rgba(0, 212, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.06);
}

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

.tracking-status small {
  color: var(--accent-cyan);
  font-weight: 800;
  text-transform: uppercase;
}

.tracking-status strong {
  margin-top: 8px;
  font-family: Sora, Inter, sans-serif;
  font-size: 26px;
}

.tracking-status span {
  margin-top: 8px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.warranty-band {
  padding: 44px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(10, 16, 32, 0.82), rgba(5, 5, 5, 0.88)),
    var(--bg-secondary);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.warranty-band p {
  margin-bottom: 0;
}

.warranty-band .button {
  justify-self: end;
}

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

.question-grid a {
  min-height: 150px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.question-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: var(--shadow);
}

.book-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.4fr) minmax(0, 0.6fr);
  gap: 28px;
  align-items: start;
}

.book-copy {
  position: sticky;
  top: 112px;
}

.book-notes {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.booking-shell {
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.32);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48), var(--shadow);
}

.booking-shell-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.18);
  background: rgba(10, 16, 32, 0.96);
}

.booking-shell-top span {
  padding: 6px 10px;
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 999px;
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 800;
}

.booking-shell iframe {
  width: 100%;
  height: 780px;
  border: 0;
  display: block;
  background: #05070a;
}

.booking-modal[hidden],
.info-modal[hidden] {
  display: none;
}

.design-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(320px, 0.45fr);
  gap: 28px;
  align-items: center;
  padding-top: 40px;
}

.design-strip img {
  width: 100%;
  min-height: 300px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.faq {
  max-width: 900px;
}

details {
  border-bottom: 1px solid rgba(0, 212, 255, 0.18);
  padding: 20px 0;
}

summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 20px;
}

details p {
  margin-bottom: 0;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 70px;
  padding: 44px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(10, 16, 32, 0.82), rgba(5, 5, 5, 0.9)),
    var(--bg-secondary);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 720px;
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) 1fr;
  gap: 28px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 38px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(0, 212, 255, 0.16);
  color: var(--text-secondary);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--text-primary);
  font-family: Sora, Inter, sans-serif;
  font-size: 20px;
}

.site-footer span {
  margin-top: 8px;
  line-height: 1.55;
}

.site-footer .trade-note {
  color: var(--accent-cyan);
  font-size: 13px;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  font-size: 13px;
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--text-primary);
}

.page-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 80px;
}

.page-hero {
  padding: 72px 0 42px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(44px, 6vw, 76px);
}

.page-hero p {
  max-width: 760px;
  font-size: 18px;
}

.status-card,
.policy-card {
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 21, 34, 0.9), rgba(7, 11, 18, 0.96));
  box-shadow: var(--shadow);
}

.status-card {
  display: grid;
  gap: 22px;
  padding: 34px;
}

.status-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.status-grid div,
.policy-grid article {
  padding: 20px;
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 9, 15, 0.74);
}

.status-grid strong,
.status-grid span,
.policy-grid strong,
.policy-grid span {
  display: block;
}

.status-grid span,
.policy-grid span {
  margin-top: 8px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.policy-card {
  padding: 34px;
}

.policy-card section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 212, 255, 0.14);
}

.policy-card h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.policy-card li {
  margin: 10px 0;
  color: var(--text-secondary);
  line-height: 1.65;
}

.notice-box {
  padding: 18px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.06);
  color: var(--text-secondary);
  line-height: 1.6;
}

.quote-response-page {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
}

.quote-response-card {
  width: min(760px, 100%);
  padding: 42px;
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(16, 21, 34, 0.92), rgba(7, 11, 18, 0.98)),
    var(--bg-card);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46), var(--shadow);
}

.quote-response-card[hidden] {
  display: none;
}

.quote-response-card h1 {
  font-size: clamp(34px, 4.4vw, 58px);
}

.quote-lede {
  margin: 20px 0 0;
  font-size: 18px;
}

.quote-lede strong {
  color: var(--text-primary);
  font-family: Sora, Inter, sans-serif;
}

.quote-response-card .notice-box {
  margin-top: 26px;
  color: var(--text-primary);
  font-weight: 700;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.quote-actions .button,
.quote-response-card > .button {
  border: 0;
  cursor: pointer;
}

.quote-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 780ms ease, transform 780ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.service-card.reveal,
.process-flow li.reveal,
.cinema-panel {
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.faq-page {
  width: min(1040px, calc(100% - 32px));
}

.faq-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 42px;
}

.faq-index a {
  padding: 10px 13px;
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.05);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 800;
}

.faq-index a:hover {
  color: var(--text-primary);
  border-color: rgba(0, 212, 255, 0.48);
}

.faq-category {
  scroll-margin-top: 110px;
  margin-top: 34px;
  padding: 30px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 14, 24, 0.74);
}

.faq-category + .faq-category {
  margin-top: 22px;
}

.faq-category h2 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(28px, 3.4vw, 44px);
}

.faq-category details:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

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

  .menu-button {
    display: inline-flex;
    justify-self: end;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(0, 212, 255, 0.35);
    border-radius: 7px;
    background: rgba(0, 212, 255, 0.05);
    color: var(--text-primary);
    font-weight: 800;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 8px;
  }

  .site-nav.is-open a {
    padding: 13px 4px;
    border-top: 1px solid rgba(0, 212, 255, 0.12);
  }

  .hero-inner,
  .lab-showcase,
  .lab-cinema,
  .evidence-section,
  .trust-section,
  .book-section,
  .design-strip,
  .service-layout,
  .tracking-section,
  .warranty-band,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-panel {
    max-width: 620px;
  }

  .book-copy {
    position: static;
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip {
    margin-top: -18px;
  }

  .board-proof img {
    min-height: 420px;
  }

  .process-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-flow li:nth-child(3)::after {
    display: none;
  }

  .warranty-band .button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  :root {
    --mobile-hero-image-opacity: 0.86; /* Rollback values: 0.78 or 0.7 */
  }

  body {
    padding-bottom: 76px;
  }

  .reveal {
    opacity: 0.18;
    transform: translateY(22px) scale(0.99);
  }

  .hero-inner,
  .section,
  .trust-strip,
  .mobile-repair-console,
  .site-header {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    margin-top: 12px;
  }

  .hero-copy,
  .hero-lede,
  .trust-strip div,
  .trust-strip span {
    max-width: 100%;
  }

  .brand span {
    font-size: 15px;
  }

  .hero {
    margin-top: -68px;
    padding-top: 104px;
    padding-bottom: 34px;
  }

  .hero-lab-badge {
    display: none;
  }

  .hero-bg img {
    object-position: 64% center;
    opacity: var(--mobile-hero-image-opacity);
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.46)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(5, 5, 5, 0.9) 88%);
  }

  .hero-copy {
    padding-top: 18px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.04;
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions .button-secondary {
    display: none;
  }

  .hero-panel {
    display: none;
  }

  .service-card,
  .process-flow li {
    min-height: auto;
  }

  .service-card {
    padding: 18px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .proof-list,
  .question-grid,
  .tracking-preview {
    grid-template-columns: 1fr;
  }

  .board-proof img {
    min-height: 330px;
  }

  .board-proof {
    display: none;
  }

  .board-proof-copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .board-proof-copy strong {
    font-size: 18px;
  }

  .report-visual {
    min-height: 340px;
  }

  .report-visual img {
    min-height: 340px;
  }

  .report-float {
    width: min(210px, 64%);
  }

  .process-flow {
    grid-template-columns: 1fr;
    overflow: hidden;
    border-color: rgba(0, 212, 255, 0.18);
    background: rgba(8, 14, 24, 0.46);
  }

  .process-flow li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2px 12px;
    align-items: center;
    min-height: 70px;
    padding: 13px 16px;
    background: rgba(7, 11, 18, 0.36);
  }

  .process-flow li + li {
    border-top: 1px solid rgba(0, 212, 255, 0.15);
    border-left: 0;
  }

  .process-flow li:nth-child(3)::after {
    display: block;
  }

  .process-flow li:not(:last-child)::after {
    top: auto;
    right: 16px;
    bottom: 24px;
    left: auto;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(0, 212, 255, 0.54);
    border-bottom: 2px solid rgba(0, 212, 255, 0.54);
    border-top: 0;
    background: transparent;
    transform: rotate(45deg);
  }

  .process-flow span {
    grid-row: span 2;
    padding: 5px 8px;
    font-size: 10px;
  }

  .process-flow strong {
    margin-top: 0;
    font-size: 18px;
  }

  .process-flow em {
    margin-top: 0;
    font-size: 12px;
  }

  .process-flow li.is-active {
    background:
      linear-gradient(90deg, rgba(0, 212, 255, 0.16), rgba(7, 11, 18, 0.44)),
      rgba(7, 11, 18, 0.62);
    box-shadow: inset 2px 0 0 rgba(0, 212, 255, 0.8);
  }

  .process-flow li.is-active span {
    background: var(--accent-cyan);
    color: #001018;
    box-shadow: 0 0 26px rgba(0, 212, 255, 0.42);
  }

  .process .section-heading {
    margin-bottom: 24px;
  }

  .process .section-heading h2 {
    font-size: 36px;
  }

  .process .section-heading p:not(.eyebrow) {
    max-width: 34ch;
    font-size: 16px;
  }

  .section {
    padding: 46px 0;
  }

  .trust-strip {
    margin-top: 8px;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 8px;
  }

  .trust-strip div {
    min-height: 58px;
    padding: 12px 8px;
    background:
      linear-gradient(180deg, rgba(11, 20, 34, 0.9), rgba(6, 12, 20, 0.78)),
      rgba(8, 14, 24, 0.72);
  }

  .trust-strip strong {
    font-size: 11px;
    line-height: 1.28;
    text-align: center;
  }

  .trust-strip span {
    display: none;
  }

  .mobile-repair-console {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 14px auto 0;
  }

  .mobile-repair-console a {
    min-height: 84px;
    padding: 14px;
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(12, 22, 36, 0.86), rgba(4, 10, 17, 0.78)),
      rgba(6, 12, 20, 0.74);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  }

  .mobile-repair-console span,
  .mobile-repair-console strong {
    display: block;
  }

  .mobile-repair-console span {
    color: var(--accent-cyan);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-repair-console strong {
    margin-top: 9px;
    font-family: Sora, Inter, sans-serif;
    font-size: 15px;
    line-height: 1.2;
  }

  .mobile-expand-button {
    position: relative;
    display: grid;
    width: 100%;
    margin-top: 18px;
    padding: 16px 48px 16px 16px;
    border: 1px solid rgba(0, 212, 255, 0.28);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(6, 12, 20, 0.9)),
      rgba(8, 14, 24, 0.82);
    color: var(--text-primary);
    text-align: left;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
    cursor: pointer;
  }

  .mobile-expand-button::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(0, 212, 255, 0.36);
    border-radius: 50%;
    color: var(--accent-cyan);
    font-size: 20px;
    font-weight: 800;
    transform: translateY(-50%);
  }

  [data-mobile-collapsible].is-mobile-open .mobile-expand-button::after {
    content: "-";
  }

  .mobile-expand-button span,
  .mobile-expand-button strong {
    display: block;
  }

  .mobile-expand-button span {
    color: var(--accent-cyan);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-expand-button strong {
    margin-top: 7px;
    font-family: Sora, Inter, sans-serif;
    font-size: 16px;
    line-height: 1.25;
  }

  [data-mobile-collapsible] {
    overflow: hidden;
  }

  [data-mobile-collapsible]:not(.is-mobile-open) {
    padding-bottom: 22px;
  }

  [data-mobile-collapsible]:not(.is-mobile-open)::before {
    display: none;
  }

  [data-mobile-collapsible]:not(.is-mobile-open) .section-heading {
    margin-bottom: 0;
  }

  .process:not(.is-mobile-open) .process-flow,
  .evidence-section:not(.is-mobile-open) .report-visual,
  .trust-section:not(.is-mobile-open) .report-visual,
  .evidence-section:not(.is-mobile-open) .evidence-card,
  .trust-section:not(.is-mobile-open) .evidence-card {
    height: 0;
    min-height: 0;
    max-height: 0;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .process .process-flow,
  .evidence-section .report-visual,
  .trust-section .report-visual,
  .evidence-section .evidence-card,
  .trust-section .evidence-card {
    max-height: 1200px;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 420ms ease, opacity 260ms ease, transform 320ms ease, margin 320ms ease, padding 320ms ease;
  }

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

  .section-heading p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.5;
  }

  .lab-cinema {
    padding-top: 48px;
    padding-bottom: 42px;
    gap: 20px;
  }

  .lab-showcase,
  .evidence-section,
  .trust-section,
  .tracking-section,
  .book-section {
    gap: 22px;
  }

  .lab-cinema::before,
  .services-section::before,
  .process::before,
  .important-questions::before {
    top: -28px;
    bottom: -28px;
  }

  .cinema-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.5;
  }

  .cinema-stage {
    min-height: 360px;
  }

  .cinema-stage img {
    min-height: 360px;
  }

  .cinema-panel {
    min-width: auto;
    padding: 10px 12px;
  }

  .cinema-panel strong {
    font-size: 14px;
  }

  .cinema-panel-a {
    left: 14px;
    top: 14px;
  }

  .cinema-panel-b {
    right: 14px;
    top: 42%;
  }

  .cinema-panel-c {
    left: 14px;
    bottom: 14px;
  }

  .service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 12px;
    align-items: center;
    padding: 16px;
  }

  .service-icon {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    margin-bottom: 0;
  }

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

  .service-card h3 {
    font-size: 17px;
  }

  .service-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
  }

  .service-grid,
  .proof-list,
  .question-grid,
  .book-notes {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-left: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 1px 2px 12px;
  }

  .service-grid::-webkit-scrollbar,
  .proof-list::-webkit-scrollbar,
  .question-grid::-webkit-scrollbar,
  .book-notes::-webkit-scrollbar {
    display: none;
  }

  .service-card,
  .proof-list div,
  .question-grid a,
  .book-notes div {
    flex: 0 0 min(82%, 330px);
    scroll-snap-align: start;
  }

  .question-grid a {
    min-height: 128px;
  }

  .proof-list div,
  .book-notes div {
    min-height: 104px;
  }

  .lab-image img {
    min-height: 320px;
  }

  .lab-copy p:not(.eyebrow),
  .report-copy > p,
  .tracking-copy p:not(.eyebrow),
  .book-copy p:not(.eyebrow),
  .warranty-band p,
  .final-cta p {
    font-size: 15px;
    line-height: 1.5;
  }

  .evidence-card p,
  .question-grid span,
  .book-notes span {
    font-size: 13px;
    line-height: 1.42;
  }

  .booking-shell iframe {
    height: 760px;
  }

  .booking-shell-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .book-section > .booking-shell {
    display: none;
  }

  .book-copy [data-booking-fallback] {
    display: none;
  }

  .mobile-booking-trigger {
    display: inline-flex;
    margin-top: 18px;
  }

  .mobile-info-trigger {
    display: inline-flex;
    margin-top: 18px;
  }

  .tracking-section .tracking-panel {
    display: none;
  }

  .warranty-band > p,
  .warranty-band > div p,
  .warranty-band > [data-warranty-link] {
    display: none;
  }

  body.is-booking-modal-open,
  body.is-info-modal-open {
    overflow: hidden;
  }

  .booking-modal,
  .info-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    align-items: end;
    padding: 14px 12px 86px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
  }

  .booking-modal-card,
  .info-modal-card {
    overflow: hidden;
    max-height: min(82vh, 760px);
    border: 1px solid rgba(0, 212, 255, 0.34);
    border-radius: 8px;
    background: rgba(5, 7, 10, 0.98);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.62), 0 0 34px rgba(0, 212, 255, 0.2);
  }

  .booking-modal .booking-shell-top,
  .info-modal .booking-shell-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .booking-modal-close {
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 7px;
    background: rgba(0, 212, 255, 0.06);
    color: var(--text-primary);
    font: inherit;
    font-size: 12px;
    font-weight: 800;
  }

  .booking-modal iframe {
    width: 100%;
    height: calc(min(82vh, 760px) - 62px);
    border: 0;
    display: block;
    background: #05070a;
  }

  .info-modal .tracking-preview {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .info-modal-copy {
    padding: 20px;
  }

  .info-modal-copy h2 {
    font-size: 26px;
  }

  .info-modal-copy p {
    font-size: 15px;
    line-height: 1.55;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.26);
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.52), 0 0 28px rgba(0, 212, 255, 0.16);
    backdrop-filter: blur(18px);
  }

  .mobile-sticky-cta a {
    display: grid;
    place-items: center;
    min-height: 48px;
    background: rgba(3, 7, 12, 0.92);
    color: var(--text-primary);
    font-family: Sora, Inter, sans-serif;
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-sticky-cta a:first-child {
    background: var(--accent-cyan);
    color: #001018;
  }

  .status-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .status-card,
  .policy-card {
    padding: 24px;
  }

  .final-cta {
    padding: 28px;
  }

  .quote-response-card {
    padding: 26px;
  }

  .quote-actions {
    display: grid;
  }

  .warranty-band,
  .faq-category {
    padding: 24px;
  }
}

@keyframes mobileImageFocus {
  from {
    opacity: 0.68;
    filter: saturate(0.72) brightness(0.76);
  }
  to {
    opacity: 1;
    filter: saturate(1.08) brightness(1);
  }
}

@keyframes mobileGlowTrace {
  from {
    box-shadow: 0 0 0 rgba(0, 212, 255, 0);
  }
  to {
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36), 0 0 32px rgba(0, 212, 255, 0.2);
  }
}

@supports (animation-timeline: view()) {
  @media (max-width: 680px) {
    .cinema-stage img,
    .board-proof img,
    .lab-image img,
    .report-visual img {
      animation: mobileImageFocus both linear;
      animation-timeline: view();
      animation-range: entry 0% cover 42%;
    }

    .cinema-stage,
    .board-proof,
    .lab-image,
    .report-visual,
    .tracking-panel,
    .booking-shell,
    .warranty-band {
      animation: mobileGlowTrace both linear;
      animation-timeline: view();
      animation-range: entry 0% cover 38%;
    }
  }
}

