/* ============================================================
   FixHub Martin — v19 Futuristic
   深空基底 · 霓虹光效 · 玻璃拟态
   ============================================================ */
:root {
  --bg: #080b12;
  --bg-soft: #0e1524;
  --card: #121a2b;
  --card-solid: #0e1626;
  --navy: #05080f;
  --cyan: #3f93cf;
  --cyan-bright: #6bb4e6;
  --cyan-soft: rgba(63, 147, 207, .10);
  --violet: #5aa0d6;
  --violet-soft: rgba(90, 160, 214, .12);
  --pink: #ff5fa2;
  --amber: #ffc16b;
  --text: #eef3fb;
  --muted: #95a6bf;
  --line: rgba(255, 255, 255, .08);
  --line-strong: rgba(63, 147, 207, .30);
  --glow: 0 0 20px rgba(63, 147, 207, .26);
  --glow-soft: 0 0 12px rgba(63, 147, 207, .16);
  --shadow: 0 20px 50px rgba(0, 0, 0, .5);
  --max: 1160px;
  --header: 76px;
  --radius: 16px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 22px); }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.62;
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
main, section, .container, .hero-copy { min-width: 0; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.container { width: min(calc(100% - 44px), var(--max)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; transform: translateY(-180%); padding: 10px 16px; color: var(--navy); background: var(--cyan); border-radius: 10px; font-weight: 800; box-shadow: var(--glow); }
.skip-link:focus { transform: none; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header);
  color: var(--white);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(5,7,15,.85), rgba(5,7,15,0));
  backdrop-filter: blur(10px);
  transition: background .3s ease, height .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 10px 34px rgba(0,0,0,.5), 0 1px 0 var(--line); }
.header-inner { height: 100%; display: flex; align-items: center; }
.header-right { display: flex; align-items: center; gap: 6px; }
.wordmark { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; }
.wordmark-logo { height: 38px; width: auto; flex: none; }
.wordmark > span { font-size: 23px; color: var(--text); }
.wordmark small { font-size: 12px; letter-spacing: .13em; opacity: .85; }
.site-nav { display: flex; align-items: center; gap: 20px; font-size: 13px; font-weight: 650; }
.site-nav > a:not(.nav-cta) { color: rgba(233,242,255,.85); transition: color .2s ease, text-shadow .2s ease; }
.site-nav > a:not(.nav-cta):hover { color: var(--cyan); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 42px; padding: 0 18px;
  border-radius: 999px; font-weight: 850; font-size: 13px;
  transition: transform .2s var(--ease), box-shadow .2s ease, filter .2s ease;
}
.nav-cta:hover { transform: translateY(-1px); filter: brightness(1.1); }
.lang-dropdown { position: relative; margin-left: 14px; }
.lang-select {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 10px;
  min-width: 132px; min-height: 38px; padding: 0 12px 0 14px;
  border: 1.5px solid rgba(0,229,255,.45); border-radius: 8px;
  font: inherit; font-size: 12.5px; font-weight: 750;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.lang-select:hover, .lang-dropdown.open .lang-select { border-color: var(--cyan); box-shadow: var(--glow-soft); }
.lang-select:focus { outline: none; border-color: var(--cyan); box-shadow: var(--glow-soft); }
.lang-label { display: inline-flex; align-items: center; gap: 7px; }
.lang-label::before { font-size: 13px; }
.lang-caret {
  display: inline-grid; place-items: center;
  width: 20px; height: 20px; border-radius: 5px;
  font-size: 10px;
  transition: transform .2s var(--ease), background .2s ease;
}
.lang-dropdown.open .lang-caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 200;
  min-width: 100%; padding: 6px;
  border: 1px solid rgba(0,229,255,.35); border-radius: 10px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .15s var(--ease), transform .15s var(--ease), visibility .15s;
}
.lang-dropdown.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu button {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; padding: 9px 12px;
  border: 0; border-radius: 7px; background: transparent;
  font: inherit; font-size: 13px; font-weight: 700;
  cursor: pointer; text-align: left; white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.lang-menu button[aria-selected="true"] { color: var(--cyan); }
.lang-menu button[aria-selected="true"]::after { content: "✓"; color: var(--cyan); font-size: 11px; }
.menu-button { display: none; background: transparent; color: var(--text); }
.menu-button > span:not(.sr-only) { display: block; height: 2px; background: currentColor; border-radius: 2px; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 700px; height: min(88vh, 860px);
  color: var(--text); background: var(--bg); overflow: hidden;
  display: flex; align-items: center;
}
.hero-photo {
  position: absolute; background: url("assets/repair-hero-1280.webp") center / cover no-repeat;
  }
.hero-shade {
  position: absolute; inset: 0;
  }
.hero-inner { position: relative; z-index: 1; padding-top: var(--header); display: flex; }
.hero-copy { width: min(760px, 100%); }
.eyebrow, .section-kicker { margin: 0 0 18px; font-size: 11px; line-height: 1; text-transform: uppercase; letter-spacing: .24em; font-weight: 800; }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { display: inline-block; width: 34px; height: 2px; border-radius: 2px; }
.hero h1 {
  margin: 0; font-size: clamp(46px, 5.6vw, 78px); line-height: 1.02; letter-spacing: -.06em; font-weight: 900;
  text-wrap: balance;
}
.hero h1 span {
  filter: drop-shadow(0 2px 14px rgba(63, 147, 207,.18));
}
.hero-lede { max-width: 560px; margin: 24px 0 0; font-size: 16.5px; line-height: 1.85; text-wrap: balance; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.button {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 12px;
  padding: 0 24px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 800; font-size: 14px;
  transition: transform .2s var(--ease), box-shadow .25s ease, filter .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: var(--navy); background: linear-gradient(90deg, var(--cyan), #4df3ff);
  box-shadow: var(--glow);
}
.button-ghost {
  backdrop-filter: blur(6px);
}
.button-ghost:hover { box-shadow: var(--glow-soft); }

/* ---------- quick strip ---------- */
.quick-strip { position: relative; z-index: 2; margin-top: 0; background: rgba(5, 13, 21, .96); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quick-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.quick-grid > div {
  display: flex; align-items: center; gap: 16px;
  min-height: 116px; padding: 24px clamp(20px, 3vw, 34px);
  border-left: 1px solid var(--line);
  transition: background .22s ease;
}
.quick-grid > div:first-child { border-left: 0; }
.quick-grid .q-ico {
  display: grid; place-items: center;
  width: 44px; height: 44px; flex: 0 0 auto;
  border: 1px solid rgba(39, 215, 242, .28);
  border-radius: 12px;
}
.q-ico svg, .trust-ico svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.quick-copy { min-width: 0; }
.quick-grid strong { display: block; font-size: 14.5px; letter-spacing: -.01em; }
.quick-copy > span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.55; }

/* ---------- section base ---------- */
.section { padding: 104px 0; position: relative; }
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 52px;
}
.section-kicker { margin: 0 0 16px; font-size: 11px; line-height: 1; text-transform: uppercase; letter-spacing: .24em; font-weight: 800; }
.section-heading h2 {
  margin: 0; font-size: clamp(32px, 4.2vw, 50px); line-height: 1.08; letter-spacing: -.045em;
  text-wrap: balance; color: var(--text);
}
.section-heading .section-kicker { grid-column: 1; }
.section-heading h2 { grid-column: 1; }
.section-heading > p:last-child {
  grid-column: 2; grid-row: 1 / span 2; align-self: end;
  margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.85;
  border-left: 1px solid var(--line); padding-left: 26px;
  text-wrap: pretty;
}

/* ---------- services ---------- */
.services { background: transparent; }
.device-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.device-card {
  display: flex; min-width: 0; flex-direction: column; background: var(--card);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 34px rgba(0,0,0,.32);
  transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease;
}
.device-card:hover { transform: translateY(-6px); }
.device-card-top { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 9px; letter-spacing: .15em; font-weight: 800; }
.device-card-top b { color: var(--cyan); font-size: 9px; }
.device-glyph { color: var(--cyan); perspective: 900px; }
.device-glyph img { object-fit: contain; filter: drop-shadow(0 14px 30px rgba(0,0,0,.55)) drop-shadow(0 0 18px rgba(0,229,255,.28)); transition: transform .7s var(--ease), filter .5s ease; }
.device-card:hover .device-glyph img { transform: rotateY(-10deg) rotateX(6deg) scale(1.06); filter: drop-shadow(0 18px 36px rgba(0,0,0,.6)) drop-shadow(0 0 26px rgba(0,229,255,.45)); }
.js .device-card .device-glyph img { transform: rotateY(-55deg) rotateX(18deg) scale(.7); opacity: 0; }
.js .device-card.visible .device-glyph img { transform: rotateY(0deg) rotateX(0deg) scale(1); opacity: 1; }
.device-card h3 { margin: 0; letter-spacing: -.03em; color: var(--text); }
.device-card > p { margin: 10px 0 16px; color: var(--muted); font-size: 12.5px; line-height: 1.7; }
.device-card ul { display: grid; gap: 7px; list-style: none; margin: 0 0 20px; padding: 0; font-size: 11.5px; }
.device-card li { position: relative; padding-left: 15px; line-height: 1.5; }
.device-card li::before { content: ""; position: absolute; top: .55em; left: 0; width: 5px; height: 5px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 8px var(--cyan); }
.device-card > a { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 15px; border-top: 1px solid var(--line); font-size: 11.5px; font-weight: 800; color: var(--cyan); }
.device-card > a span { transition: transform .2s var(--ease); }
.device-card > a:hover { text-shadow: 0 0 10px rgba(0,229,255,.6); }
.device-card > a:hover span { transform: translate(2px,-2px); }

/* ---------- pricing ---------- */
.pricing { background: transparent; }
.repair-table { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; backdrop-filter: blur(12px); box-shadow: 0 14px 40px rgba(0,0,0,.35); }
.repair-table-head, .repair-row { display: grid; grid-template-columns: minmax(260px, 1.05fr) minmax(280px, 1.15fr) minmax(190px, .5fr); }
.repair-table-head { min-height: 48px; align-items: center; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.repair-table-head span { padding: 0 22px; }
.repair-row { min-height: 128px; align-items: stretch; border-bottom: 1px solid var(--line); transition: background .2s ease; }
.repair-row:last-child { border-bottom: 0; }
.repair-row > * { margin: 0; padding: 24px 22px; }
.repair-row > *:not(:last-child) { border-right: 1px solid var(--line); }
.repair-problem { display: flex; gap: 15px; align-items: flex-start; }
.repair-problem i { flex: 0 0 auto; display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid rgba(0,229,255,.3); border-radius: 50%; font-size: 9px; font-style: normal; font-weight: 800; }
.repair-problem h3 { margin: 1px 0 7px; font-size: 17px; letter-spacing: -.02em; color: var(--text); }
.repair-problem p, .repair-solution { color: var(--muted); font-size: 12.5px; line-height: 1.7; }
.repair-solution { display: flex; flex-direction: column; justify-content: center; }
.repair-solution span { display: none; }
.repair-price { display: flex; flex-direction: column; justify-content: center; }
.repair-price small { margin-bottom: 6px; color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.repair-price strong { font-size: 23px; line-height: 1.15; letter-spacing: -.03em; white-space: nowrap; font-weight: 900; }
.repair-price span { margin-top: 7px; color: var(--muted); font-size: 10px; line-height: 1.55; }
.price-note { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-top: 18px; padding: 18px 22px; color: var(--muted); border-radius: var(--radius); font-size: 12.5px; line-height: 1.7; }
.price-note b { color: var(--text); }
.price-note .sources { display: flex; gap: 14px; font-size: 11px; }
.price-note .sources a { color: var(--cyan); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.price-note .sources a:hover { color: var(--violet); }

/* ---------- symptom guide ---------- */
.symptoms { background: transparent; }
.symptom-finder { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--card); backdrop-filter: blur(12px); box-shadow: 0 14px 40px rgba(0,0,0,.35); }
.sf-tabs { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px 18px; }
.sf-tab { padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 800; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.sf-body { display: grid; grid-template-columns: 1.15fr .85fr; }
.sf-symptoms { display: grid; list-style: none; margin: 0; padding: 0; }
.sf-symptoms button { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 19px 22px; background: transparent; border: 0; cursor: pointer; font-size: 14px; font-weight: 700; text-align: left; transition: background .2s ease, color .2s ease; }
.sf-symptoms li:last-child button { border-bottom: 0; }
.sf-symptoms button i { font-style: normal; color: var(--cyan); font-size: 12px; transition: transform .2s var(--ease); }
.sf-symptoms button:hover i { transform: translateX(3px); }
.sf-result { display: flex; flex-direction: column; justify-content: center; gap: 16px; padding: 34px 32px; }
.sf-default { margin: 0; color: var(--muted); font-size: 14px; }
.sf-tip h4 { margin: 0 0 10px; color: var(--cyan); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; text-shadow: 0 0 10px rgba(0,229,255,.4); }
.sf-tip p { margin: 0; font-size: 14.5px; line-height: 1.8; }
.sf-cta { display: inline-flex; align-items: center; justify-content: space-between; gap: 14px; width: fit-content; min-height: 46px; padding: 0 18px; border-radius: 999px; font-size: 13px; font-weight: 850; box-shadow: var(--glow-soft); transition: transform .2s var(--ease), box-shadow .25s ease, filter .2s ease; }
.sf-cta:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: var(--glow); }

/* ---------- IG cases ---------- */
.ig-cases { color: var(--text); background: linear-gradient(180deg, rgba(10,18,32,.4), rgba(5,7,15,0)); }
.ig-cases .section-heading > p { color: var(--muted); }
.ig-case-grid { display: grid; }
.ig-case-card { min-width: 0; overflow: hidden; color: var(--text); background: var(--card); border: 1px solid var(--line); backdrop-filter: blur(12px); box-shadow: 0 12px 34px rgba(0,0,0,.32); transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease; }
.ig-case-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.9); }
.ig-case-card > div { padding: 20px 20px 22px; }
.ig-case-card span { font-size: 9px; font-weight: 850; letter-spacing: .13em; }
.ig-case-card h3 { line-height: 1.3; letter-spacing: -.02em; }
.ig-case-card p { margin: 0 0 16px; font-size: 12px; line-height: 1.65; }
.ig-case-card b { justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line); font-size: 10px; }
.ig-case-card:hover b { text-shadow: 0 0 10px rgba(0,229,255,.5); }
.ig-case-featured { display: grid; grid-template-columns: .8fr 1.2fr; }
.ig-case-featured > img { height: 100%; aspect-ratio: auto; }
.ig-case-featured > div { display: flex; flex-direction: column; justify-content: center; }
.ig-source-note { margin: 20px 0 0; font-size: 11px; }
.ig-source-note a { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.ig-source-note a:hover { color: var(--violet); }

/* ---------- how it works ---------- */
.how { background: transparent; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; list-style: none; margin: 0; padding: 0; }
.process-list li { padding: 26px 22px 22px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); backdrop-filter: blur(12px); transition: transform .22s var(--ease), border-color .25s ease, box-shadow .25s ease; }
.process-list li:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--glow-soft); }
.process-icon-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.process-icon { display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid rgba(29,220,255,.34); border-radius: 15px; }
.process-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.process-number { font: 750 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .14em; }
.process-list h3 { margin: 0 0 8px; font-size: 17px; }
.process-list p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.7; }

/* ---------- video ---------- */
.video { background: transparent; }
.video-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.video-frame video { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--glow-soft), 0 24px 60px rgba(0,0,0,.5); border: 1px solid var(--line); }
.video-note { margin: 12px 2px 0; color: var(--muted); font-size: 11px; }
.video-copy h2 { margin: 0; font-size: clamp(30px, 4vw, 46px); line-height: 1.12; letter-spacing: -.04em; color: var(--text); }
.video-copy > p:not(.section-kicker) { margin: 18px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.8; }

/* ---------- location ---------- */
.location { background: transparent; }
.location-card { display: flex; align-items: center; justify-content: space-between; gap: 26px; margin-bottom: 16px; padding: 26px 28px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); backdrop-filter: blur(12px); }
.location-address strong { display: block; font-size: 22px; letter-spacing: -.02em; color: var(--text); }
.location-address span { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; }
.map-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.map-buttons a { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 18px; border: 1.5px solid var(--line-strong); border-radius: 999px; font-size: 13px; font-weight: 800; transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .25s ease, transform .2s var(--ease); }
.map-buttons a:hover { transform: translateY(-2px); }
.location-note { margin: 12px 2px 0; color: var(--muted); font-size: 11px; }
.location-map { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.location-map iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ---------- about ---------- */
.about { background: transparent; }
.about-grid { display: grid; gap: 64px; align-items: center; }
.brand-visual { margin: 0; }
.brand-visual img { width: 100%; box-shadow: var(--glow-soft), 0 18px 48px rgba(0,0,0,.45); }
.brand-visual img[src*="martin-logo"] { aspect-ratio: 1 / 1; object-fit: contain; padding: 18px; border: 1px solid var(--line); }
.brand-visual figcaption { margin-top: 12px; color: var(--muted); font-size: 9px; letter-spacing: .18em; }
.about-copy > p:not(.section-kicker) { margin: 20px 0 0; color: var(--muted); font-size: 15px; line-height: 1.9; }
.about-copy blockquote { margin: 26px 0; padding: 16px 0 16px 20px; border-left: 3px solid var(--cyan); border-radius: 0 12px 12px 0; font-size: 17px; font-weight: 750; }
.about-links { display: flex; gap: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.about-links a { display: flex; gap: 14px; font-size: 12.5px; font-weight: 750; }
.about-links a:hover { color: var(--violet); text-decoration: underline; text-underline-offset: 4px; }

/* ---------- faq ---------- */
.faq { background: transparent; }
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px 64px; align-items: start; }
.faq-intro { grid-column: 1; grid-row: 1; }
.faq-prep { grid-column: 1; grid-row: 2; }
.faq-list { grid-column: 2; grid-row: 1 / span 2; }
.faq-prep { margin-top: 26px; padding: 22px 24px; border: 1px solid rgba(0,229,255,.3); border-radius: var(--radius); }
.faq-prep h3 { margin: 0 0 14px; font-size: 16px; letter-spacing: -.02em; color: var(--text); }
.faq-prep ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.faq-prep li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.55; }
.faq-prep li i { flex: 0 0 auto; font-style: normal; font-weight: 900; }
.faq-list summary { display: flex; justify-content: space-between; gap: 18px; padding: 22px 0; cursor: pointer; list-style: none; font-size: 16px; font-weight: 750; color: var(--text); transition: color .2s ease, text-shadow .2s ease; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 22px; font-weight: 400; transition: transform .25s var(--ease); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 620px; margin: -4px 0 22px; font-size: 13.5px; line-height: 1.85; }

/* ---------- final cta ---------- */
.final-cta { padding: 88px 0; color: var(--text); text-align: center; position: relative; overflow: hidden; background: linear-gradient(180deg, transparent, rgba(10,18,32,.6)); }
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  }
.final-cta-inner { position: relative; }
.final-cta h2 { margin: 0; font-size: clamp(32px, 4.6vw, 54px); letter-spacing: -.045em; line-height: 1.1; color: var(--text); }
.final-cta .eyebrow { justify-content: center; }
.final-cta .eyebrow span { background: var(--cyan); box-shadow: var(--glow-soft); }
.final-cta .button { margin-top: 30px; }

/* ---------- footer ---------- */
.site-footer { padding: 68px 0 28px; color: var(--text); background: rgba(5,7,15,.8); border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(150px, .7fr) minmax(150px, .7fr); gap: clamp(36px, 6vw, 88px); align-items: start; }
.footer-brand { min-width: 0; }
.footer-brand .wordmark-logo { max-width: 180px; }
.footer-brand-block > p { max-width: 360px; margin: 18px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.footer-status { display: flex; align-items: flex-start; gap: 12px; max-width: 430px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.footer-status > span { flex: 0 0 auto; width: 8px; height: 8px; margin-top: 5px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,.09), 0 0 15px rgba(74,222,128,.3); }
.footer-status strong, .footer-status small { display: block; }
.footer-status strong { color: var(--text); font-size: 12px; letter-spacing: .02em; }
.footer-status small { margin-top: 6px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.footer-column { display: grid; align-content: start; }
.footer-column h2 { margin: 4px 0 18px; color: rgba(237,247,251,.45); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.footer-column a { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 44px; color: rgba(237,247,251,.82); border-bottom: 1px solid var(--line); font-size: 12.5px; font-weight: 700; transition: color .2s ease, border-color .2s ease; }
.footer-column a:first-of-type { border-top: 1px solid var(--line); }
.footer-column a:hover { color: var(--cyan-bright); border-color: var(--line-strong); }
.footer-column b { color: var(--cyan); font-size: 11px; font-weight: 600; }
.footer-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); }
.copyright { margin: 0; font-size: 10.5px; line-height: 1.8; letter-spacing: .05em; }
.copyright small { letter-spacing: 0; }
.powered-by { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; min-width: 177px; min-height: 54px; padding: 8px 12px; border: 1px solid transparent; border-radius: 9px; transition: background .2s ease, border-color .2s ease; }
.powered-by > span { color: rgba(237,247,251,.4); font-size: 9px; font-weight: 800; letter-spacing: .12em; line-height: 1; text-transform: uppercase; }
.powered-by img { display: block; width: 137px; height: 24px; object-fit: contain; object-position: left center; }
.powered-by:hover, .powered-by:focus-visible { background: rgba(255,255,255,.035); border-color: var(--line); }
.mobile-contact { display: none; }

/* ---------- reveal ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.visible { opacity: 1; transform: none; }

/* Scroll sequence: process cards arrive one-by-one, then their icons activate. */
.js .process-list li { transform: translateY(34px) scale(.97); transition: opacity .55s var(--ease), transform .7s var(--ease), border-color .25s ease, box-shadow .25s ease; }
.js .process-list li:nth-child(2) { transition-delay: .10s; }
.js .process-list li:nth-child(3) { transition-delay: .20s; }
.js .process-list li:nth-child(4) { transition-delay: .30s; }
.js .process-list li.visible { transform: none; }
.js .process-list li .process-icon { opacity: 0; transform: scale(.55) rotate(-10deg); transition: opacity .35s ease, transform .65s cubic-bezier(.2,1.55,.35,1), box-shadow .35s ease; }
.js .process-list li.visible .process-icon { opacity: 1; transform: none; box-shadow: inset 0 0 22px rgba(29,220,255,.12), 0 0 24px rgba(29,220,255,.18); transition-delay: .25s; }
.js .process-list li .process-number { opacity: 0; transform: translateX(8px); transition: opacity .35s ease, transform .45s var(--ease); }
.js .process-list li.visible .process-number { opacity: 1; transform: none; transition-delay: .35s; }
.js .process-list li.visible .process-icon svg { animation: process-icon-pulse .75s .48s ease-out both; }
@keyframes process-icon-pulse {
  0% { filter: drop-shadow(0 0 0 rgba(29,220,255,0)); }
  45% { filter: drop-shadow(0 0 7px rgba(29,220,255,.85)); }
  100% { filter: drop-shadow(0 0 0 rgba(29,220,255,0)); }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  :root { --header: 64px; }
  .site-nav > a:not(.nav-cta) { display: none; }
  .hero { min-height: 620px; height: 86vh; }
  .hero-photo { inset: 0 0 0 30%; }
  .device-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sf-body { grid-template-columns: 1fr; }
  .sf-result { padding: 26px 24px; border-left: 0; border-top: 1px solid var(--line); }
  .repair-table-head, .repair-row { grid-template-columns: minmax(220px, .9fr) minmax(260px, 1.1fr) minmax(170px, .5fr); }
  .ig-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ig-case-featured { grid-column: span 2; }
  .video-grid { gap: 40px; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .quick-strip { margin-top: 0; }
  .about-grid { gap: 44px; }
  .faq-grid { gap: 44px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  body { padding-bottom: 60px; }
  .site-header, .site-header.scrolled { height: 60px; background: rgba(5,7,15,.97); }
  .menu-button { display: block; }
  .menu-button.open > span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-button.open > span:nth-child(2) { transform: scaleX(0); }
  .menu-button.open > span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 60px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 28px 22px; background: rgba(5,7,15,.98); transform: translateX(100%); transition: transform .3s var(--ease); }
  .site-nav.open { transform: none; }
  .site-nav > a:not(.nav-cta) { display: flex; padding: 18px 0; color: var(--text); border-bottom: 1px solid var(--line); font-size: 17px; }
  .site-nav .nav-cta { margin-top: 26px; justify-content: space-between; }
  .hero { min-height: 660px; height: 90svh; padding-bottom: 40px; }
  .hero-photo { inset: 0 0 0 18%; }
  .hero-inner { align-items: flex-end; padding-bottom: 44px; }
  .hero h1 { font-size: clamp(38px, 11.5vw, 54px); }
  .hero-lede { font-size: 14.5px; }
  .hero-actions .button { flex: 1; min-width: 0; font-size: 12px; padding-inline: 14px; white-space: nowrap; }
  .section { padding: 72px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 14px; margin-bottom: 32px; }
  .section-heading > p:last-child { grid-column: 1; grid-row: auto; padding-left: 0; border-left: 0; }
  .device-grid { grid-template-columns: 1fr; }
  .device-card { padding: 24px 20px; }
  .repair-table-head { display: none; }
  .repair-table { background: transparent; border: 0; box-shadow: none; }
  .repair-row { grid-template-columns: 1fr; margin-bottom: 12px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 28px rgba(0,0,0,.3); }
  .repair-row > * { padding: 20px; }
  .repair-row > *:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--line); }
  .repair-solution span { display: block; margin-bottom: 6px; color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
  .repair-price { min-height: 90px; }
  .price-note { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ig-case-grid { grid-template-columns: 1fr; gap: 14px; }
  .ig-case-featured { display: block; grid-column: auto; }
  .ig-case-featured > img { width: 100%; aspect-ratio: 4 / 3; }
  .ig-case-featured > div { display: block; padding: 22px 20px; }
  .ig-case-featured h3 { font-size: 21px; }
  .video-grid { grid-template-columns: 1fr; gap: 34px; }
  .video-copy { order: 1; }
  .video-frame { order: 2; }
  .process-list { grid-template-columns: 1fr; }
  .location-card { flex-direction: column; align-items: flex-start; padding: 22px 20px; }
  .map-buttons { width: 100%; }
  .map-buttons a { flex: 1 1 auto; justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .brand-visual { order: 2; }
  .about-copy { order: 1; }
  .faq-grid { grid-template-columns: 1fr; gap: 34px; }
  .final-cta { padding: 64px 0; }
  .button-light { width: 100%; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-grid > div { border-left: 0; border-top: 1px solid var(--line); }
  .quick-grid > div:first-child { border-top: 0; }
  .site-footer { padding: 56px 0 104px; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; margin-top: 42px; }
  .powered-by { padding-inline: 0; }
  .mobile-contact {
    position: fixed; z-index: 90; inset: auto 0 0;
    display: flex; justify-content: space-between; align-items: center;
    min-height: 60px; padding: 0 20px;
    color: var(--navy); background: linear-gradient(90deg, var(--cyan), #4df3ff);
    font-weight: 850; font-size: 13px; box-shadow: 0 -4px 24px rgba(0,229,255,.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .js .reveal { opacity: 1; transform: none; }
  .js .process-list li,
  .js .process-list li .process-icon,
  .js .process-list li .process-number { opacity: 1; transform: none; }
}

/* ============================================================
   THEME: Clean & Trustworthy (B + C blend) — light base,
   blue for trust, warm orange for the primary CTA warmth.
   Appended last so it overrides the dark base above.
   ============================================================ */
:root{
  --bg:#eceff4; --bg-soft:#e0e5ec; --card:#ffffff; --card-solid:#ffffff; --navy:#ffffff;
  --cyan:#1e5f8c; --cyan-bright:#1e5f8c; --cyan-soft:rgba(30, 95, 140,.10);
  --violet:#3c88c4; --text:#141b28; --muted:#5c6a80;
  --line:rgba(18,24,38,.10); --line-strong:rgba(30, 95, 140,.35);
  --glow:0 10px 26px rgba(30, 95, 140,.22); --glow-soft:0 8px 20px rgba(18,24,38,.08);
  --warm:#e0781f; --warm-2:#f2984a;
}

/* header */
.site-header{ background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.45)); border-bottom:1px solid var(--line); color:var(--text); }
.site-header.scrolled{ box-shadow:0 8px 26px rgba(18,24,38,.08), 0 1px 0 var(--line); }
.wordmark>span{ color:var(--text); }
.brand-cyan{ background:linear-gradient(90deg,var(--cyan),var(--violet)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.nav-cta{ color:#fff; background:linear-gradient(90deg,var(--warm),var(--warm-2)); box-shadow:0 8px 22px rgba(224, 120, 31,.32); }
.nav-cta:hover{ box-shadow:0 10px 28px rgba(224, 120, 31,.45); }
.lang-caret{ background:var(--cyan-soft); color:var(--cyan); }
.lang-dropdown.open .lang-caret{ background:rgba(30, 95, 140,.18); }
.lang-menu button:hover{ background:var(--cyan-soft); color:var(--cyan); }
.menu-button{ color:var(--text); }

/* hero */
.hero{ background:var(--bg); } .eyebrow span{ background:var(--cyan); box-shadow:none; }
.hero h1 span{ filter:none; }

/* buttons */
.button-primary{ color:#fff; background:linear-gradient(90deg,var(--warm),var(--warm-2)); box-shadow:0 10px 26px rgba(224, 120, 31,.3); }
.button-primary:hover{ filter:brightness(1.05); box-shadow:0 14px 32px rgba(224, 120, 31,.42); }
.button-ghost:hover{ box-shadow:none; }
.button-light{ color:#fff; background:linear-gradient(90deg,var(--warm),var(--warm-2)); box-shadow:0 10px 26px rgba(224, 120, 31,.3); }
.button-light:hover{ filter:brightness(1.05); box-shadow:0 14px 32px rgba(224, 120, 31,.42); }

/* quick strip */
.quick-grid > div{ background:transparent; box-shadow:none; }
.quick-grid > div:hover{ box-shadow:none; }
.quick-grid .q-ico{ box-shadow:none; }
.quick-grid > div:nth-child(2) .q-ico{ color:var(--violet); background:rgba(107,107,255,.12); border-color:rgba(107,107,255,.3); }
.quick-grid > div:nth-child(3) .q-ico{ color:var(--warm); background:rgba(224, 120, 31,.12); border-color:rgba(224, 120, 31,.3); }

/* headings + generic */
.section-heading h2, .video-copy h2, .final-cta h2, .device-card h3, .repair-problem h3,
.location-address strong, .faq-list summary, .faq-prep h3{ color:var(--text); }
.section-heading>p:last-child{ border-left-color:var(--line); }

/* device cards */
.device-card{ background:#fff; border:1px solid var(--line); box-shadow:0 12px 30px rgba(18,24,38,.07); }
.device-card:hover{ border-color:var(--line-strong); box-shadow:0 18px 40px rgba(18,24,38,.12); }
.device-card li{ color:rgba(20,27,40,.8); }
.device-card>a{ color:var(--cyan); }

/* pricing */
.repair-table{ background:#fff; border:1px solid var(--line); box-shadow:0 14px 36px rgba(18,24,38,.08); }
.repair-table-head{ background:#f2f5fa; color:var(--muted); border-bottom:1px solid var(--line); }
.repair-row:hover{ background:#f7faff; }
.repair-price{ background:#f7faff; }
.repair-problem i{ color:var(--cyan); background:var(--cyan-soft); border-color:rgba(30, 95, 140,.25); box-shadow:none; }
.price-note{ background:#fff; border:1px solid var(--line); }

/* symptom finder */
.symptom-finder{ background:#fff; border:1px solid var(--line); box-shadow:0 14px 36px rgba(18,24,38,.08); }
.sf-tabs{ background:#f2f5fa; border-bottom:1px solid var(--line); }
.sf-tab{ border:1px solid var(--line); }
.sf-symptoms button{ color:rgba(20,27,40,.85); border-bottom:1px solid var(--line); }
.sf-result{ background:#f7f9fc; border-left:1px solid var(--line); }
.sf-tip p{ color:rgba(20,27,40,.82); }
.sf-cta{ box-shadow:0 8px 20px rgba(224, 120, 31,.3); }

/* ig cases */
.ig-cases{ background:linear-gradient(180deg, rgba(30, 95, 140,.04), transparent); }
.ig-case-card{ background:#fff; border:1px solid var(--line); box-shadow:0 12px 30px rgba(18,24,38,.07); }
.ig-case-card>img{ filter:none; }

/* process */
.process-list li{ background:#fff; border:1px solid var(--line); box-shadow:0 10px 26px rgba(18,24,38,.06); }
.process-list h3{ color:var(--text); }
.process-list>li>.process-icon-row .process-icon{ color:var(--cyan); }

/* video */
.video-frame video{ background:#e9edf3; border:1px solid var(--line); }

/* location */
.location-card{ background:#fff; border:1px solid var(--line); }
.map-buttons a{ border:1.5px solid var(--line-strong); }
.map-buttons a:hover{ color:#fff; background:linear-gradient(90deg,var(--cyan),#3aa0ff); border-color:transparent; box-shadow:none; }
.location-map{ border:1px solid var(--line); }
.location-map iframe{ filter:none; }

/* about */
.brand-visual img[src*="martin-logo"]{ background:#fff; border:1px solid var(--line); }
.about-copy blockquote{ border-left:3px solid var(--cyan); }

/* faq */
.faq-prep{ background:#fdf5ec; border:1px solid rgba(224, 120, 31,.25); box-shadow:none; }
.faq-list{ border-top:1px solid var(--line); }
.faq-list details{ border-bottom:1px solid var(--line); }
.faq-list summary span{ color:var(--cyan); }
.faq-list details p{ color:var(--muted); }

/* final cta */
.final-cta{ background:linear-gradient(180deg, transparent, rgba(30, 95, 140,.05)); }
.final-cta::before{ background:
  radial-gradient(45% 80% at 20% 100%, rgba(224, 120, 31,.10), transparent 60%),
  radial-gradient(40% 70% at 85% 20%, rgba(30, 95, 140,.10), transparent 60%); }
.final-cta .eyebrow{ color:var(--muted); }

/* footer */
.site-footer{ background:#e0e5ec; border-top:1px solid var(--line); color:var(--text); }
.footer-brand{ color:var(--text); }
.copyright{ color:var(--muted); }

/* mobile fixed contact + mobile menu */
.mobile-contact{ color:#fff; background:linear-gradient(90deg,var(--warm),var(--warm-2)); box-shadow:0 -4px 24px rgba(224, 120, 31,.3); }
@media (max-width:720px){
  .site-header, .site-header.scrolled{ background:rgba(255,255,255,.97); }
  .site-nav{ background:rgba(255,255,255,.99); }
  .site-nav>a:not(.nav-cta){ color:var(--text); border-bottom:1px solid var(--line); }
  .faq-intro, .faq-prep, .faq-list{ grid-column:1; grid-row:auto; }
  .faq-prep{ margin-top:0; }
}

/* ---------- trust guarantees (added) ---------- */
.trust-grid{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.trust-card{ padding:26px 22px; background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:0 12px 30px rgba(18,24,38,.07); transition:transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease; }
.trust-card:hover{ transform:translateY(-4px); border-color:var(--line-strong); box-shadow:0 18px 40px rgba(18,24,38,.12); }
.trust-ico{ display:inline-grid; place-items:center; width:48px; height:48px; margin-bottom:16px; font-size:22px; background:var(--cyan-soft); border:1px solid rgba(30, 95, 140,.2); border-radius:14px; }
.trust-card:nth-child(2) .trust-ico{ background:rgba(224, 120, 31,.12); border-color:rgba(224, 120, 31,.25); }
.trust-card:nth-child(3) .trust-ico{ background:rgba(107,107,255,.12); border-color:rgba(107,107,255,.25); }
.trust-card:nth-child(4) .trust-ico{ background:rgba(20,180,120,.12); border-color:rgba(20,180,120,.25); }
.trust-card h3{ margin:0 0 8px; font-size:18px; letter-spacing:-.02em; color:var(--text); }
.trust-card p{ margin:0; color:var(--muted); font-size:13px; line-height:1.7; }
.trust-card mark{ background:rgba(224, 120, 31,.14); color:#9c5314; padding:1px 6px; border-radius:6px; font-size:12px; }

@media (max-width:980px){ .trust-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:720px){ .trust-grid{ grid-template-columns:1fr;} }

/* ---------- logo-focused redesign ---------- */
.site-header{
  height:84px;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(18px);
}
.site-header.scrolled{ height:72px; background:rgba(255,255,255,.98); }
.header-inner{ gap:22px; }
.wordmark{
  min-width:224px;
  padding:9px 0;
  letter-spacing:0;
}
.wordmark-logo{
  height:58px;
  width:auto;
  max-width:224px;
  }
.footer-brand .wordmark-logo{ height:40px !important; }
.site-nav{ margin-left:auto; }

.hero{
  min-height:760px;
  height:min(92vh,920px);
}
.hero-inner{
  display:grid;
  gap:clamp(28px,5vw,72px);
  }
.hero-copy{ width:100%; max-width:680px; }
.hero h1{
  font-size:clamp(40px,4.7vw,68px);
  letter-spacing:0;
}
.hero-lede{ max-width:590px; }
.hero-service-panel{
  position:relative;
  align-self:center;
  display:grid;
  gap:22px;
  padding:34px;
  border:1px solid rgba(18,24,38,.12);
  border-radius:22px;
  backdrop-filter:blur(18px);
}
.hero-service-panel::before{
  content:"";
  position:absolute;
  inset:14px;
  z-index:-1;
  border-radius:18px;
  border:1px solid rgba(30, 95, 140,.12);
}
.panel-kicker{
  margin:0;
  color:var(--warm);
  font-size:11px;
  font-weight:900;
  letter-spacing:.18em;
  line-height:1;
}
.hero-service-panel h2{
  margin:0;
  font-size:clamp(28px,3.2vw,42px);
  line-height:1.05;
  letter-spacing:0;
}
.hero-service-panel > p:not(.panel-kicker){
  margin:0;
  color:rgba(20,27,40,.68);
  font-size:14px;
  line-height:1.75;
}
.panel-list{
  display:grid;
  gap:12px;
}
.panel-list div{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:16px 18px;
  border:1px solid rgba(18,24,38,.10);
  border-radius:14px;
  background:#fff;
  box-shadow:0 10px 24px rgba(18,24,38,.06);
}
.panel-list div::before{
  content:"";
  width:9px;
  height:9px;
  margin-bottom:4px;
  border-radius:50%;
  background:var(--warm);
}
.panel-list strong{
  color:var(--text);
  font-size:14px;
  line-height:1.35;
}
.panel-list span{
  color:var(--muted);
  font-size:12px;
  line-height:1.55;
}
.quick-strip{
  position:relative;
  z-index:2;
}
.quick-copy{
  display:block;
  min-height:0;
  padding:0;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
  backdrop-filter:none;
}
.quick-copy:hover{
  transform:none;
  border-color:transparent;
  box-shadow:none;
}

@media (max-width:1100px){
  .wordmark{ min-width:190px; }
  .wordmark-logo{ height:52px; max-width:190px; }
  .site-nav{ gap:14px; }
  .hero-inner{ grid-template-columns:1fr; }
  .hero-service-panel{ display:none; }
  .hero-copy{ max-width:760px; }
}

@media (max-width:720px){
  .site-header,
  .site-header.scrolled{ height:64px; }
  .header-inner{ gap:12px; }
  .wordmark{
    min-width:150px;
    max-width:calc(100vw - 188px);
    padding:6px 0;
  }
  .wordmark-logo{ height:43px; max-width:150px; }
  .hero{
    min-height:760px;
    height:auto;
    padding:92px 0 82px;
  }
  .hero-photo{ inset:28% 0 0 8%; opacity:.42; }
  .hero-inner{
    display:flex;
    align-items:flex-start;
    padding-top:0;
    padding-bottom:0;
  }
  .hero h1{
    max-width:100%;
    font-size:clamp(32px,8.8vw,42px);
    line-height:1.12;
    overflow-wrap:break-word;
  }
  .eyebrow{
    max-width:100%;
    gap:10px;
    font-size:9px;
    line-height:1.5;
    letter-spacing:.13em;
    white-space:normal;
    overflow:hidden;
  }
  .eyebrow span{ width:30px; flex:none; }
  .hero-lede{
    max-width:min(100%, 330px);
    overflow-wrap:anywhere;
    word-break:break-all;
  }
  .hero-actions .button{ white-space:normal; }
  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    width:100%;
  }
  .hero-actions .button{
    width:100%;
    min-height:50px;
    justify-content:center;
    white-space:normal;
  }
  .quick-grid,
  .quick-grid > div,
  .quick-copy{ min-width:0; }
  .quick-grid > div{
    padding:18px 16px;
    gap:14px;
    align-items:flex-start;
  }
  .quick-grid .q-ico{
    width:44px;
    height:44px;
    border-radius:12px;
  }
  .quick-grid strong,
  .quick-copy span{
    overflow-wrap:anywhere;
  }
  .quick-copy span{ font-size:11.5px; }
  .quick-strip{ margin-top:0; }
}
/* ---------- technology palette: graphite + electric cyan ---------- */
:root{
  --bg:#071019;
  --bg-soft:#0b1723;
  --card:#0e1d2a;
  --card-solid:#102131;
  --navy:#071019;
  --cyan:#27d7f2;
  --cyan-bright:#75ecff;
  --cyan-soft:rgba(39,215,242,.11);
  --violet:#7487ff;
  --text:#edf7fb;
  --muted:#91a8b6;
  --line:rgba(114,218,237,.14);
  --line-strong:rgba(39,215,242,.48);
  --glow:0 12px 34px rgba(39,215,242,.18);
  --glow-soft:0 16px 42px rgba(0,0,0,.28);
  --warm:#f28a2e;
  --warm-2:#ffad52;
}
.site-header,.site-header.scrolled{ background:rgba(5,14,23,.91); border-bottom:1px solid rgba(39,215,242,.16); box-shadow:0 12px 34px rgba(0,0,0,.25); }
.wordmark-logo{ filter:drop-shadow(0 0 13px rgba(117,236,255,.24)); }
.site-nav>a:not(.nav-cta){ color:rgba(225,241,247,.72); }
.site-nav>a:not(.nav-cta):hover{ color:var(--cyan-bright); }
.lang-select{ background:rgba(14,29,42,.9); color:var(--text); border-color:var(--line); }
.lang-menu{ background:#0d1b28; border-color:var(--line); box-shadow:0 18px 48px rgba(0,0,0,.42); }
.lang-menu button{ color:rgba(237,247,251,.8); }
.menu-button{ color:var(--text); }
.hero{ background:#071019; }
.eyebrow{ color:rgba(171,208,221,.72); }
.hero h1,.section-heading h2,.video-copy h2,.device-card h3,.repair-problem h3,.location-address strong,.faq-list summary,.faq-prep h3{ color:var(--text); }
.hero h1 span{ filter:drop-shadow(0 0 18px rgba(39,215,242,.15)); }
.hero-lede{ color:rgba(201,222,230,.76); }
.button-ghost{ color:var(--text); background:rgba(14,29,42,.72); border-color:var(--line); }
.button-ghost:hover{ background:rgba(39,215,242,.1); border-color:var(--cyan); }
.hero-service-panel{ background:linear-gradient(145deg,rgba(15,33,48,.86),rgba(8,21,32,.78)); border-color:rgba(39,215,242,.22); box-shadow:0 28px 70px rgba(0,0,0,.38),inset 0 1px 0 rgba(255,255,255,.04); }
.hero-service-panel::before{ border-color:rgba(39,215,242,.14); }
.hero-service-panel h2{ color:var(--text); }
.hero-service-panel>p:not(.panel-kicker){ color:var(--muted); }
.panel-list div,.device-card,.repair-table,.symptom-finder,.ig-case-card,.process-list li,.location-card,.trust-card,.price-note{ background:linear-gradient(145deg,rgba(16,33,49,.96),rgba(10,24,36,.96)); border-color:var(--line); box-shadow:0 14px 34px rgba(0,0,0,.2); }
.quick-grid > div{ background:transparent; border-color:var(--line); box-shadow:none; }
.quick-grid > div:hover{ background:rgba(39,215,242,.035); }
.panel-list strong,.quick-grid strong,.ig-case-card h3,.process-list h3,.trust-card h3{ color:var(--text); }
.panel-list span,.quick-copy span,.trust-card p{ color:var(--muted); }
.repair-table-head,.sf-tabs{ background:#091722; color:var(--muted); border-color:var(--line); }
.repair-row:hover,.repair-price,.sf-result{ background:rgba(39,215,242,.035); }
.sf-symptoms button,.device-card li,.sf-tip p{ color:rgba(215,233,240,.8); border-color:var(--line); }
.video-frame video{ background:#050c12; border-color:var(--line); }
.location-map{ border-color:var(--line); box-shadow:0 18px 42px rgba(0,0,0,.3); }
.site-footer{ background:#050d15; border-top-color:var(--line); color:var(--text); }
@media(max-width:720px){
  .site-header,.site-header.scrolled,.site-nav{ background:rgba(5,14,23,.98); }
  .site-nav>a:not(.nav-cta){ color:var(--text); border-bottom-color:var(--line); }
}

/* ---------- mobile, interaction & conversion hardening ---------- */
a,
button,
summary { touch-action: manipulation; }

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--cyan-bright);
  outline-offset: 3px;
}
.lang-select:focus-visible {
  outline: 3px solid var(--cyan-bright);
  outline-offset: 3px;
}

.site-nav > a[aria-current="location"] {
  color: var(--cyan-bright);
}

.lang-label::before { content: none; }
.lang-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lang-short { display: none; font-size: 12px; font-weight: 900; }
.lang-select,
.nav-cta,
.lang-menu button,
.sf-tab,
.device-card > a,
.price-note .sources a,
.ig-source-note a,
.about-links a { min-height: 44px; }
.ig-actions { display: flex; margin-top: 24px; }
.menu-button {
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 6px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.menu-button > span:not(.sr-only) {
  width: 24px;
  margin: 0;
  transition: transform .22s var(--ease);
}
.menu-button.open {
  color: var(--cyan-bright);
  background: var(--cyan-soft);
  border-color: var(--line-strong);
}
.menu-button.open > span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-button.open > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
.menu-button.open > .sr-only { transform: none; }

@media (max-width: 720px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
  .site-header,
  .site-header.scrolled {
    height: 64px;
    backdrop-filter: none;
  }
  .header-inner { justify-content: space-between; gap: 8px; }
  .wordmark {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    padding: 5px 0;
  }
  .wordmark-logo {
    width: min(140px, 100%);
    height: auto;
    max-width: 140px;
    max-height: 42px;
  }
  .header-right { flex: 0 0 auto; gap: 6px; }
  .lang-dropdown { margin-left: 0; }
  .lang-select {
    min-width: 62px;
    min-height: 44px;
    justify-content: center;
    gap: 5px;
    padding: 0 6px;
  }
  .lang-label { display: none; }
  .lang-short { display: inline-flex; }
  .lang-caret { width: 17px; height: 17px; }
  .lang-menu { min-width: 148px; }
  .menu-button { display: grid; }
  .site-nav {
    inset: 64px 0 0;
    z-index: 99;
    overflow-y: auto;
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
    visibility: hidden;
    pointer-events: none;
    overscroll-behavior: contain;
  }
  .site-nav.open { visibility: visible; pointer-events: auto; }
  .site-nav > a:not(.nav-cta) { min-height: 56px; align-items: center; }
  .site-nav .nav-cta { min-height: 48px; }
  .hero {
    min-height: min(660px, 100svh);
    height: auto;
    padding: 88px 0 60px;
  }
  .hero-photo { inset: 30% 0 0 8%; }
  .hero-lede { word-break: normal; }
  .price-note .sources { flex-wrap: wrap; gap: 4px 14px; }
  .price-note .sources a,
  .ig-source-note a,
  .about-links a { display: inline-flex; align-items: center; }
  .about-links { flex-wrap: wrap; gap: 8px 20px; }
  .ig-actions .button { width: 100%; }
  .mobile-contact {
    min-height: calc(60px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ---------- ACE-inspired image-led refresh ---------- */
.hero {
  min-height: 660px;
  height: min(78vh, 780px);
}
.hero-photo {
  inset: 0;
  opacity: .48;
  background-position: center right;
  -webkit-mask-image: none;
  mask-image: none;
  filter: saturate(.82) contrast(1.12);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(7,16,25,.98) 0%, rgba(7,16,25,.9) 39%, rgba(7,16,25,.62) 67%, rgba(7,16,25,.34) 100%),
    linear-gradient(180deg, rgba(7,16,25,.18), rgba(7,16,25,.9)),
    radial-gradient(44% 54% at 16% 35%, rgba(39,215,242,.14), transparent 68%),
    radial-gradient(34% 44% at 82% 36%, rgba(242,138,46,.16), transparent 70%);
}
.hero-inner {
  grid-template-columns: minmax(0, .95fr) minmax(420px, .85fr);
  align-items: center;
}
.hero-copy {
  padding-top: 28px;
}
.hero-media-stage {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}
.hero-media-stage::before {
  content: "";
  position: absolute;
  inset: 12% -4% auto auto;
  z-index: -1;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(39,215,242,.08);
  filter: blur(26px);
}
.hero-photo-card {
  position: absolute;
  inset: 42px 0 48px 72px;
  overflow: hidden;
  border: 1px solid rgba(237,247,251,.16);
  border-radius: 8px;
  background: #071019;
  box-shadow: 0 26px 74px rgba(0,0,0,.48);
}
.hero-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,16,25,.05), rgba(7,16,25,.18) 48%, rgba(7,16,25,.72)),
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 32%, rgba(0,0,0,.28));
}
.hero-photo-card::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 68px;
  height: 4px;
  border-radius: 999px;
  background: var(--warm);
}
.hero-photo-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.08);
}
.hero-photo-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 70px;
  padding: 14px 18px;
  border: 1px solid rgba(237,247,251,.16);
  border-radius: 8px;
  background: rgba(5,13,21,.86);
  box-shadow: 0 16px 36px rgba(0,0,0,.36);
  backdrop-filter: blur(12px);
}
.hero-photo-badge img {
  width: 128px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(117,236,255,.22));
}
.hero-photo-badge span {
  color: rgba(237,247,251,.76);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-logo-tile {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 156px;
  padding: 12px;
  border: 1px solid rgba(237,247,251,.16);
  border-radius: 8px;
  background: rgba(5,13,21,.92);
  box-shadow: 0 18px 42px rgba(0,0,0,.42);
}
.hero-logo-tile img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}
.hero-device-cluster {
  position: absolute;
  left: 28px;
  bottom: 18px;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  gap: 0;
  pointer-events: none;
}
.hero-device-cluster img {
  width: 72px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.5)) drop-shadow(0 0 12px rgba(39,215,242,.22));
}
.hero-device-cluster img:nth-child(2) {
  width: 92px;
  transform: translateX(-16px) translateY(8px);
}
.hero-device-cluster img:nth-child(3) {
  width: 78px;
  transform: translateX(-34px) translateY(10px);
}

.brand-strip {
  position: relative;
  z-index: 2;
  }
.brand-strip-inner {
  display: grid;
  align-items: center;
}
.brand-strip-title {
  display: flex;
  min-width: 0;
}
.brand-strip-title img {
  height: auto;
  }
.brand-strip-title span {
  font-weight: 900;
  text-transform: uppercase;
}
.brand-strip-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(112px, 1fr));
  gap: 10px;
}
.brand-device {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(237,247,251,.1);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
}
.brand-device img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,.38));
}
.brand-device-logo img {
  border-radius: 50%;
}
.brand-device span {
  color: rgba(237,247,251,.78);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.25;
}

.device-card {
  position: relative;
  overflow: hidden;
  padding: 0 22px 24px;
  border-radius: 8px;
}
.device-glyph {
  display: grid;
  place-items: center;
  width: calc(100% + 44px);
  height: 190px;
  margin: 0 -22px 22px;
  background:
    linear-gradient(180deg, rgba(39,215,242,.06), rgba(242,138,46,.05)),
    #071019;
  border-bottom: 1px solid var(--line);
}
.device-glyph img {
  width: min(66%, 156px);
  height: 150px;
}
.device-card-top {
  position: absolute;
  inset: 14px 16px auto;
  z-index: 2;
}
.device-card h3 {
  font-size: 23px;
}
.ig-case-card {
  border-radius: 8px;
}
.ig-case-card > img {
  min-height: 230px;
}
.ig-case-featured > img {
  min-height: 100%;
}
.brand-visual img[src*="martin-logo"] {
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(39,215,242,.05), rgba(242,138,46,.05)),
    #071019;
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-media-stage {
    min-height: 430px;
    margin-top: 18px;
  }
}

@media (max-width: 980px) {
  .brand-strip-inner {
    grid-template-columns: 1fr;
  }
  .brand-strip-track {
    grid-template-columns: repeat(5, minmax(132px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .brand-strip-track::-webkit-scrollbar { display: none; }
}

@media (max-width: 720px) {
  .hero {
    min-height: 0;
    padding: 86px 0 28px;
  }
  .hero-photo {
    opacity: .34;
    background-position: 68% center;
  }
  .hero-inner {
    gap: 24px;
  }
  .hero-media-stage {
    display: block;
    width: 100%;
    min-height: 320px;
    margin-top: 0;
  }
  .hero-photo-card {
    inset: 22px 0 20px 44px;
  }
  .hero-photo-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 56px;
    padding: 10px 12px;
  }
  .hero-photo-badge img {
    width: 92px;
  }
  .hero-photo-badge span {
    font-size: 9px;
  }
  .hero-logo-tile {
    width: 104px;
    padding: 8px;
  }
  .hero-device-cluster {
    left: 8px;
    bottom: 10px;
  }
  .hero-device-cluster img {
    width: 48px;
    height: 62px;
  }
  .hero-device-cluster img:nth-child(2) {
    width: 58px;
    transform: translateX(-12px) translateY(5px);
  }
  .hero-device-cluster img:nth-child(3) {
    width: 52px;
    transform: translateX(-24px) translateY(6px);
  }
  .brand-strip {
    padding: 14px 0;
  }
  .brand-strip-title {
    justify-content: space-between;
  }
  .brand-strip-title img {
    width: 102px;
  }
  .brand-strip-track {
    grid-template-columns: repeat(5, 118px);
  }
  .brand-device {
    min-height: 78px;
    flex-direction: column;
    gap: 7px;
  }
  .brand-device img {
    width: 38px;
    height: 38px;
  }
  .brand-device span {
    font-size: 11px;
    text-align: center;
  }
  .device-glyph {
    height: 176px;
  }
}

/* ---------- image-led service cards and repair gallery ---------- */
.hero .eyebrow,
.hero .hero-lede {
  color: rgba(237, 247, 251, .76);
}
.hero h1 {
  max-width: 720px;
  color: #f3f8fb;
}
.hero h1 span {
  background: linear-gradient(92deg, #75ecff, #a8d7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .button-ghost {
  color: #f3f8fb;
  background: rgba(5, 13, 21, .54);
  border-color: rgba(237, 247, 251, .2);
  backdrop-filter: blur(10px);
}

.services {
  color: #111820;
  background: #f3f5f7;
  border-block: 1px solid #dde2e7;
}
.services .section-heading h2 {
  color: #111820;
}
.services .section-heading > p:last-child {
  color: #636d77;
  border-left-color: #d5dbe0;
}
.services .section-kicker {
  color: #d86d1f;
}
.services .device-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.services .device-card {
  padding: 0 0 26px;
  overflow: hidden;
  background: #fff;
  border-color: #dce2e7;
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(20, 28, 36, .08);
  backdrop-filter: none;
}
.services .device-card:hover {
  transform: translateY(-4px);
  border-color: #b8c5cf;
  box-shadow: 0 22px 46px rgba(20, 28, 36, .13);
}
.services .device-card-top {
  inset: 18px auto auto 18px;
  z-index: 3;
  width: fit-content;
  gap: 10px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, .72);
  background: rgba(8, 14, 20, .82);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
}
.services .device-card-top b {
  color: #fff;
}
.services .device-glyph {
  display: block;
  width: 100%;
  height: 250px;
  margin: 0 0 24px;
  overflow: hidden;
  background: #dfe4e8;
  border: 0;
  border-bottom: 1px solid #dce2e7;
  perspective: none;
}
.services .device-glyph img,
.js .services .device-card .device-glyph img,
.js .services .device-card.visible .device-glyph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  transform: scale(1);
  transition: transform .45s var(--ease);
}
.services .device-card:hover .device-glyph img {
  filter: none;
  transform: scale(1.035);
}
.services .device-card h3 {
  margin: 0 24px;
  color: #111820;
  font-size: 25px;
}
.services .device-card > p {
  margin: 10px 24px 16px;
  color: #66717b;
}
.services .device-card ul {
  margin: 0 24px 22px;
}
.services .device-card li {
  color: #303a44;
}
.services .device-card li::before {
  background: #de7929;
  box-shadow: none;
}
.services .device-card > a {
  margin: auto 24px 0;
  color: #166d96;
  border-top-color: #dce2e7;
}
.services .device-card > a:hover {
  text-shadow: none;
}
.ig-case-grid {
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .72fr);
  grid-auto-rows: 170px;
  gap: 14px;
}
.ig-case-card,
.ig-case-featured {
  position: relative;
  display: block;
  min-height: 170px;
  overflow: hidden;
  color: #f3f8fb;
  background: #101a23;
  border: 1px solid rgba(237, 247, 251, .12);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .3);
  isolation: isolate;
}
.ig-case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 10, 15, .02) 20%, rgba(5, 10, 15, .92) 100%);
  pointer-events: none;
}
.ig-case-card:hover {
  transform: none;
  border-color: rgba(117, 236, 255, .4);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .4);
}
.ig-case-card > img,
.ig-case-featured > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  filter: saturate(.88) contrast(1.02);
  transition: transform .55s var(--ease), filter .35s ease;
}
.ig-case-card:hover > img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.03);
}
.ig-case-card > div,
.ig-case-featured > div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: block;
  padding: 18px 20px;
}
.ig-case-card span {
  color: #75ecff;
}
.ig-case-card h3 {
  margin: 5px 0 0;
  color: #fff;
  font-size: 18px;
}
.ig-case-card p {
  display: none;
  color: rgba(225, 237, 244, .72);
}
.ig-case-card b {
  display: inline-flex;
  margin-top: 7px;
  padding: 0;
  color: rgba(255, 255, 255, .7);
  border: 0;
}
.ig-case-featured {
  grid-column: 1;
  grid-row: 1 / span 3;
}
.ig-case-featured > div {
  padding: 30px 32px;
}
.ig-case-featured h3 {
  margin-top: 8px;
  font-size: 30px;
}
.ig-case-featured p {
  display: block;
  max-width: 500px;
  margin: 10px 0 12px;
  font-size: 13px;
}

.about-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, .84fr);
}
.brand-visual img {
  aspect-ratio: 1400 / 735;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 1100px) {
  .hero {
    height: auto;
    padding: 112px 0 56px;
  }
  .hero-copy {
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  .ig-case-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }
  .ig-case-featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 430px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    height: auto;
    padding: 88px 0 34px;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    align-items: start;
  }
  .hero-copy,
  .hero-media-stage {
    width: 100%;
    max-width: none;
  }
  .hero h1 {
    font-size: clamp(40px, 12.2vw, 50px);
    overflow-wrap: normal;
    word-break: keep-all;
  }
  .hero-lede {
    max-width: 100%;
  }
  .hero-media-stage {
    min-height: 350px;
  }
  .hero-photo-card {
    inset: 26px 0 18px 36px;
  }
  .hero-device-cluster {
    display: none;
  }
  .services .device-grid {
    grid-template-columns: 1fr;
  }
  .services .device-glyph {
    height: 220px;
  }
  .ig-case-grid {
    grid-auto-rows: 300px;
  }
  .ig-case-featured {
    min-height: 390px;
  }
  .ig-case-featured > div {
    padding: 24px 22px;
  }
  .ig-case-featured h3 {
    font-size: 24px;
  }
}

/* ---------- footer conversion and brand refinement ---------- */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 30px;
  color: #edf7fb;
  background: #040c13;
  border-top: 1px solid rgba(117, 236, 255, .12);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(39, 215, 242, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 215, 242, .022) 1px, transparent 1px),
    radial-gradient(46% 58% at 10% 6%, rgba(39, 215, 242, .08), transparent 72%),
    radial-gradient(38% 50% at 94% 22%, rgba(242, 138, 46, .08), transparent 72%);
  background-size: 48px 48px, 48px 48px, auto, auto;
}
.site-footer > .container {
  position: relative;
  z-index: 1;
}
.footer-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, .97fr);
  min-height: 378px;
  overflow: hidden;
  background: linear-gradient(145deg, #0d1e2b, #07131d);
  border: 1px solid rgba(117, 236, 255, .16);
  border-radius: 12px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, .34);
}
.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 4;
  width: 5px;
  background: linear-gradient(180deg, #f28a2e, #ffad52);
}
.footer-cta-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px clamp(34px, 4.4vw, 64px);
}
.footer-cta-kicker {
  margin: 0 0 18px;
  color: #ffad52;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer-cta h2 {
  margin: 0;
  max-width: 620px;
  color: #f4f9fb;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1.12;
  letter-spacing: -.045em;
}
.footer-cta h2 span {
  color: #75ecff;
}
.footer-cta-copy > p:not(.footer-cta-kicker) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(221, 237, 243, .7);
  font-size: 15px;
  line-height: 1.8;
}
.footer-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 30px;
}
.footer-cta-button {
  min-height: 50px;
  gap: 10px;
  padding: 0 18px 0 12px;
}
.footer-cta-button-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  color: rgba(255, 255, 255, .86);
  background: rgba(5, 13, 21, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 7px;
}
.footer-cta-button-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-cta-button-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-open-now {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(237, 247, 251, .72);
  font-size: 12px;
  font-weight: 750;
}
.footer-open-now > i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, .09), 0 0 15px rgba(74, 222, 128, .3);
}
.footer-cta-visual {
  position: relative;
  min-height: 378px;
  overflow: hidden;
  background: #071019;
}
.footer-cta-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #07131d 0%, rgba(7, 19, 29, .32) 30%, rgba(7, 19, 29, .08) 70%),
    linear-gradient(180deg, rgba(7, 16, 25, .08), rgba(7, 16, 25, .58));
}
.footer-cta-visual > img {
  width: 100%;
  height: 100%;
  min-height: 378px;
  object-fit: cover;
  object-position: 63% center;
  filter: saturate(.72) contrast(1.08);
}
.footer-cta-logo {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  padding: 12px 16px;
  background: rgba(5, 13, 21, .86);
  border: 1px solid rgba(237, 247, 251, .14);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .3);
  backdrop-filter: blur(10px);
}
.footer-cta-logo img {
  width: 142px;
  height: auto;
}
.footer-cta-proof {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  padding: 8px 11px;
  color: rgba(255, 255, 255, .8);
  background: rgba(5, 13, 21, .72);
  border: 1px solid rgba(237, 247, 251, .14);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  backdrop-filter: blur(10px);
}

.site-footer .footer-main {
  grid-template-columns: minmax(240px, .9fr) minmax(150px, .55fr) minmax(160px, .58fr) minmax(300px, 1.15fr);
  gap: clamp(32px, 4.2vw, 60px);
  padding-top: 68px;
}
.site-footer .footer-brand .wordmark-logo {
  height: 48px !important;
  max-width: 200px;
}
.site-footer .footer-brand-block > p {
  margin-top: 20px;
  color: rgba(221, 237, 243, .7);
  font-size: 14px;
}
.site-footer .footer-status {
  max-width: 360px;
  margin-top: 24px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(237, 247, 251, .1);
  border-radius: 9px;
}
.site-footer .footer-status strong {
  color: #edf7fb;
  font-size: 12.5px;
}
.site-footer .footer-status small {
  color: rgba(221, 237, 243, .56);
  font-size: 11.5px;
}
.site-footer .footer-column h2 {
  margin: 3px 0 16px;
  color: rgba(221, 237, 243, .5);
  font-size: 10px;
}
.site-footer .footer-column a {
  justify-content: flex-start;
  gap: 11px;
  min-height: 48px;
  color: rgba(237, 247, 251, .82);
  border-color: rgba(237, 247, 251, .1);
  font-size: 13.5px;
}
.site-footer .footer-link-label {
  min-width: 0;
  flex: 1;
}
.site-footer .footer-column b {
  flex: 0 0 auto;
  margin-left: auto;
}
.footer-link-icon,
.footer-address-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  color: rgba(237, 247, 251, .62);
  background: rgba(255, 255, 255, .018);
  border: 1px solid rgba(237, 247, 251, .12);
  border-radius: 7px;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.footer-link-icon svg,
.footer-address-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-contact .footer-link-icon {
  color: rgba(237, 247, 251, .62);
  background: rgba(255, 255, 255, .018);
  border-color: rgba(237, 247, 251, .12);
}
.site-footer .footer-column a:hover {
  color: #75ecff;
  border-color: rgba(117, 236, 255, .34);
}
.site-footer .footer-column a:hover .footer-link-icon,
.site-footer .footer-column a:focus-visible .footer-link-icon {
  color: #f4fbfd;
  background: rgba(117, 236, 255, .14);
  border-color: rgba(117, 236, 255, .36);
}
.site-footer .footer-contact a:hover .footer-link-icon,
.site-footer .footer-contact a:focus-visible .footer-link-icon {
  color: #f4fbfd;
  background: rgba(117, 236, 255, .14);
  border-color: rgba(117, 236, 255, .36);
}
.footer-location address {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 7px;
  min-height: 106px;
  padding: 16px 0 18px;
  color: rgba(221, 237, 243, .62);
  border-top: 1px solid rgba(237, 247, 251, .1);
  border-bottom: 1px solid rgba(237, 247, 251, .1);
  font-size: 12.5px;
  font-style: normal;
  line-height: 1.65;
}
.footer-address-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}
.footer-address-icon {
  margin-top: 1px;
}
.footer-location address strong {
  color: #edf7fb;
  font-size: 13.5px;
}
.site-footer .footer-location > a {
  border-top: 0;
}
.site-footer .footer-bottom {
  align-items: center;
  margin-top: 58px;
  padding-top: 24px;
  border-top-color: rgba(237, 247, 251, .1);
}
.site-footer .copyright {
  color: rgba(221, 237, 243, .5);
  font-size: 11px;
}
.site-footer .powered-by {
  display: flex;
  min-width: 300px;
  min-height: 58px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(237, 247, 251, .1);
  border-radius: 9px;
}
.site-footer .powered-by > span {
  color: rgba(221, 237, 243, .48);
  font-size: 9px;
  line-height: 1.4;
}
.site-footer .powered-by img {
  width: 168px;
  height: 29px;
}
.site-footer .powered-by:hover,
.site-footer .powered-by:focus-visible {
  background: rgba(255, 255, 255, .055);
  border-color: rgba(117, 236, 255, .32);
}

@media (max-width: 1100px) {
  .footer-cta {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  }
  .site-footer .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .footer-cta {
    grid-template-columns: 1fr;
  }
  .footer-cta-visual,
  .footer-cta-visual > img {
    min-height: 280px;
    height: 280px;
  }
  .footer-cta-visual::after {
    background: linear-gradient(180deg, rgba(7, 19, 29, .08), rgba(7, 19, 29, .68));
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding: 28px 0 104px;
  }
  .footer-cta {
    border-radius: 10px;
  }
  .footer-cta-copy {
    padding: 32px 22px 28px;
  }
  .footer-cta-kicker {
    margin-bottom: 14px;
  }
  .footer-cta h2 {
    font-size: clamp(32px, 10.5vw, 40px);
  }
  .footer-cta-copy > p:not(.footer-cta-kicker) {
    margin-top: 18px;
    font-size: 14px;
  }
  .footer-cta-actions {
    margin-top: 22px;
  }
  .footer-cta-button {
    display: none;
  }
  .footer-cta-visual,
  .footer-cta-visual > img {
    min-height: 230px;
    height: 230px;
  }
  .footer-cta-logo {
    left: 16px;
    bottom: 16px;
    padding: 9px 11px;
  }
  .footer-cta-logo img {
    width: 116px;
  }
  .footer-cta-proof {
    top: 14px;
    right: 14px;
    max-width: 158px;
    font-size: 8px;
    line-height: 1.35;
    text-align: right;
  }
  .site-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 50px;
  }
  .site-footer .footer-brand .wordmark-logo {
    height: 44px !important;
  }
  .site-footer .footer-status {
    max-width: none;
  }
  .site-footer .footer-column h2 {
    margin-bottom: 12px;
  }
  .footer-location address {
    min-height: 0;
  }
  .site-footer .footer-bottom {
    align-items: stretch;
    margin-top: 48px;
  }
  .site-footer .powered-by {
    width: 100%;
    min-width: 0;
  }
}

/* ---------- light service-centre direction + phone brand list + live IG embeds ---------- */
:root {
  --bg: #f4f7f8;
  --bg-soft: #eaf0f2;
  --card: #ffffff;
  --card-solid: #ffffff;
  --navy: #0a1822;
  --cyan: #087f9f;
  --cyan-bright: #0da6c9;
  --cyan-soft: rgba(8, 127, 159, .09);
  --violet: #366f94;
  --text: #17252e;
  --muted: #61707a;
  --line: rgba(27, 57, 72, .13);
  --line-strong: rgba(8, 127, 159, .36);
  --glow: 0 12px 32px rgba(8, 127, 159, .16);
  --glow-soft: 0 14px 34px rgba(28, 48, 60, .09);
  --warm: #b84708;
  --warm-2: #c4510c;
}

body {
  color: var(--text);
  background: var(--bg);
}
body::before {
  background:
    linear-gradient(rgba(8, 127, 159, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 127, 159, .022) 1px, transparent 1px),
    radial-gradient(44% 34% at 8% 8%, rgba(8, 127, 159, .08), transparent 72%),
    radial-gradient(36% 30% at 92% 24%, rgba(233, 122, 39, .06), transparent 72%);
  background-size: 64px 64px, 64px 64px, auto, auto;
}
main {
  color: var(--text);
  background: #f4f7f8;
}
.section {
  color: var(--text);
}
.services,
.pricing,
.symptoms,
.video,
.about {
  background: #ffffff;
}
.trust,
.how,
.location,
.faq {
  background: #edf3f5;
}
.services,
.pricing,
.trust,
.symptoms,
.how,
.video,
.location,
.about,
.faq {
  border-block: 1px solid rgba(27, 57, 72, .08);
}
.section-heading h2,
.video-copy h2,
.device-card h3,
.repair-problem h3,
.location-address strong,
.faq-list summary,
.faq-prep h3,
.trust-card h3,
.process-list h3 {
  color: var(--text);
}
.section-heading > p:last-child,
.video-copy > p:not(.section-kicker),
.about-copy > p:not(.section-kicker),
.location-address span,
.location-note,
.video-note,
.repair-problem p,
.repair-solution,
.repair-price span,
.process-list p,
.trust-card p,
.faq-list details p {
  color: var(--muted);
}
.section-kicker {
  color: var(--cyan);
}

.quick-strip {
  margin-top: 0;
  color: var(--text);
  background: #ffffff;
  border-block: 1px solid rgba(27, 57, 72, .1);
}
.quick-grid > div,
.quick-grid > div:hover {
  background: #ffffff;
  border-color: rgba(27, 57, 72, .11);
  box-shadow: none;
}
.quick-grid .q-ico {
  color: var(--cyan);
  background: var(--cyan-soft);
  border-color: rgba(8, 127, 159, .2);
}
.quick-grid strong {
  color: var(--text);
}
.quick-copy span {
  color: var(--muted);
}

.brand-strip {
  padding: 30px 0;
  overflow: visible;
  background: #f8fbfc;
  border-bottom: 1px solid rgba(27, 57, 72, .11);
}
.brand-strip-inner {
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.72fr);
  gap: 38px;
}
.brand-strip-title {
  align-items: center;
  gap: 18px;
}
.brand-strip-title img {
  width: 108px;
  filter: brightness(.28) saturate(0);
}
.brand-strip-title > div {
  min-width: 0;
}
.brand-strip-title span {
  display: block;
  color: #1b3441;
  font-size: 10px;
  letter-spacing: .16em;
}
.brand-strip-title p {
  max-width: 290px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.phone-brand-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.phone-brand-list li {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  padding: 12px 9px;
  background: #ffffff;
  border: 1px solid rgba(27, 57, 72, .13);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(28, 48, 60, .055);
}
.phone-brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 88%;
  max-height: 40px;
  object-fit: contain;
}
.phone-brand-list .brand-apple .phone-brand-logo {
  width: 32px;
}
.phone-brand-list .brand-samsung .phone-brand-logo {
  width: 118px;
}
.phone-brand-list .brand-xiaomi .phone-brand-logo {
  width: 38px;
}
.phone-brand-list .brand-oppo .phone-brand-logo {
  width: 96px;
}
.phone-brand-list .brand-realme .phone-brand-logo {
  width: 96px;
}
.phone-brand-list .brand-pixel .phone-brand-logo {
  width: 92px;
  max-height: 38px;
}

.repair-table,
.symptom-finder,
.process-list li,
.location-card,
.trust-card,
.price-note {
  background: #ffffff;
  border-color: var(--line);
  box-shadow: 0 14px 34px rgba(28, 48, 60, .08);
  backdrop-filter: none;
}
.repair-table-head,
.sf-tabs {
  color: var(--muted);
  background: #eef4f6;
  border-color: var(--line);
}
.repair-row:hover,
.repair-price,
.sf-result {
  background: #f5f9fa;
}
.repair-row,
.repair-row > *:not(:last-child),
.sf-result,
.sf-symptoms button {
  border-color: var(--line);
}
.repair-price strong {
  color: var(--warm);
}
.sf-tab {
  color: var(--muted);
  background: #ffffff;
  border-color: var(--line);
}
.sf-tab:hover {
  color: var(--cyan);
  border-color: var(--line-strong);
}
.sf-tab.active {
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-bright));
  border-color: transparent;
  box-shadow: none;
}
.sf-symptoms button,
.sf-tip p {
  color: #33454f;
}
.sf-symptoms button:hover {
  color: var(--cyan);
  background: #eef7f9;
}
.sf-cta {
  color: #ffffff;
  background: linear-gradient(90deg, var(--warm), var(--warm-2));
}
.process-icon {
  color: var(--cyan);
  background: var(--cyan-soft);
  border-color: rgba(8, 127, 159, .2);
  box-shadow: none;
}
.process-number {
  color: #7a8a93;
}
.video-frame video,
.location-map {
  border-color: var(--line);
  box-shadow: 0 18px 42px rgba(28, 48, 60, .12);
}
.map-buttons a {
  color: var(--text);
  background: #ffffff;
  border-color: var(--line-strong);
}
.about-copy blockquote {
  color: var(--text);
  background: var(--cyan-soft);
  box-shadow: none;
}
.about-links {
  border-color: var(--line);
}
.about-links a {
  color: var(--cyan);
}
.faq-prep {
  background: #fff7ef;
  border-color: rgba(233, 122, 39, .25);
  box-shadow: none;
}
.faq-prep li {
  color: #35464f;
}
.faq-prep li i {
  color: var(--warm);
  text-shadow: none;
}
.faq-list,
.faq-list details {
  border-color: var(--line);
}
.faq-list summary:hover {
  color: var(--cyan);
  text-shadow: none;
}

.ig-cases {
  color: var(--text);
  background:
    radial-gradient(50% 60% at 7% 10%, rgba(8, 127, 159, .07), transparent 72%),
    #f5f8f9;
  border-block: 1px solid rgba(27, 57, 72, .09);
}
.ig-cases .section-heading h2 {
  color: var(--text);
}
.ig-cases .section-heading > p:last-child {
  color: var(--muted);
  border-left-color: var(--line);
}
.ig-cases .section-kicker {
  color: var(--cyan);
}
.ig-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.ig-embed-card {
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(28, 48, 60, .09);
}
.ig-embed-card > header {
  min-height: 94px;
  padding: 20px 20px 17px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.ig-embed-card > header span {
  display: block;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
}
.ig-embed-card > header h3 {
  margin: 7px 0 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.3;
}
.ig-embed-shell {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f3f6f7;
}
.ig-embed-shell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.ig-embed-shell:hover img {
  transform: scale(1.035);
}
.ig-embed-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  color: #ffffff;
  background: rgba(8, 11, 18, .74);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  backdrop-filter: blur(4px);
}
.ig-embed-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex: none;
}

.ig-embed-meta {
  padding: 14px 20px 18px;
  background: #ffffff;
}
.ig-embed-meta p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}
.ig-embed-meta a {
  display: inline-block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}
.ig-embed-meta a:hover {
  text-decoration: underline;
}
.ig-source-note {
  color: var(--muted);
}
.ig-source-note a {
  color: var(--cyan);
}

@media (max-width: 1100px) {
  .brand-strip-inner {
    grid-template-columns: 1fr;
  }
  .brand-strip-title p {
    max-width: 520px;
  }
  .phone-brand-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ig-embed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ig-embed-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, 540px);
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .brand-strip {
    padding: 26px 0;
  }
  .brand-strip-inner {
    gap: 22px;
  }
  .brand-strip-title {
    align-items: flex-start;
  }
  .brand-strip-title img {
    width: 96px;
  }
  .phone-brand-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .phone-brand-list li {
    min-height: 70px;
    padding: 12px 8px;
  }
  .ig-embed-grid {
    grid-template-columns: 1fr;
  }
  .ig-embed-card:last-child {
    grid-column: auto;
    width: 100%;
  }
  .ig-embed-shell {
    min-height: 500px;
    padding: 8px;
  }
  .ig-embed-card > header {
    min-height: 86px;
  }
}

/* ============================================================
   BRAND GLYPHS + WhatsApp channel identity
   Icons: Simple Icons 16.21.0 (CC0), inlined as an SVG sprite.
   Simple Icons are solid fill glyphs, so they must override the
   stroke-based icon rules above (.footer-link-icon svg et al).
   Remove this whole block to revert to the previous styling.
   ============================================================ */
:root { --wa: #25d366; --wa-hi: #34e57a; --wa-ink: #04291c; }

.brand-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

svg.brand-glyph { fill: currentColor; stroke: none; }

/* glyph sitting inside a CTA button */
.cta-glyph { width: 1.15em; height: 1.15em; flex: none; }
/* glyph in the plain text link row under "关于 Martin" */
.link-glyph { width: 1.05em; height: 1.05em; flex: none; align-self: center; }

/* Buttons whose layout is space-between need the label to carry that,
   now that the glyph is the first flex child. */
.sf-cta .cta-label,
.mobile-contact .cta-label {
  flex: 1; display: inline-flex; align-items: center; justify-content: space-between; gap: 12px;
}
@media (max-width: 720px) {
  .site-nav .nav-cta .cta-label {
    flex: 1; display: inline-flex; align-items: center; justify-content: space-between; gap: 12px;
  }
}

/* WhatsApp is the one conversion channel on this page, so its CTAs wear
   WhatsApp green instead of the generic warm accent. Ink is near-black,
   not white: white on #25d366 is 1.98:1 and fails WCAG AA. */
.button-primary.is-whatsapp,
.nav-cta.is-whatsapp,
.sf-cta.is-whatsapp,
.mobile-contact.is-whatsapp {
  color: var(--wa-ink);
  background: var(--wa);
  border-color: var(--wa);
}
.button-primary.is-whatsapp { box-shadow: 0 10px 26px rgba(37, 211, 102, .3); }
.nav-cta.is-whatsapp { box-shadow: 0 6px 18px rgba(37, 211, 102, .3); }
.sf-cta.is-whatsapp { box-shadow: 0 8px 20px rgba(37, 211, 102, .3); }
.mobile-contact.is-whatsapp { box-shadow: 0 -4px 24px rgba(37, 211, 102, .32); }
.mobile-contact.is-whatsapp { gap: 10px; }

.button-primary.is-whatsapp:hover,
.nav-cta.is-whatsapp:hover,
.sf-cta.is-whatsapp:hover {
  background: var(--wa-hi);
  border-color: var(--wa-hi);
  filter: none;
  box-shadow: 0 14px 32px rgba(37, 211, 102, .42);
}

/* Map buttons carry the destination app's own mark. */
.map-glyph { width: 15px; height: 15px; flex: none; }
.map-buttons a .cta-label { display: inline-flex; align-items: center; gap: 10px; }

/* ============================================================
   GS Mobile Repair reference direction — bright service centre,
   repair-photo first, graphite + gold accents.
   ============================================================ */
:root {
  --bg: #f7f7f3;
  --bg-soft: #eeeeea;
  --card: #ffffff;
  --card-solid: #ffffff;
  --navy: #0f1110;
  --cyan: #176b73;
  --cyan-bright: #20838d;
  --cyan-soft: rgba(23, 107, 115, .08);
  --violet: #566160;
  --text: #141512;
  --muted: #656860;
  --line: rgba(20, 21, 18, .12);
  --line-strong: rgba(177, 128, 42, .42);
  --glow: 0 14px 34px rgba(177, 128, 42, .18);
  --glow-soft: 0 16px 38px rgba(31, 33, 28, .09);
  --warm: #b1802a;
  --warm-2: #d4a64a;
  --header: 112px;
}

body {
  color: var(--text);
  background: var(--bg);
}

body::before {
  background: none;
}

main {
  color: var(--text);
  background: var(--bg);
}

.site-header,
.site-header.scrolled {
  height: var(--header);
  color: var(--text);
  background: rgba(255, 255, 252, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(31, 33, 28, .08);
  backdrop-filter: blur(16px);
}

.top-contact-bar {
  height: 36px;
  color: rgba(255, 255, 252, .82);
  background: #10120f;
  border-bottom: 1px solid rgba(212, 166, 74, .28);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1;
}

.top-contact-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.top-contact-inner span,
.top-contact-inner a {
  min-width: 0;
  white-space: nowrap;
}

.top-contact-inner span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-contact-inner a {
  color: #f1d18c;
  transition: color .2s ease;
}

.top-contact-inner a:hover {
  color: #ffffff;
}

.header-inner {
  height: calc(var(--header) - 36px);
  gap: 24px;
}

.wordmark-logo {
  filter: none;
}

.site-nav > a:not(.nav-cta) {
  color: rgba(20, 21, 18, .72);
}

.site-nav > a:not(.nav-cta):hover,
.site-nav > a[aria-current="location"] {
  color: var(--warm);
}

.lang-select {
  color: var(--text);
  background: #ffffff;
  border-color: rgba(20, 21, 18, .16);
}

.lang-select:hover,
.lang-dropdown.open .lang-select,
.lang-select:focus {
  border-color: var(--warm);
  box-shadow: 0 8px 22px rgba(177, 128, 42, .12);
}

.lang-caret {
  color: var(--warm);
  background: rgba(177, 128, 42, .1);
}

.lang-menu {
  color: var(--text);
  background: #ffffff;
  border-color: rgba(20, 21, 18, .12);
  box-shadow: 0 18px 42px rgba(31, 33, 28, .14);
}

.lang-menu button {
  color: rgba(20, 21, 18, .78);
}

.lang-menu button:hover,
.lang-menu button[aria-selected="true"] {
  color: var(--warm);
  background: rgba(177, 128, 42, .08);
}

.button,
.nav-cta,
.sf-cta,
.mobile-contact {
  border-radius: 8px;
}

.button-ghost {
  color: var(--text);
  background: #ffffff;
  border-color: rgba(20, 21, 18, .16);
  box-shadow: 0 10px 28px rgba(31, 33, 28, .08);
  backdrop-filter: none;
}

.button-ghost:hover {
  color: #ffffff;
  background: #10120f;
  border-color: #10120f;
  box-shadow: 0 12px 32px rgba(31, 33, 28, .18);
}

.hero {
  min-height: 720px;
  height: auto;
  padding: 150px 0 74px;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255, 255, 252, .98) 0%, rgba(255, 255, 252, .94) 44%, rgba(255, 255, 252, .72) 68%, rgba(255, 255, 252, .42) 100%),
    #fbfbf7;
}

.hero-photo {
  inset: 112px 0 0 48%;
  opacity: .18;
  background-position: center;
  filter: saturate(.6) contrast(1.06);
}

.hero-shade {
  display: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(440px, .98fr);
  align-items: center;
  gap: clamp(36px, 5vw, 76px);
  padding-top: 0;
}

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

.hero .eyebrow,
.hero .hero-lede {
  color: var(--muted);
}

.eyebrow,
.section-kicker,
.footer-cta-kicker {
  letter-spacing: .16em;
}

.hero .eyebrow span,
.eyebrow span {
  background: var(--warm);
  box-shadow: none;
}

.hero h1 {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--warm);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  filter: none;
}

.hero-lede {
  max-width: 560px;
  font-size: 17px;
}

.hero-media-stage {
  min-height: 526px;
}

.hero-media-stage::before {
  display: none;
}

.hero-photo-card {
  inset: 20px 14px 44px 58px;
  border: 0;
  border-radius: 0;
  background: #d8d6cf;
  box-shadow: 0 26px 70px rgba(31, 33, 28, .22);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.hero-photo-card::before {
  background:
    linear-gradient(90deg, rgba(16, 18, 15, .02), rgba(16, 18, 15, .06) 48%, rgba(16, 18, 15, .24)),
    linear-gradient(180deg, rgba(255,255,255,.18), transparent 45%);
}

.hero-photo-card::after {
  top: 22px;
  right: 32px;
  width: 84px;
  height: 5px;
  background: var(--warm);
}

.hero-photo-card > img {
  filter: saturate(.9) contrast(1.04);
}

.hero-photo-badge {
  left: 34px;
  right: 46px;
  bottom: 26px;
  border-color: rgba(255, 255, 255, .58);
  border-radius: 8px;
  background: rgba(255, 255, 252, .9);
  box-shadow: 0 16px 36px rgba(31, 33, 28, .16);
}

.hero-photo-badge img {
  filter: brightness(.22) saturate(0);
}

.hero-photo-badge span {
  color: rgba(20, 21, 18, .72);
}

.hero-logo-tile {
  top: 0;
  left: 4px;
  width: 152px;
  border-color: rgba(177, 128, 42, .32);
  border-radius: 8px;
  background: #10120f;
  box-shadow: 0 18px 42px rgba(31, 33, 28, .26);
}

.hero-device-cluster {
  display: none;
}

.quick-strip,
.brand-strip {
  color: var(--text);
  background: #ffffff;
  border-block: 1px solid rgba(20, 21, 18, .1);
}

.quick-grid > div,
.quick-grid > div:hover,
.phone-brand-list li {
  background: #ffffff;
  border-color: rgba(20, 21, 18, .12);
  box-shadow: none;
}

.quick-grid .q-ico,
.trust-ico,
.process-icon,
.repair-problem i {
  color: var(--warm);
  background: rgba(177, 128, 42, .1);
  border-color: rgba(177, 128, 42, .24);
  box-shadow: none;
}

.brand-strip {
  padding: 34px 0;
  background: #f1f1ec;
}

.brand-strip-title img {
  filter: brightness(.22) saturate(0);
}

.section {
  padding: 104px 0;
  color: var(--text);
  background: var(--bg);
}

.services,
.symptoms,
.video,
.about,
.faq {
  background: #ffffff;
}

.pricing,
.trust,
.how,
.location,
.ig-cases {
  background: #f4f4ef;
}

.services,
.pricing,
.trust,
.symptoms,
.how,
.video,
.location,
.about,
.faq,
.ig-cases {
  border-block: 1px solid rgba(20, 21, 18, .08);
}

.section-heading h2,
.video-copy h2,
.device-card h3,
.repair-problem h3,
.location-address strong,
.faq-list summary,
.faq-prep h3,
.trust-card h3,
.process-list h3,
.ig-embed-card > header h3 {
  color: var(--text);
}

.section-heading > p:last-child,
.video-copy > p:not(.section-kicker),
.about-copy > p:not(.section-kicker),
.location-address span,
.location-note,
.video-note,
.repair-problem p,
.repair-solution,
.repair-price span,
.process-list p,
.trust-card p,
.faq-list details p,
.ig-embed-meta p {
  color: var(--muted);
}

.section-kicker,
.services .section-kicker,
.ig-cases .section-kicker,
.ig-embed-card > header span,
.repair-price strong,
.ig-embed-meta a,
.ig-source-note a,
.about-links a {
  color: var(--warm);
}

.services .device-card,
.repair-table,
.symptom-finder,
.process-list li,
.location-card,
.trust-card,
.price-note,
.ig-embed-card {
  background: #ffffff;
  border: 1px solid rgba(20, 21, 18, .12);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(31, 33, 28, .08);
  backdrop-filter: none;
}

.services .device-card:hover,
.trust-card:hover,
.process-list li:hover {
  border-color: rgba(177, 128, 42, .38);
  box-shadow: 0 20px 46px rgba(31, 33, 28, .12);
}

.services .device-glyph {
  background: #deded7;
  border-bottom-color: rgba(20, 21, 18, .1);
}

.services .device-card-top {
  color: rgba(255, 255, 252, .78);
  background: rgba(16, 18, 15, .82);
  border-color: rgba(255, 255, 252, .2);
}

.services .device-card li::before {
  background: var(--warm);
}

.services .device-card > a,
.price-note .sources a {
  color: var(--cyan);
}

.repair-table-head,
.sf-tabs {
  color: var(--muted);
  background: #ecece6;
  border-color: rgba(20, 21, 18, .1);
}

.repair-row:hover,
.repair-price,
.sf-result {
  background: #f7f7f3;
}

.sf-tab.active {
  color: #ffffff;
  background: #10120f;
}

.sf-symptoms button:hover {
  color: var(--warm);
  background: #f7f2e6;
}

.video-frame video,
.location-map {
  border-color: rgba(20, 21, 18, .12);
  box-shadow: 0 18px 42px rgba(31, 33, 28, .12);
}

.map-buttons a {
  color: var(--text);
  background: #ffffff;
  border-color: rgba(177, 128, 42, .38);
}

.map-buttons a:hover {
  color: #ffffff;
  background: #10120f;
  border-color: #10120f;
  box-shadow: none;
}

.about-copy blockquote,
.faq-prep {
  background: #faf5e9;
  border-color: rgba(177, 128, 42, .28);
}

.faq-prep li i,
.faq-list summary span {
  color: var(--warm);
}

.ig-cases {
  color: var(--text);
}

.ig-embed-shell {
  background: #e5e3dc;
}

.ig-embed-badge {
  color: #ffffff;
  background: rgba(16, 18, 15, .78);
}

.site-footer {
  color: #f7f7f3;
  background: #10120f;
  border-top-color: rgba(212, 166, 74, .24);
}

.site-footer::before {
  background:
    linear-gradient(rgba(212, 166, 74, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 166, 74, .035) 1px, transparent 1px);
  background-size: 52px 52px;
}

.footer-cta {
  background: #181a16;
  border-color: rgba(212, 166, 74, .24);
  border-radius: 8px;
}

.footer-cta::before {
  background: var(--warm);
}

.footer-cta h2,
.site-footer .footer-status strong,
.footer-location address strong {
  color: #f7f7f3;
}

.footer-cta h2 span,
.footer-cta-kicker,
.site-footer .footer-column a:hover,
.site-footer .powered-by:hover,
.site-footer .powered-by:focus-visible {
  color: #f1d18c;
}

.footer-cta-copy > p:not(.footer-cta-kicker),
.footer-open-now,
.site-footer .footer-brand-block > p,
.site-footer .footer-status small,
.footer-location address,
.site-footer .copyright {
  color: rgba(247, 247, 243, .66);
}

.footer-cta-visual {
  background: #10120f;
}

.footer-cta-visual::after {
  background:
    linear-gradient(90deg, #181a16 0%, rgba(24, 26, 22, .32) 36%, rgba(24, 26, 22, .08) 100%),
    linear-gradient(180deg, rgba(16, 18, 15, .02), rgba(16, 18, 15, .44));
}

.footer-cta-visual > img {
  filter: saturate(.8) contrast(1.04);
}

.footer-cta-logo,
.site-footer .footer-status,
.site-footer .powered-by,
.footer-link-icon,
.footer-address-icon {
  background: rgba(255, 255, 252, .045);
  border-color: rgba(255, 255, 252, .12);
  border-radius: 8px;
}

.site-footer .footer-column h2,
.site-footer .powered-by > span {
  color: rgba(247, 247, 243, .52);
}

.site-footer .footer-column a,
.footer-location address {
  color: rgba(247, 247, 243, .82);
  border-color: rgba(247, 247, 243, .12);
}

.footer-link-icon,
.footer-address-icon {
  color: rgba(241, 209, 140, .78);
}

:where(a, button, summary, [tabindex]):focus-visible,
.lang-select:focus-visible {
  outline-color: var(--warm-2);
}

@media (max-width: 1100px) {
  :root {
    --header: 104px;
  }

  .top-contact-bar {
    height: 34px;
  }

  .header-inner {
    height: calc(var(--header) - 34px);
  }

  .hero {
    padding-top: 132px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media-stage {
    min-height: 430px;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 64px;
  }

  .top-contact-bar {
    display: none;
  }

  .site-header,
  .site-header.scrolled {
    height: var(--header);
    background: rgba(255, 255, 252, .98);
  }

  .header-inner {
    height: var(--header);
  }

  .site-nav {
    inset: var(--header) 0 0;
    background: rgba(255, 255, 252, .99);
  }

  .site-nav > a:not(.nav-cta) {
    color: var(--text);
    border-bottom-color: var(--line);
  }

  .menu-button,
  .menu-button.open {
    color: var(--text);
  }

  .hero {
    min-height: 0;
    padding: 88px 0 36px;
    background: #fbfbf7;
  }

  .hero-photo {
    inset: 58% 0 0 0;
    opacity: .12;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(39px, 11.6vw, 50px);
    line-height: 1.08;
    word-break: keep-all;
  }

  .hero-lede {
    font-size: 14.5px;
  }

  .hero-media-stage {
    min-height: 330px;
  }

  .hero-photo-card {
    inset: 18px 0 18px 28px;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  }

  .hero-logo-tile {
    width: 104px;
  }

  .hero-photo-badge {
    left: 22px;
    right: 26px;
    bottom: 12px;
    min-height: 54px;
    padding: 10px 12px;
  }

  .hero-photo-badge img {
    width: 88px;
  }

  .hero-photo-badge span {
    font-size: 8.5px;
  }

  .section {
    padding: 72px 0;
  }

  .ig-embed-shell {
    min-height: 0;
  }

  .site-footer {
    padding-top: 28px;
  }
}

/* Section 01 is a service catalogue; section 02 carries real repair evidence. */
.services .device-glyph {
  display: grid;
  height: auto;
  aspect-ratio: 16 / 10;
  place-items: center;
  overflow: hidden;
  background: #eee9df;
}
.services .device-glyph img,
.js .services .device-card .device-glyph img,
.js .services .device-card.visible .device-glyph img,
.services .device-card:hover .device-glyph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(.9) contrast(1.02);
  transform: none;
}
.services .device-card:hover .device-glyph img {
  transform: scale(1.025);
}
.services .device-card-top {
  color: var(--warm);
  background: rgba(255, 252, 246, .9);
  border-color: rgba(177, 128, 42, .26);
  box-shadow: 0 8px 22px rgba(31, 33, 28, .12);
  backdrop-filter: blur(12px);
}
.services .device-card-top b {
  color: #2f302b;
}
.services .device-card > a {
  color: var(--warm);
}
.ig-cases {
  position: relative;
  border-top-color: rgba(177, 128, 42, .24);
}
.ig-cases::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(180px, 28vw);
  height: 3px;
  background: var(--warm);
  transform: translateX(-50%);
}

@media (max-width: 720px) {
  .services .device-glyph { aspect-ratio: 16 / 10; }
}

/* ============================================================
   Martin portrait + motion refresh — stronger repair-desk UI,
   clearer symptom triage, and richer cards without new libraries.
   ============================================================ */
:root {
  --ink: #141512;
  --paper: #fffef9;
  --bench: #10120f;
  --gold: #b1802a;
  --gold-soft: rgba(177, 128, 42, .12);
  --teal: #176b73;
  --teal-soft: rgba(23, 107, 115, .08);
}

/* Page-load and section motion: visible enough to feel intentional, still lightweight. */
.js .hero-copy > *,
.js .hero-media-stage {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity .72s var(--ease), transform .86s var(--ease);
}

.js .hero-media-stage {
  transform: translate3d(28px, 10px, 0) scale(.975);
}

.js.motion-ready .hero-copy > *,
.js.motion-ready .hero-media-stage {
  opacity: 1;
  transform: none;
}

.js.motion-ready .hero-copy > :nth-child(1) { transition-delay: .05s; }
.js.motion-ready .hero-copy > :nth-child(2) { transition-delay: .14s; }
.js.motion-ready .hero-copy > :nth-child(3) { transition-delay: .23s; }
.js.motion-ready .hero-copy > :nth-child(4) { transition-delay: .32s; }
.js.motion-ready .hero-copy > :nth-child(5) { transition-delay: .41s; }
.js.motion-ready .hero-media-stage { transition-delay: .18s; }

.js .reveal {
  transform: translate3d(0, 32px, 0) scale(.985);
  transition-duration: .78s;
}

.js .reveal[data-motion="scale"] {
  transform: translate3d(0, 24px, 0) scale(.95);
}

.js .reveal[data-motion="clip"] {
  clip-path: none;
  transform: translate3d(0, 24px, 0) scale(.985);
  transition: opacity .5s ease, transform .78s var(--ease);
}

.js .reveal.visible,
.js .reveal[data-motion="scale"].visible {
  transform: none;
}

.js .reveal[data-motion="clip"].visible {
  clip-path: none;
  transform: none;
}

.js .reveal[data-motion="clip"] .portrait-frame {
  clip-path: inset(0 0 18% 0 round 20px);
  transition: clip-path .95s var(--ease), box-shadow .5s ease;
}

.js .reveal[data-motion="clip"].visible .portrait-frame {
  clip-path: inset(0 0 0 0 round 20px);
}

.button,
.nav-cta,
.mobile-contact,
.sf-cta,
.map-buttons a,
.about-links a,
.services .device-card,
.trust-card,
.process-list li,
.ig-embed-card,
.symptom-finder {
  will-change: transform;
}

.button:active,
.nav-cta:active,
.sf-tab:active,
.sf-cta:active,
.map-buttons a:active,
.mobile-contact:active {
  transform: translateY(1px) scale(.99);
}

.hero-photo-card {
  animation: bench-float 7.5s var(--ease) infinite alternate;
}

.hero-logo-tile {
  animation: tile-breathe 6.5s var(--ease) infinite alternate;
}

.hero-photo-card::after {
  animation: measure-sweep 3.8s var(--ease) infinite;
}

@keyframes bench-float {
  from { transform: translate3d(0, 0, 0) rotate(.001deg); }
  to { transform: translate3d(0, -10px, 0) rotate(.001deg); }
}

@keyframes tile-breathe {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -6px, 0); }
}

@keyframes measure-sweep {
  0%, 34% { transform: scaleX(.36); opacity: .48; }
  58% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(.36); opacity: .48; }
}

.js .reveal[data-stagger="1"] { transition-delay: .08s; }
.js .reveal[data-stagger="2"] { transition-delay: .16s; }
.js .reveal[data-stagger="3"] { transition-delay: .24s; }
.js .reveal[data-stagger="4"] { transition-delay: .32s; }

.services .device-card,
.trust-card,
.process-list li,
.ig-embed-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.services .device-card::after,
.trust-card::after,
.process-list li::after,
.ig-embed-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(177, 128, 42, 0);
  border-radius: inherit;
  transition: border-color .24s ease, box-shadow .24s ease;
}

.services .device-card:hover::after,
.trust-card:hover::after,
.process-list li:hover::after,
.ig-embed-card:hover::after {
  border-color: rgba(177, 128, 42, .46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
}

.services .device-card:hover,
.trust-card:hover,
.process-list li:hover,
.ig-embed-card:hover {
  transform: translateY(-5px);
}

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

.trust-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 18px;
  min-height: 168px;
  padding: 26px;
  background: #fffef9;
  box-shadow: 0 14px 36px rgba(31, 33, 28, .07);
}

.trust-card .trust-ico {
  grid-row: 1 / span 2;
  width: 54px;
  height: 54px;
}

.trust-card h3 {
  align-self: end;
  margin-bottom: 8px;
}

.process-list {
  gap: 0;
  overflow: hidden;
  background: #fffef9;
  border: 1px solid rgba(20, 21, 18, .12);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(31, 33, 28, .08);
}

.process-list li,
.process-list li:hover {
  min-height: 230px;
  border: 0;
  border-right: 1px solid rgba(20, 21, 18, .1);
  border-radius: 0;
  box-shadow: none;
}

.process-list li:last-child {
  border-right: 0;
}

.services .device-card-top,
.ig-embed-badge,
.portrait-status {
  backdrop-filter: blur(12px);
}

.symptoms {
  position: relative;
  background:
    linear-gradient(180deg, #fffef9 0%, #f7f7f3 100%);
}

.symptom-finder {
  display: grid;
  grid-template-columns: minmax(190px, .34fr) minmax(0, 1fr);
  overflow: hidden;
  border-color: rgba(20, 21, 18, .14);
  background: #fffef9;
  box-shadow: 0 24px 60px rgba(31, 33, 28, .12);
}

.sf-tabs {
  align-content: start;
  display: grid;
  gap: 10px;
  padding: 22px;
  background:
    linear-gradient(180deg, #171914 0%, #10120f 100%);
  border-right: 1px solid rgba(20, 21, 18, .12);
  border-bottom: 0;
}

.sf-tab {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 9px 14px;
  color: rgba(255, 255, 252, .66);
  background: rgba(255, 255, 252, .04);
  border-color: rgba(255, 255, 252, .12);
  border-radius: 12px;
  text-align: left;
}

.sf-tab::before {
  display: none;
}

.sf-tab svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .82;
  transition: opacity .2s ease, transform .28s var(--ease);
}

.sf-tab > span {
  display: grid;
  gap: 2px;
}

.sf-tab strong {
  font-size: 13px;
  line-height: 1.2;
}

.sf-tab small {
  opacity: .56;
  font: 760 8px/1.1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .16em;
}

.sf-tab:hover {
  color: #f1d18c;
  background: rgba(255, 255, 252, .08);
  border-color: rgba(212, 166, 74, .32);
}

.sf-tab:hover svg,
.sf-tab.active svg {
  opacity: 1;
  transform: translateY(-1px) scale(1.05);
}

.sf-tab.active {
  color: #10120f;
  background: #f1d18c;
  border-color: #f1d18c;
  box-shadow: 0 12px 28px rgba(177, 128, 42, .26);
}

.sf-body {
  grid-template-columns: minmax(0, .92fr) minmax(320px, .78fr);
  min-height: 460px;
}

.sf-list-wrap {
  min-width: 0;
  padding: 24px;
}

.sf-list-label,
.sf-result-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sf-symptoms {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.sf-symptoms li {
  min-width: 0;
  animation: choice-enter .44s var(--ease) both;
  animation-delay: calc(var(--choice-index, 0) * 55ms);
}

.sf-symptoms li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.sf-symptoms button {
  --mx: 50%;
  --my: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 82px;
  padding: 14px 15px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(20, 21, 18, .11);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(31, 33, 28, .055);
  transition: color .24s ease, background .24s ease, border-color .24s ease,
    box-shadow .24s ease, transform .28s var(--ease);
}

.sf-symptoms button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(130px circle at var(--mx) var(--my), rgba(177, 128, 42, .18), transparent 72%);
  opacity: 0;
  transition: opacity .24s ease;
}

.sf-symptoms button:hover {
  color: var(--ink);
  background: #faf5e9;
  border-color: rgba(177, 128, 42, .36);
  box-shadow: 0 16px 32px rgba(31, 33, 28, .1);
  transform: translateY(-3px);
}

.sf-symptoms button:hover::before {
  opacity: 1;
}

.sf-symptoms button.is-selected {
  color: #fffef9;
  background: #181a16;
  border-color: #181a16;
  box-shadow: 0 16px 34px rgba(16, 18, 15, .2);
  transform: translateY(-2px);
}

.sf-choice-copy {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.sf-choice-copy strong {
  font-size: 13.5px;
  line-height: 1.3;
}

.sf-choice-copy small {
  overflow: hidden;
  color: #7c7f77;
  font: 760 8px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .09em;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .2s ease;
}

.sf-symptoms button.is-selected small {
  color: #d7bd83;
}

.sf-symptoms button i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--gold);
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  transition: color .2s ease, background .2s ease, transform .28s var(--ease);
}

.sf-symptoms button:hover i {
  transform: translateX(2px) rotate(4deg);
}

.sf-symptoms button.is-selected i {
  color: #181a16;
  background: #f1d18c;
}

@keyframes choice-enter {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
  to { opacity: 1; transform: none; }
}

.sf-result {
  position: relative;
  justify-content: flex-start;
  padding: 28px;
  background:
    linear-gradient(rgba(20, 21, 18, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 21, 18, .045) 1px, transparent 1px),
    #f7f7f3;
  background-size: 26px 26px;
  border-left: 1px solid rgba(20, 21, 18, .1);
}

.sf-result::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  background: var(--gold);
  transform-origin: left;
  animation: result-scan 3.2s var(--ease) infinite;
}

.sf-diagnostic-path {
  display: grid;
  grid-template-columns: auto minmax(18px, 1fr) auto minmax(18px, 1fr) auto;
  align-items: center;
  width: 100%;
  margin: 0 0 21px;
}

.sf-diagnostic-path > span {
  display: grid;
  place-items: center;
  gap: 6px;
  color: #92958e;
}

.sf-diagnostic-path b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #777a73;
  background: rgba(255, 254, 249, .86);
  border: 1px solid rgba(20, 21, 18, .14);
  border-radius: 50%;
  font: 820 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  transition: color .28s ease, background .28s ease, border-color .28s ease, transform .28s var(--ease);
}

.sf-diagnostic-path em {
  font-style: normal;
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .08em;
}

.sf-diagnostic-path > i {
  display: block;
  height: 1px;
  margin: -15px 8px 0;
  background: rgba(20, 21, 18, .14);
  transform-origin: left;
}

.sf-diagnostic-path .is-active {
  color: var(--gold);
}

.sf-diagnostic-path .is-active b {
  color: #181a16;
  background: #f1d18c;
  border-color: #f1d18c;
  box-shadow: 0 0 0 5px rgba(177, 128, 42, .1);
}

.sf-result.has-result .sf-diagnostic-path span:nth-of-type(1) b {
  color: #fffef9;
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: none;
}

.sf-result.has-result .sf-diagnostic-path span:nth-of-type(2) {
  color: var(--gold);
}

.sf-result.has-result .sf-diagnostic-path span:nth-of-type(2) b {
  color: #181a16;
  background: #f1d18c;
  border-color: #f1d18c;
  box-shadow: 0 0 0 5px rgba(177, 128, 42, .1);
  transform: scale(1.05);
}

.sf-result-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 29px;
  margin: 0 0 18px;
  padding: 0 10px;
  color: #62665e;
  background: rgba(255, 254, 249, .82);
  border: 1px solid rgba(20, 21, 18, .11);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.sf-result-status > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b7bab3;
  transition: background .24s ease, box-shadow .24s ease;
}

.sf-result.has-result .sf-result-status > span {
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(23, 107, 115, .1);
}

@keyframes result-scan {
  0%, 20% { transform: scaleX(.18); opacity: .45; }
  55% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(.18); opacity: .45; }
}

.sf-default {
  max-width: 310px;
  font-size: 16px;
  line-height: 1.7;
}

.sf-default,
.sf-tip,
.sf-message-card,
.sf-cta,
.sf-disclaimer {
  transition: opacity .18s ease, transform .22s var(--ease);
}

.sf-result.is-changing .sf-default,
.sf-result.is-changing .sf-tip {
  opacity: 0;
  transform: translateY(6px);
}

.sf-tip[hidden],
.sf-default[hidden],
.sf-cta[hidden] {
  display: none !important;
}

.sf-tip {
  display: grid;
  gap: 14px;
  animation: result-enter .38s var(--ease) both;
}

.sf-tip > div,
.sf-message-card {
  padding: 16px 18px;
  background: rgba(255, 254, 249, .86);
  border: 1px solid rgba(20, 21, 18, .11);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(31, 33, 28, .06);
}

.sf-tip h4 {
  color: var(--gold);
  text-shadow: none;
}

.sf-tip p {
  color: #353833;
}

.sf-message-card {
  color: var(--ink);
}

.sf-message-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13.5px;
}

.sf-message-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sf-message-card li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.sf-message-card li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.sf-result.has-result .sf-message-card {
  border-color: rgba(23, 107, 115, .2);
}

.sf-cta {
  margin-top: 2px;
}

.sf-disclaimer {
  margin: 2px 0 0;
  color: #7b7e76;
  font-size: 10.5px;
  line-height: 1.55;
}

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

.about {
  background:
    linear-gradient(180deg, #fffef9 0%, #f7f7f3 100%);
}

.about-grid {
  grid-template-columns: minmax(340px, .92fr) minmax(0, 1.08fr);
  gap: clamp(42px, 6vw, 82px);
}

.martin-portrait {
  position: relative;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 21, 18, .12);
  border-radius: 20px;
  background: #d8d6cf;
  box-shadow: 0 26px 70px rgba(31, 33, 28, .18);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), transparent 36%, rgba(255,255,255,.18) 50%, transparent 64%),
    linear-gradient(180deg, transparent 0%, rgba(16, 18, 15, .28) 100%);
  transform: translateX(-120%);
  animation: portrait-scan 5.6s var(--ease) infinite;
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(.95) contrast(1.04);
  transition: transform .7s var(--ease), filter .35s ease;
}

.martin-portrait:hover .portrait-frame img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.05);
}

@keyframes portrait-scan {
  0%, 42% { transform: translateX(-120%); opacity: 0; }
  50% { opacity: .65; }
  70%, 100% { transform: translateX(120%); opacity: 0; }
}

.portrait-status {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 13px;
  color: #f7f7f3;
  background: rgba(16, 18, 15, .76);
  border: 1px solid rgba(247, 247, 243, .18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
}

.portrait-experience {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: #181a16;
  background: rgba(241, 209, 140, .92);
  border: 1px solid rgba(255, 255, 252, .4);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(16, 18, 15, .14);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 860;
}

.portrait-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .38);
  animation: status-pulse 1.9s ease-out infinite;
}

@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .38); }
  100% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

.martin-portrait figcaption {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  letter-spacing: 0;
}

.martin-portrait figcaption span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.martin-portrait figcaption strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.about-copy > p:not(.section-kicker) {
  max-width: 650px;
  color: #575a53;
  font-size: 16px;
}

.about-proof-list {
  display: grid;
  margin: 28px 0 0;
  border-top: 1px solid rgba(20, 21, 18, .14);
  border-bottom: 1px solid rgba(20, 21, 18, .14);
}

.about-proof-list > div {
  display: grid;
  grid-template-columns: minmax(118px, .42fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 70px;
  padding: 14px 2px;
  border-bottom: 1px solid rgba(20, 21, 18, .1);
  transition: padding .24s var(--ease), background .24s ease;
}

.about-proof-list > div:last-child {
  border-bottom: 0;
}

.about-proof-list > div:hover {
  padding-inline: 10px;
  background: rgba(177, 128, 42, .055);
}

.about-proof-list dt {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-proof-list dt span {
  color: var(--gold);
  font: 820 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .12em;
}

.about-proof-list dt b {
  font-size: 12px;
  letter-spacing: .04em;
}

.about-proof-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.5;
}

.js .about-copy .about-proof-list > div {
  opacity: 0;
  transform: translateX(14px);
}

.js .about-copy.visible .about-proof-list > div {
  animation: proof-row-enter .5s var(--ease) both;
}

.js .about-copy.visible .about-proof-list > div:nth-child(1) { animation-delay: .24s; }
.js .about-copy.visible .about-proof-list > div:nth-child(2) { animation-delay: .34s; }
.js .about-copy.visible .about-proof-list > div:nth-child(3) { animation-delay: .44s; }

@keyframes proof-row-enter {
  to { opacity: 1; transform: none; }
}

.about-copy blockquote {
  border-left-color: var(--gold);
}

.about-links {
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 0;
  border-top: 0;
}

.about-links a {
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--ink);
  background: #fffef9;
  border: 1px solid rgba(20, 21, 18, .14);
  border-radius: 999px;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .24s var(--ease);
}

.about-links a:first-child {
  color: #fffef9;
  background: #181a16;
  border-color: #181a16;
}

.about-links a:hover {
  color: #181a16;
  background: #f1d18c;
  border-color: #f1d18c;
  text-decoration: none;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .symptom-finder {
    grid-template-columns: 1fr;
  }

  .sf-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(20, 21, 18, .12);
  }

  .sf-body {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:hover {
    border-right: 1px solid rgba(20, 21, 18, .1);
    border-bottom: 1px solid rgba(20, 21, 18, .1);
  }

  .process-list li:nth-child(2n) {
    border-right: 0;
  }

  .process-list li:nth-child(n + 3) {
    border-bottom: 0;
  }

  .sf-result {
    border-left: 0;
    border-top: 1px solid rgba(20, 21, 18, .1);
  }

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

  .martin-portrait {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .hero-photo-card,
  .hero-logo-tile {
    animation: none;
  }

  .sf-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
  }

  .sf-tab {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    min-height: 58px;
    padding-inline: 10px;
  }

  .sf-tab svg {
    width: 21px;
    height: 21px;
  }

  .sf-list-wrap,
  .sf-result {
    padding: 18px;
  }

  .sf-body {
    min-height: 0;
  }

  .sf-symptoms button {
    min-height: 72px;
    padding-inline: 14px;
  }

  .sf-symptoms {
    grid-template-columns: 1fr;
  }

  .sf-symptoms li:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .sf-symptoms button:hover,
  .sf-symptoms button.is-selected {
    transform: none;
  }

  .sf-tip > div,
  .sf-message-card {
    padding: 14px;
  }

  .sf-cta {
    width: 100%;
  }

  .sf-diagnostic-path {
    margin-bottom: 18px;
  }

  .sf-diagnostic-path > i {
    margin-inline: 4px;
  }

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

  .trust-card {
    min-height: 0;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:hover,
  .process-list li:nth-child(2n),
  .process-list li:nth-child(n + 3) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 21, 18, .1);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .martin-portrait {
    order: 1;
  }

  .about-copy {
    order: 2;
  }

  .portrait-status,
  .portrait-experience {
    min-height: 34px;
    padding-inline: 11px;
    font-size: 10px;
  }

  .about-proof-list > div {
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 12px;
  }

  .about-links a {
    flex: 1 1 calc(50% - 5px);
  }
}

@media (hover: none) {
  .services .device-card:hover,
  .trust-card:hover,
  .process-list li:hover,
  .ig-embed-card:hover,
  .about-links a:hover,
  .about-proof-list > div:hover {
    transform: none;
  }

  .about-proof-list > div:hover {
    padding-inline: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo-card,
  .hero-logo-tile,
  .hero-photo-card::after,
  .sf-result::before,
  .portrait-frame::before,
  .portrait-status::before {
    animation: none !important;
  }

  .js .hero-copy > *,
  .js .hero-media-stage,
  .js .reveal,
  .js .reveal[data-motion="scale"],
  .js .reveal[data-motion="clip"],
  .js .about-copy .about-proof-list > div {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
  }

  .sf-symptoms li,
  .js .about-copy.visible .about-proof-list > div {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Section 05 repair video refresh — record-first proof panel.
   ============================================================ */
.video {
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f7f3 100%);
}

.video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(180px, 28vw);
  height: 3px;
  background: var(--warm);
  transform: translateX(-50%);
}

.video-showcase {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.video-copy {
  max-width: 510px;
}

.video-copy h2 {
  max-width: 9.4em;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.055em;
}

.video-copy > p:not(.section-kicker) {
  max-width: 42ch;
  margin-top: 22px;
  font-size: 15px;
}

.video-proof-list {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(20, 21, 18, .12);
}

.video-proof-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 0 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(20, 21, 18, .1);
}

.video-proof-list span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--warm);
  background: rgba(177, 128, 42, .08);
  border: 1px solid rgba(177, 128, 42, .24);
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.video-proof-list strong {
  color: var(--text);
  font-size: 14px;
  letter-spacing: -.01em;
}

.video-proof-list small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.72;
}

.video-frame {
  position: relative;
  margin: 0;
}

.video-screen {
  position: relative;
  overflow: hidden;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(238, 238, 234, .7)),
    linear-gradient(135deg, rgba(177, 128, 42, .16), rgba(23, 107, 115, .08));
  border: 1px solid rgba(20, 21, 18, .12);
  border-radius: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .86),
    0 24px 60px rgba(31, 33, 28, .16);
  isolation: isolate;
}

.video-screen::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 22px;
}

.video-frame video {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #11130f;
  border: 1px solid rgba(20, 21, 18, .16);
  border-radius: 22px;
  box-shadow: none;
}

.video-status-rail {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 48px);
  min-height: 38px;
  padding: 0 14px;
  color: #f7f7f3;
  background: rgba(15, 17, 16, .72);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
  backdrop-filter: blur(12px);
}

.video-status-rail span {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.video-status-rail i {
  position: relative;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .22);
}

.video-status-rail i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 18px;
  background: var(--warm-2);
  transform: translateX(-100%);
  animation: videoRailScan 2.6s var(--ease) infinite;
}

.video-note {
  max-width: 62ch;
  margin: 14px 4px 0;
  padding-left: 14px;
  border-left: 2px solid rgba(177, 128, 42, .34);
  font-size: 11.5px;
  line-height: 1.72;
}

@keyframes videoRailScan {
  0% { transform: translateX(-100%); opacity: .2; }
  42% { opacity: 1; }
  100% { transform: translateX(42px); opacity: .2; }
}

@media (max-width: 980px) {
  .video-showcase {
    grid-template-columns: minmax(0, 1fr);
  }

  .video-copy {
    max-width: none;
  }

  .video-copy h2 {
    max-width: 10.5em;
  }

  .video-proof-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid rgba(20, 21, 18, .1);
  }

  .video-proof-list li {
    display: block;
    padding: 18px 18px 18px 0;
    border-bottom: 0;
  }

  .video-proof-list li + li {
    padding-left: 18px;
    border-left: 1px solid rgba(20, 21, 18, .1);
  }

  .video-proof-list span {
    margin-bottom: 12px;
  }
}

@media (max-width: 720px) {
  .video {
    background: #ffffff;
  }

  .video-showcase {
    gap: 30px;
  }

  .video-copy h2 {
    max-width: 8.8em;
    font-size: clamp(34px, 11vw, 44px);
  }

  .video-copy > p:not(.section-kicker) {
    font-size: 14px;
  }

  .video-proof-list {
    grid-template-columns: 1fr;
    margin-top: 26px;
    border-bottom: 0;
  }

  .video-proof-list li,
  .video-proof-list li + li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 16px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(20, 21, 18, .1);
  }

  .video-proof-list span {
    margin-bottom: 0;
  }

  .video-screen {
    padding: 6px;
    border-radius: 22px;
  }

  .video-screen::before {
    inset: 6px;
    border-radius: 17px;
  }

  .video-frame video {
    border-radius: 17px;
  }

  .video-status-rail {
    right: 14px;
    bottom: 14px;
    min-height: 34px;
    padding-inline: 12px;
  }

  .video-status-rail i {
    width: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-status-rail i::after {
    animation: none !important;
    transform: translateX(0);
  }
}

/* ============================================================
   Legacy repair-film styles. The matching HTML was removed after
   the video was confirmed not to be FixHub-owned. Do not reuse
   without a provenance-verified FixHub media asset.
   ============================================================ */
.repair-film {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(177, 128, 42, .09), transparent 28%),
    linear-gradient(180deg, #fffef9 0%, #f2f1eb 100%);
  border-top: 1px solid rgba(20, 21, 18, .08);
  border-bottom: 1px solid rgba(20, 21, 18, .08);
}

.repair-film::before {
  display: none;
}

.repair-film-intro {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: end;
  gap: clamp(42px, 7vw, 96px);
  margin-bottom: clamp(34px, 5vw, 54px);
}

.repair-film-heading h2 {
  max-width: 10.6em;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: .98;
  letter-spacing: -.06em;
}

.repair-film-heading h2 span {
  color: var(--gold);
}

.repair-film-summary {
  padding-left: clamp(22px, 3vw, 38px);
  border-left: 1px solid rgba(20, 21, 18, .15);
}

.repair-film-summary > p {
  max-width: 59ch;
  margin: 0;
  color: #5c6058;
  font-size: 15px;
  line-height: 1.85;
}

.repair-film-facts {
  display: flex;
  align-items: stretch;
  gap: 18px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(20, 21, 18, .1);
}

.repair-film-facts > span {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.repair-film-facts b {
  color: var(--ink);
  font: 820 15px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .02em;
}

.repair-film-facts small {
  color: #7a7e75;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .08em;
}

.repair-film-facts > i {
  width: 1px;
  min-height: 32px;
  background: rgba(20, 21, 18, .13);
}

.repair-film-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(310px, .68fr);
  overflow: hidden;
  color: #fffef9;
  background: #151712;
  border: 1px solid rgba(20, 21, 18, .16);
  border-radius: 22px;
  box-shadow: 0 30px 74px rgba(31, 33, 28, .17);
}

.repair-film-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 4;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #e3bd69 55%, transparent 100%);
  transform-origin: left;
  transition: transform 1.05s var(--ease);
}

.js .repair-film-shell::before {
  transform: scaleX(0);
}

.js .repair-film-shell.visible::before {
  transform: scaleX(1);
}

.repair-film-media {
  min-width: 0;
  margin: 0;
  padding: 20px 20px 17px;
  background:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px),
    #151712;
  background-size: 28px 28px;
}

.repair-film-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 35px;
  margin-bottom: 13px;
}

.repair-film-label {
  color: rgba(255, 254, 249, .66);
  font: 760 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .18em;
}

.repair-film-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0 10px;
  color: rgba(255, 254, 249, .78);
  background: rgba(255, 254, 249, .06);
  border: 1px solid rgba(255, 254, 249, .12);
  border-radius: 999px;
}

.repair-film-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d3a750;
  box-shadow: 0 0 0 0 rgba(211, 167, 80, .3);
  animation: film-status-pulse 2.2s ease-out infinite;
}

.repair-film-badge b {
  font-size: 9px;
  letter-spacing: .1em;
}

.repair-film-screen {
  position: relative;
  overflow: hidden;
  background: #07121b;
  border: 1px solid rgba(255, 254, 249, .13);
  border-radius: 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
}

.repair-film-screen video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  color-scheme: dark;
  accent-color: var(--gold);
  background: #07121b;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.repair-film-screen video:focus-visible {
  outline: 3px solid #e3bd69;
  outline-offset: -3px;
}

.repair-film-note {
  max-width: 70ch;
  margin-top: 13px;
  color: rgba(255, 254, 249, .56);
  font-size: 10.5px;
  line-height: 1.65;
}

.repair-film-index {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(30px, 3.4vw, 46px);
  color: var(--ink);
  background: #fffef9;
  border-left: 1px solid rgba(20, 21, 18, .12);
}

.repair-film-index-head p {
  margin: 0 0 12px;
  color: var(--gold);
  font: 820 9px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.repair-film-index-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.repair-film-list {
  display: grid;
  margin: 28px 0 26px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(20, 21, 18, .13);
}

.repair-film-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 19px 0;
  border-bottom: 1px solid rgba(20, 21, 18, .1);
}

.repair-film-list li > span {
  padding-top: 3px;
  color: var(--gold);
  font: 820 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .12em;
}

.repair-film-list li > div {
  transition: transform .24s var(--ease);
}

.repair-film-list li:hover > div {
  transform: translateX(4px);
}

.repair-film-list strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.repair-film-list small {
  display: block;
  margin-top: 6px;
  color: #6f736a;
  font-size: 11.5px;
  line-height: 1.55;
}

.repair-film-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  padding: 0 16px;
  color: #fffef9;
  background: #181a16;
  border: 1px solid #181a16;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 820;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .24s var(--ease);
}

.repair-film-link:hover {
  color: #181a16;
  background: #f1d18c;
  border-color: #f1d18c;
  transform: translateY(-2px);
}

.repair-film-boundary {
  margin: 14px 0 0;
  color: #797c75;
  font-size: 9.5px;
  line-height: 1.55;
}

.js .repair-film-shell .repair-film-media,
.js .repair-film-shell .repair-film-index {
  opacity: 0;
  transition: opacity .7s ease, transform .82s var(--ease);
}

.js .repair-film-shell .repair-film-media {
  transform: translateX(-20px);
}

.js .repair-film-shell .repair-film-index {
  transform: translateX(20px);
  transition-delay: .12s;
}

.js .repair-film-shell.visible .repair-film-media,
.js .repair-film-shell.visible .repair-film-index {
  opacity: 1;
  transform: none;
}

.js .repair-film-shell .repair-film-list li {
  opacity: 0;
  transform: translateY(9px);
}

.js .repair-film-shell.visible .repair-film-list li {
  animation: film-index-enter .46s var(--ease) both;
}

.js .repair-film-shell.visible .repair-film-list li:nth-child(1) { animation-delay: .38s; }
.js .repair-film-shell.visible .repair-film-list li:nth-child(2) { animation-delay: .48s; }
.js .repair-film-shell.visible .repair-film-list li:nth-child(3) { animation-delay: .58s; }

@keyframes film-status-pulse {
  from { box-shadow: 0 0 0 0 rgba(211, 167, 80, .3); }
  to { box-shadow: 0 0 0 9px rgba(211, 167, 80, 0); }
}

@keyframes film-index-enter {
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .repair-film-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .repair-film-summary {
    max-width: 720px;
    padding-left: 0;
    border-left: 0;
  }

  .repair-film-shell {
    grid-template-columns: 1fr;
  }

  .repair-film-index {
    border-top: 1px solid rgba(20, 21, 18, .12);
    border-left: 0;
  }

  .repair-film-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .repair-film-list li {
    display: block;
    padding-right: 18px;
  }

  .repair-film-list li + li {
    padding-left: 18px;
    border-left: 1px solid rgba(20, 21, 18, .1);
  }

  .repair-film-list li > span {
    display: block;
    margin-bottom: 12px;
  }
}

@media (max-width: 720px) {
  .repair-film-heading h2 {
    max-width: 9.5em;
    font-size: clamp(36px, 10.7vw, 46px);
  }

  .repair-film-summary > p {
    font-size: 14px;
  }

  .repair-film-facts {
    justify-content: space-between;
    gap: 10px;
  }

  .repair-film-facts small {
    font-size: 8.5px;
  }

  .repair-film-shell {
    border-radius: 18px;
  }

  .repair-film-media {
    padding: 13px 12px 14px;
  }

  .repair-film-topbar {
    min-height: 30px;
    margin-bottom: 9px;
  }

  .repair-film-label {
    font-size: 7.5px;
  }

  .repair-film-badge {
    min-height: 25px;
  }

  .repair-film-screen {
    border-radius: 12px;
  }

  .repair-film-note {
    font-size: 9.5px;
  }

  .repair-film-index {
    padding: 26px 20px 24px;
  }

  .repair-film-list {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .repair-film-list li,
  .repair-film-list li + li {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 17px 0;
    border-left: 0;
  }

  .repair-film-list li > span {
    margin-bottom: 0;
  }

  .repair-film-link {
    width: 100%;
  }
}

@media (hover: none) {
  .repair-film-list li:hover > div,
  .repair-film-link:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .repair-film-badge i,
  .js .repair-film-shell.visible .repair-film-list li {
    animation: none !important;
  }

  .js .repair-film-shell::before,
  .js .repair-film-shell .repair-film-media,
  .js .repair-film-shell .repair-film-index,
  .js .repair-film-shell .repair-film-list li {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Trust section refresh — clearer pre-repair checkpoints with
   asymmetric cards and lightweight motion.
   ============================================================ */
.trust {
  background:
    linear-gradient(rgba(20, 21, 18, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 21, 18, .025) 1px, transparent 1px),
    linear-gradient(180deg, #f4f1e8 0%, #fffef9 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.trust .section-heading {
  margin-bottom: clamp(32px, 5vw, 54px);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(280px, .98fr) repeat(2, minmax(0, .72fr));
  grid-auto-rows: minmax(184px, auto);
  gap: 16px;
  align-items: stretch;
}

.trust-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: auto;
  gap: 18px;
  min-height: 184px;
  padding: clamp(22px, 2.4vw, 30px);
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 254, 249, .98), rgba(255, 255, 255, .96));
  border: 1px solid rgba(20, 21, 18, .12);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(31, 33, 28, .075);
  transition: transform .32s var(--ease), box-shadow .32s ease, border-color .32s ease;
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(177, 128, 42, .22));
  transform: scaleX(.24);
  transform-origin: left;
  transition: transform .48s var(--ease);
}

.trust-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(177, 128, 42, 0);
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .58);
  transition: border-color .28s ease, box-shadow .28s ease;
}

.trust-card > * {
  position: relative;
  z-index: 1;
}

.trust-card:hover {
  transform: translateY(-5px);
  border-color: rgba(177, 128, 42, .28);
  box-shadow: 0 24px 58px rgba(31, 33, 28, .12);
}

.trust-card:hover::before {
  transform: scaleX(1);
}

.trust-card:hover::after {
  border-color: rgba(177, 128, 42, .34);
}

.trust-card-feature {
  grid-row: span 2;
  align-content: end;
  min-height: 100%;
  color: #fffef9;
  background:
    linear-gradient(rgba(255, 254, 249, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 254, 249, .035) 1px, transparent 1px),
    linear-gradient(160deg, rgba(35, 37, 31, .98), rgba(18, 20, 17, .98));
  background-size: 28px 28px, 28px 28px, auto;
  border-color: rgba(20, 21, 18, .26);
  box-shadow: 0 28px 70px rgba(31, 33, 28, .2);
}

.trust-card-feature::before {
  background: linear-gradient(90deg, #e5c571, rgba(229, 197, 113, .18));
  transform: scaleX(1);
}

.trust-card:nth-child(2) {
  grid-column: span 2;
  grid-template-columns: 66px minmax(0, 1fr);
  min-height: 176px;
}

.trust-step {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(20, 21, 18, .22);
  font: 840 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.trust-card-feature .trust-step {
  color: rgba(255, 254, 249, .38);
}

.trust-card .trust-ico {
  position: relative;
  grid-row: auto;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0;
  color: var(--gold);
  background: rgba(177, 128, 42, .09);
  border: 1px solid rgba(177, 128, 42, .18);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .78),
    inset 0 0 0 1px rgba(255, 255, 255, .34),
    0 12px 26px rgba(31, 33, 28, .08);
  transition: transform .32s var(--ease), background .32s ease, border-color .32s ease;
}

.trust-card .trust-ico svg {
  position: relative;
  z-index: 1;
  width: 37px;
  height: 37px;
  stroke-width: 1.55;
  transition: transform .36s var(--ease);
}

.trust-card .trust-ico::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(177, 128, 42, .15);
  border-radius: 11px;
  transform: rotate(-4deg);
  transition: transform .36s var(--ease), border-color .3s ease;
}

.trust-card .trust-ico::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 7px;
  z-index: 2;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border: 1px solid #fffef9;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(177, 128, 42, .1);
}

.trust-card .trust-icon-fill {
  fill: currentColor;
  stroke: none;
  opacity: .075;
}

.trust-card .trust-icon-detail {
  opacity: .54;
}

.trust-card .trust-icon-dot {
  fill: currentColor;
  stroke: none;
}

.trust-card-feature .trust-ico {
  color: #e8c774;
  background: rgba(255, 254, 249, .08);
  border-color: rgba(255, 254, 249, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  animation: trust-icon-float 4.8s var(--ease) infinite alternate;
}

.trust-card-feature .trust-ico::before {
  border-color: rgba(255, 254, 249, .14);
}

.trust-card-feature .trust-ico::after {
  background: #e8c774;
  border-color: #20221d;
  box-shadow: 0 0 0 3px rgba(232, 199, 116, .11);
}

.trust-card:not(.trust-card-feature) .trust-ico {
  color: #8a6420;
  background: rgba(177, 128, 42, .08);
  border-color: rgba(177, 128, 42, .18);
}

.trust-card:hover .trust-ico svg {
  transform: scale(1.06) translate3d(0, -1px, 0);
}

.trust-card:hover .trust-ico::before {
  transform: rotate(0);
}

.trust-card-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding-right: clamp(8px, 2vw, 24px);
}

.trust-card-copy small {
  color: var(--gold);
  font: 820 10px/1.1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.trust-card-feature .trust-card-copy small {
  color: #e5c571;
}

.trust-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.16;
  letter-spacing: 0;
}

.trust-card-feature h3 {
  max-width: 8em;
  color: #fffef9;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.04;
}

.trust-card p {
  margin: 0;
  color: #63665d;
  font-size: 13.5px;
  line-height: 1.72;
}

.trust-card-feature p {
  color: rgba(255, 254, 249, .68);
  font-size: 14px;
}

.trust-outcome {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  margin-top: 6px;
  padding: 0 11px;
  color: #5b4217;
  background: rgba(177, 128, 42, .11);
  border: 1px solid rgba(177, 128, 42, .16);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 820;
}

.trust-card-feature .trust-outcome {
  color: #fffef9;
  background: rgba(255, 254, 249, .08);
  border-color: rgba(255, 254, 249, .16);
}

.js .trust-card.visible .trust-outcome {
  animation: trust-outcome-in .62s var(--ease) both;
  animation-delay: .18s;
}

@keyframes trust-icon-float {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -6px, 0); }
}

@keyframes trust-outcome-in {
  from { opacity: 0; transform: translate3d(0, 8px, 0); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .trust-card-feature,
  .trust-card:nth-child(2) {
    grid-column: span 2;
    grid-row: auto;
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .trust .section-heading {
    margin-bottom: 28px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-card,
  .trust-card-feature,
  .trust-card:nth-child(2) {
    grid-column: auto;
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 0;
    padding: 20px;
    border-radius: 16px;
  }

  .trust-card-feature {
    padding-top: 28px;
  }

  .trust-card .trust-ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .trust-card-copy {
    padding-right: 0;
  }

  .trust-step {
    top: 14px;
    right: 16px;
  }

  .trust-card h3,
  .trust-card-feature h3 {
    max-width: none;
    font-size: clamp(21px, 7vw, 30px);
  }

  .trust-card p,
  .trust-card-feature p {
    font-size: 13px;
  }

  .trust-outcome {
    white-space: normal;
  }
}

@media (hover: none) {
  .trust-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-card-feature .trust-ico,
  .js .trust-card.visible .trust-outcome {
    animation: none !important;
  }

  .trust-card,
  .trust-card::before,
  .trust-card::after,
  .trust-card .trust-ico,
  .trust-card .trust-ico::before,
  .trust-card .trust-ico::after,
  .trust-card .trust-ico svg,
  .trust-outcome {
    transition: none !important;
  }
}

/* ============================================================
   Footer colour refinement — FixHub teal and warm brass provide
   the base; platform colours are reserved for verified links.
   ============================================================ */
.site-footer {
  --footer-teal: #35bdb2;
  --footer-brass: #d4a64a;
  --footer-whatsapp: #25d366;
  --footer-facebook: #1877f2;
  --footer-rednote: #ff2442;
  background:
    radial-gradient(circle at 7% 88%, rgba(53, 189, 178, .16), transparent 29%),
    radial-gradient(circle at 91% 72%, rgba(24, 119, 242, .10), transparent 27%),
    linear-gradient(180deg, #12150f 0%, #0b1513 100%);
  border-top-color: rgba(53, 189, 178, .28);
}

.site-footer::before {
  background:
    linear-gradient(rgba(255, 255, 252, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 252, .026) 1px, transparent 1px),
    radial-gradient(circle at 10% 8%, rgba(212, 166, 74, .12), transparent 28%),
    radial-gradient(circle at 80% 88%, rgba(53, 189, 178, .11), transparent 34%);
  background-size: 52px 52px, 52px 52px, auto, auto;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  height: 5px;
  pointer-events: none;
  background: linear-gradient(90deg,
    #d4a64a 0 20%,
    #25d366 20% 40%,
    #d84e78 40% 60%,
    #1877f2 60% 80%,
    #ff5b45 80% 100%);
}

.footer-cta {
  background:
    radial-gradient(circle at 6% 100%, rgba(53, 189, 178, .15), transparent 32%),
    linear-gradient(135deg, #16221b 0%, #181a16 54%, #0c1b1f 100%);
  border-color: rgba(53, 189, 178, .28);
  box-shadow: 0 30px 76px rgba(4, 16, 14, .34), inset 0 1px 0 rgba(255, 255, 252, .04);
}

.footer-cta::before {
  background: linear-gradient(180deg, var(--footer-brass), var(--footer-teal));
}

.footer-cta h2 span {
  color: #79ded5;
}

.footer-cta-kicker,
.site-footer .footer-column:first-of-type h2 {
  color: #f0cc83;
}

.site-footer .footer-column h2 {
  position: relative;
  padding-left: 15px;
  color: rgba(247, 247, 243, .60);
}

.site-footer .footer-column h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--footer-teal);
  transform: translateY(-50%);
}

.site-footer .footer-contact h2::before {
  background: #d84e78;
}

.site-footer .footer-location h2::before {
  background: #5a9cf2;
}

.site-footer .footer-column a {
  transition: color .24s var(--ease), border-color .24s var(--ease), transform .24s var(--ease);
}

.site-footer .footer-column a:active,
.site-footer .powered-by:active {
  transform: translateY(1px) scale(.99);
}

.site-footer .footer-link-icon,
.site-footer .footer-address-icon {
  box-shadow: inset 0 1px 0 rgba(255, 255, 252, .06);
  transition: color .24s var(--ease), background .24s var(--ease), border-color .24s var(--ease), transform .24s var(--ease), filter .24s ease;
}

.site-footer .footer-link-service .footer-link-icon {
  color: #f0c96f;
  background: rgba(212, 166, 74, .13);
  border-color: rgba(212, 166, 74, .28);
}

.site-footer .footer-link-process .footer-link-icon {
  color: #bfb1ff;
  background: rgba(139, 117, 235, .15);
  border-color: rgba(164, 147, 240, .32);
}

.site-footer .footer-link-faq .footer-link-icon {
  color: #8ee7df;
  background: rgba(53, 189, 178, .13);
  border-color: rgba(53, 189, 178, .28);
}

.site-footer .footer-social-instagram .footer-link-icon {
  color: #fff;
  background: linear-gradient(135deg, #f3bf3f 0%, #db477d 52%, #7751c9 100%);
  border-color: rgba(255, 255, 255, .18);
}

.site-footer .footer-link-location .footer-link-icon,
.site-footer .footer-address-icon {
  color: #8ee7df;
  background: rgba(53, 189, 178, .13);
  border-color: rgba(53, 189, 178, .28);
}

.site-footer .footer-social-whatsapp .footer-link-icon {
  color: #fff;
  background: rgba(37, 211, 102, .82);
  border-color: rgba(106, 233, 154, .42);
}

.site-footer .footer-social-facebook .footer-link-icon {
  color: #fff;
  background: rgba(24, 119, 242, .86);
  border-color: rgba(111, 171, 249, .42);
}

.site-footer .footer-social-rednote .footer-link-icon {
  color: #fff;
  background: rgba(255, 36, 66, .84);
  border-color: rgba(255, 123, 141, .40);
}

.site-footer .footer-map-link .footer-link-icon {
  color: #4285f4;
  background: #fffef9;
  border-color: rgba(66, 133, 244, .24);
}

.site-footer .footer-social-whatsapp b { color: #56dc8a; }
.site-footer .footer-social-instagram b { color: #e2789f; }
.site-footer .footer-social-facebook b { color: #6eaaf6; }
.site-footer .footer-social-rednote b { color: #ff6b7f; }
.site-footer .footer-map-link b { color: #6eaaf6; }

.site-footer .footer-contact .footer-social-whatsapp:hover,
.site-footer .footer-contact .footer-social-whatsapp:focus-visible {
  color: #79e7a1;
  border-color: rgba(37, 211, 102, .34);
}

.site-footer .footer-contact .footer-social-instagram:hover,
.site-footer .footer-contact .footer-social-instagram:focus-visible {
  color: #f08db0;
  border-color: rgba(219, 71, 125, .36);
}

.site-footer .footer-contact .footer-social-facebook:hover,
.site-footer .footer-contact .footer-social-facebook:focus-visible,
.site-footer .footer-location .footer-map-link:hover,
.site-footer .footer-location .footer-map-link:focus-visible {
  color: #80b8ff;
  border-color: rgba(24, 119, 242, .36);
}

.site-footer .footer-contact .footer-social-rednote:hover,
.site-footer .footer-contact .footer-social-rednote:focus-visible {
  color: #ff8091;
  border-color: rgba(255, 36, 66, .36);
}

.site-footer .footer-column a:hover .footer-link-icon,
.site-footer .footer-column a:focus-visible .footer-link-icon,
.site-footer .footer-contact a:hover .footer-link-icon,
.site-footer .footer-contact a:focus-visible .footer-link-icon {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.04);
}

.site-footer .footer-bottom {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  padding: 19px 18px 16px;
  background: linear-gradient(105deg, rgba(53, 189, 178, .10), rgba(212, 166, 74, .065) 46%, rgba(216, 78, 120, .055));
  border: 1px solid rgba(255, 255, 252, .12);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 252, .04);
}

.site-footer .footer-bottom::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--footer-teal), var(--footer-brass) 42%, #d84e78 68%, var(--footer-facebook));
}

.site-footer .copyright {
  color: rgba(247, 247, 243, .72);
}

.site-footer .powered-by {
  color: #20261f;
  background: #fffdf8;
  border-color: rgba(255, 255, 255, .76);
  box-shadow: 0 14px 30px rgba(1, 10, 9, .20), inset 0 1px 0 #fff;
  transition: transform .24s var(--ease), border-color .24s ease, box-shadow .24s ease;
}

.site-footer .powered-by > span {
  color: #697068;
}

.site-footer .powered-by:hover,
.site-footer .powered-by:focus-visible {
  color: #20261f;
  background: #fff;
  border-color: rgba(255, 103, 50, .42);
  box-shadow: 0 18px 38px rgba(1, 10, 9, .24), inset 0 1px 0 #fff;
  transform: translateY(-2px);
}

.site-footer .powered-by:active {
  transform: translateY(1px) scale(.99);
  box-shadow: 0 9px 20px rgba(1, 10, 9, .18), inset 0 1px 0 #fff;
}

.site-footer .footer-main {
  padding-top: 52px;
}

/* Footer shop location — one compact arrival panel instead of a
   second copy of the full location section. */
.site-footer .footer-location {
  min-width: 0;
}

.footer-location-head {
  display: flex;
  min-width: 0;
  align-items: center;
  margin-bottom: 14px;
}

.site-footer .footer-location-head h2 {
  flex: 0 0 auto;
  margin: 3px 0 0;
}

.footer-location-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 189, 178, .15), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 252, .055), rgba(255, 255, 252, .022));
  border: 1px solid rgba(142, 231, 223, .18);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 252, .055);
}

.footer-location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(142, 231, 223, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 231, 223, .028) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: linear-gradient(135deg, #000, transparent 72%);
  mask-image: linear-gradient(135deg, #000, transparent 72%);
}

.footer-location-card::after {
  content: "";
  position: absolute;
  top: -34px;
  right: -30px;
  z-index: -1;
  width: 96px;
  height: 96px;
  pointer-events: none;
  border: 1px solid rgba(142, 231, 223, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(142, 231, 223, .035);
}

.site-footer .footer-location-card address {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  min-height: 0;
  padding: 0 0 18px;
  color: rgba(247, 247, 243, .64);
  border: 0;
  border-bottom: 1px solid rgba(142, 231, 223, .14);
  font-size: 12px;
  line-height: 1.6;
}

.site-footer .footer-location-card .footer-address-icon {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  margin: 0;
  color: #8ee7df;
  background: rgba(53, 189, 178, .13);
  border-color: rgba(142, 231, 223, .23);
  border-radius: 11px;
}

.site-footer .footer-location-card .footer-address-icon svg {
  width: 19px;
  height: 19px;
}

.site-footer .footer-location-card .footer-address-copy {
  gap: 5px;
}

.site-footer .footer-location-card .footer-address-copy small {
  color: rgba(142, 231, 223, .62);
  font: 800 8px/1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .12em;
}

.site-footer .footer-location-card address strong {
  color: #f7f7f3;
  font-size: 16px;
  font-weight: 820;
  line-height: 1.25;
  letter-spacing: -.015em;
}

.footer-location-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.site-footer .footer-location-card .footer-map-link {
  min-height: 50px;
  gap: 8px;
  padding: 0 8px;
  color: #dfeaff;
  background: rgba(66, 133, 244, .12);
  border: 1px solid rgba(110, 170, 246, .28);
  border-radius: 10px;
  font-size: 11.5px;
}

.site-footer .footer-location-card .footer-map-link .footer-link-icon {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
}

.site-footer .footer-location-card .footer-map-link .footer-link-label {
  white-space: nowrap;
}

.site-footer .footer-location-card .footer-map-link:hover,
.site-footer .footer-location-card .footer-map-link:focus-visible {
  color: #ffffff;
  background: rgba(66, 133, 244, .2);
  border-color: rgba(110, 170, 246, .48);
}

.site-footer .footer-location-card .footer-map-link.is-waze {
  color: #dffaf7;
  background: rgba(53, 189, 178, .1);
  border-color: rgba(142, 231, 223, .22);
}

.site-footer .footer-location-card .footer-map-link.is-waze .footer-link-icon {
  color: #176b73;
  background: #effcfb;
  border-color: rgba(142, 231, 223, .34);
}

.site-footer .footer-location-card .footer-map-link.is-waze:hover,
.site-footer .footer-location-card .footer-map-link.is-waze:focus-visible {
  color: #ffffff;
  background: rgba(53, 189, 178, .18);
  border-color: rgba(142, 231, 223, .42);
}

.site-footer .footer-bottom {
  margin-top: 42px;
}

@media (max-width: 720px) {
  .site-footer .footer-main {
    gap: 28px;
    padding-top: 42px;
  }

  .footer-location-head {
    margin-bottom: 12px;
  }

  .footer-location-card {
    padding: 16px;
  }

  .site-footer .footer-location-card address {
    gap: 12px;
  }

  .site-footer .footer-bottom {
    gap: 20px;
    margin-top: 36px;
    margin-bottom: 14px;
    padding: 20px 14px 14px;
  }

  .site-footer .powered-by {
    min-height: 64px;
    padding: 12px 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer .footer-column a,
  .site-footer .footer-link-icon,
  .site-footer .footer-address-icon,
  .site-footer .powered-by {
    transition: none !important;
  }
}

/* ---------- language control: compact bilingual selector ---------- */
.lang-dropdown {
  margin-left: 12px;
}

.lang-select {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  grid-template-columns: 32px minmax(58px, 1fr) 24px;
  align-items: center;
  gap: 7px;
  min-width: 148px;
  min-height: 48px;
  padding: 4px 5px;
  overflow: hidden;
  color: #20231f;
  background: #fffdfa;
  border: 1px solid rgba(36, 38, 32, .16);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(31, 33, 28, .07), inset 0 1px 0 rgba(255, 255, 255, .96);
  transform: translate3d(0, 0, 0);
  transition: transform .24s var(--ease), border-color .24s ease, box-shadow .24s ease, background .24s ease;
}

.lang-select::before {
  content: "";
  position: absolute;
  inset: 8px auto 8px 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: var(--warm);
  opacity: .82;
}

.lang-select:hover {
  background: #ffffff;
  border-color: rgba(177, 128, 42, .42);
  box-shadow: 0 11px 25px rgba(31, 33, 28, .10), inset 0 1px 0 #fff;
  transform: translate3d(0, -1px, 0);
}

.lang-dropdown.open .lang-select,
.lang-select:focus,
.lang-select:focus-visible {
  background: #ffffff;
  border-color: rgba(177, 128, 42, .7);
  box-shadow: 0 0 0 3px rgba(177, 128, 42, .12), 0 12px 28px rgba(31, 33, 28, .11), inset 0 1px 0 #fff;
  transform: translate3d(0, 0, 0);
}

.lang-select:active {
  transform: translate3d(0, 1px, 0) scale(.99);
}

.lang-icon-shell {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #f1d18c;
  background: #171914;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 9px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09);
  transition: transform .24s var(--ease), background .24s ease;
}

.lang-select:hover .lang-icon-shell,
.lang-dropdown.open .lang-icon-shell {
  background: #20231d;
  transform: scale(1.04);
}

.lang-icon {
  width: 17px;
  height: 17px;
  stroke-width: 1.6;
}

.lang-copy {
  display: grid;
  align-content: center;
  gap: 2px;
  min-width: 0;
  text-align: left;
  line-height: 1;
}

.lang-kicker {
  color: rgba(113, 84, 35, .72);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .18em;
}

.lang-label {
  display: block;
  overflow: hidden;
  color: #20231f;
  font-size: 12.5px;
  font-weight: 820;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lang-short {
  display: none;
}

.lang-caret {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #9a6b22;
  background: #f6f0e6;
  border: 1px solid rgba(177, 128, 42, .14);
  border-radius: 8px;
  transform: none;
  transition: background .24s ease, border-color .24s ease;
}

.lang-caret svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .24s var(--ease);
}

.lang-dropdown.open .lang-caret {
  color: #805619;
  background: #f1e6d3;
  border-color: rgba(177, 128, 42, .28);
  transform: none;
}

.lang-dropdown.open .lang-caret svg {
  transform: rotate(180deg);
}

.lang-menu {
  top: calc(100% + 10px);
  right: 0;
  min-width: 218px;
  padding: 8px;
  color: #20231f;
  background: rgba(255, 254, 250, .98);
  border: 1px solid rgba(36, 38, 32, .13);
  border-radius: 14px;
  box-shadow: 0 22px 48px rgba(31, 33, 28, .16), inset 0 1px 0 rgba(255, 255, 255, .95);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -7px, 0) scale(.985);
  transform-origin: top right;
  transition: opacity .18s var(--ease), transform .22s var(--ease);
}

.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.lang-menu-kicker {
  display: block;
  padding: 5px 8px 8px;
  color: rgba(32, 35, 31, .48);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.lang-menu button {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 7px 8px;
  color: rgba(32, 35, 31, .78);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  text-align: left;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s var(--ease);
}

.lang-menu button::after {
  content: none;
}

.lang-menu button + button {
  margin-top: 4px;
}

.lang-menu button:hover,
.lang-menu button:focus-visible {
  color: #20231f;
  background: #f7f2e9;
  border-color: rgba(177, 128, 42, .16);
  transform: translate3d(2px, 0, 0);
}

.lang-menu button:focus-visible {
  outline: 2px solid #b78131;
  outline-offset: 1px;
}

.lang-menu button[aria-selected="true"] {
  color: #20231f;
  background: #f6efe3;
  border-color: rgba(177, 128, 42, .20);
}

.lang-option-code {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #815b25;
  background: #fffdfa;
  border: 1px solid rgba(177, 128, 42, .18);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92);
}

.lang-menu button[aria-selected="true"] .lang-option-code {
  color: #f1d18c;
  background: #1a1c17;
  border-color: #1a1c17;
}

.lang-option-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.lang-option-copy strong {
  overflow: hidden;
  font-size: 12.5px;
  font-weight: 820;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lang-option-copy small {
  color: rgba(32, 35, 31, .45);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .12em;
}

.lang-option-check {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #805619;
  background: rgba(177, 128, 42, .12);
  border-radius: 999px;
  opacity: 0;
  transform: scale(.72);
  transition: opacity .2s ease, transform .22s var(--ease);
}

.lang-option-check svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lang-menu button[aria-selected="true"] .lang-option-check {
  opacity: 1;
  transform: scale(1);
}

.lang-menu button[aria-selected="true"]::after {
  display: none;
  content: none;
}

.lang-dropdown.open .lang-select,
.lang-select:focus,
.lang-select:focus-visible {
  box-shadow: 0 12px 28px rgba(31, 33, 28, .11), inset 0 1px 0 #fff;
}

.lang-select:focus-visible {
  outline: 2px solid #b78131;
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .lang-dropdown {
    margin-left: 0;
  }

  .lang-select {
    grid-template-columns: 28px 16px 16px;
    gap: 3px;
    width: 72px;
    min-width: 72px;
    min-height: 44px;
    padding: 4px;
    border-radius: 11px;
  }

  .lang-select::before {
    inset-block: 9px;
    width: 2px;
  }

  .lang-icon-shell {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .lang-icon {
    width: 15px;
    height: 15px;
  }

  .lang-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
  }

  .lang-kicker,
  .lang-label {
    display: none;
  }

  .lang-short {
    display: inline-flex;
    color: #20231f;
    font-size: 11px;
    font-weight: 900;
  }

  .lang-caret {
    width: 16px;
    height: 24px;
    background: transparent;
    border: 0;
  }

  .lang-caret svg {
    width: 12px;
    height: 12px;
  }

  .lang-dropdown.open .lang-caret {
    background: transparent;
    border-color: transparent;
  }

  .lang-menu {
    top: calc(100% + 8px);
    min-width: 214px;
    max-width: calc(100vw - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lang-select,
  .lang-icon-shell,
  .lang-caret,
  .lang-caret svg,
  .lang-menu,
  .lang-menu button,
  .lang-option-check {
    transition: none !important;
  }
}

/* ============================================================
   Store location refresh — practical arrival information,
   asymmetric address board + map preview.
   ============================================================ */
.location {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 14%, rgba(32, 131, 141, .1), transparent 30%),
    linear-gradient(180deg, #f2f7f6 0%, #edf4f2 100%);
}

.location .section-heading {
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  align-items: end;
  column-gap: clamp(34px, 6vw, 88px);
  row-gap: 16px;
  margin-bottom: 40px;
}

.location .section-heading h2 {
  max-width: 720px;
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.location .section-heading h2 span {
  color: var(--cyan);
}

.location .section-heading > p:last-child {
  max-width: 540px;
  padding: 4px 0 4px 28px;
  border-left: 1px solid rgba(23, 107, 115, .22);
  font-size: 15px;
  line-height: 1.85;
}

.location-shell {
  display: grid;
  grid-template-columns: minmax(350px, .78fr) minmax(0, 1.22fr);
  min-height: 590px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(23, 107, 115, .16);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(23, 76, 80, .12);
}

.location .location-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  margin: 0;
  padding: 40px 38px 36px;
  color: var(--text);
  background:
    linear-gradient(rgba(23, 107, 115, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 107, 115, .035) 1px, transparent 1px),
    radial-gradient(circle at 104% -4%, rgba(32, 131, 141, .14), transparent 38%),
    #f9fcfb;
  background-size: 38px 38px, 38px 38px, auto, auto;
  border: 0;
  border-right: 1px solid rgba(23, 107, 115, .12);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.location-status {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 12px;
  color: #115d65;
  background: rgba(32, 131, 141, .09);
  border: 1px solid rgba(23, 107, 115, .18);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
}

.location-status i,
.location-map-bar i {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--cyan-bright);
  border-radius: 50%;
}

.location-status i {
  animation: location-status-pulse 2.4s ease-in-out infinite;
}

.location .location-address {
  margin: 30px 0 0;
  font-style: normal;
}

.location .location-address small {
  display: block;
  margin-bottom: 12px;
  color: rgba(23, 107, 115, .68);
  font: 800 9px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .16em;
}

.location .location-address strong {
  display: block;
  color: var(--text);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.location .location-address span {
  display: block;
  max-width: 380px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.location-facts {
  display: grid;
  gap: 0;
  margin: 30px 0 26px;
  border-block: 1px solid rgba(23, 107, 115, .14);
}

.location-facts > div {
  display: grid;
  grid-template-areas:
    "icon label"
    "icon value";
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 3px 12px;
  align-items: center;
  min-height: 66px;
  padding: 10px 0;
}

.location-facts > div + div {
  border-top: 1px solid rgba(23, 107, 115, .1);
}

.location-fact-icon {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--cyan);
  background: rgba(32, 131, 141, .08);
  border: 1px solid rgba(23, 107, 115, .14);
  border-radius: 10px;
}

.location-fact-icon svg,
.location-assist-icon svg,
.location-map-caption svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-facts dt {
  grid-area: label;
  color: rgba(23, 107, 115, .62);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.location-facts dd {
  grid-area: value;
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 760;
}

.location .map-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  width: 100%;
}

.location .map-buttons a {
  display: inline-flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 13px;
  color: #155f67;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(23, 107, 115, .2);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 820;
  white-space: nowrap;
  transition: transform .24s var(--ease), color .2s ease, background .2s ease, border-color .2s ease;
}

.location .map-buttons a:first-child {
  grid-column: 1 / -1;
  color: #ffffff;
  background: var(--cyan);
  border-color: var(--cyan);
}

.location .map-buttons a:hover,
.location .map-buttons a:focus-visible {
  color: #ffffff;
  background: #104f56;
  border-color: #104f56;
  box-shadow: none;
  transform: translate3d(0, -2px, 0);
}

.location .map-buttons a:active,
.location-assist > a:active,
.location-map-bar > a:active {
  transform: translate3d(0, 1px, 0) scale(.99);
}

.location-assist {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 3px 12px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(23, 107, 115, .14);
}

.location-assist-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--cyan);
  background: rgba(32, 131, 141, .08);
  border: 1px solid rgba(23, 107, 115, .14);
  border-radius: 10px;
}

.location-assist strong {
  display: block;
  color: var(--text);
  font-size: 12px;
}

.location .location-note {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.65;
}

.location-assist > a {
  grid-column: 2;
  justify-self: start;
  margin-top: 12px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(23, 107, 115, .32);
  text-underline-offset: 5px;
  transition: color .2s ease, transform .22s var(--ease);
}

.location-assist > a:hover,
.location-assist > a:focus-visible {
  color: #104f56;
}

.location .location-map {
  display: grid;
  min-width: 0;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  background: #fdfefe;
  border: 0;
  border-left: 1px solid rgba(23, 107, 115, .12);
  border-radius: 0;
  box-shadow: none;
}

.location-map-bar {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  background: #f6faf9;
  border-bottom: 1px solid rgba(23, 107, 115, .12);
}

.location-map-bar > div {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.location-map-bar i {
  background: #2d8179;
}

.location-map-bar strong {
  color: #234549;
  font-size: 10px;
  letter-spacing: .11em;
}

.location-map-bar > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 850;
  transition: color .2s ease, transform .22s var(--ease);
}

.location-map-bar > a:hover,
.location-map-bar > a:focus-visible {
  color: #104f56;
}

.location .location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  filter: saturate(.9) contrast(.98);
}

.location-map-caption {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  color: #53696a;
  background: #f3f8f7;
  border-top: 1px solid rgba(23, 107, 115, .12);
  font-size: 11px;
  line-height: 1.55;
}

.location-map-caption svg {
  flex: 0 0 auto;
  color: var(--cyan);
}

@keyframes location-status-pulse {
  0%, 100% { opacity: .55; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1.12); }
}

@media (max-width: 900px) {
  .location-shell {
    grid-template-columns: 1fr;
  }

  .location .location-map {
    border-top: 1px solid rgba(23, 107, 115, .12);
    border-left: 0;
  }

  .location .location-map iframe {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .location .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }

  .location .section-heading h2 {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.04;
  }

  .location .section-heading > p:last-child {
    max-width: 100%;
    padding: 0;
    border-left: 0;
    font-size: 14px;
  }

  .location-shell {
    min-height: 0;
    border-radius: 14px;
    box-shadow: 0 18px 46px rgba(23, 76, 80, .11);
  }

  .location .location-card {
    padding: 28px 22px 26px;
  }

  .location .location-address {
    margin-top: 26px;
  }

  .location .location-address strong {
    font-size: clamp(27px, 8.2vw, 34px);
  }

  .location-facts {
    margin-block: 26px 22px;
  }

  .location .map-buttons a {
    min-height: 46px;
    padding-inline: 10px;
    font-size: 10.5px;
  }

  .location-assist {
    margin-top: 24px;
    padding-top: 22px;
  }

  .location-map-bar {
    min-height: 58px;
    gap: 12px;
    padding-inline: 16px;
  }

  .location-map-bar > a {
    font-size: 10px;
  }

  .location .location-map iframe {
    min-height: 360px;
  }

  .location-map-caption {
    min-height: 58px;
    padding: 12px 16px;
    font-size: 10.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .location-status i {
    animation: none !important;
  }

  .location .map-buttons a,
  .location-assist > a,
  .location-map-bar > a {
    transition: none !important;
  }
}

/* ============================================================
   Repair diagnostic console — light technical surface, factual
   source states and a connected case ledger. Motion is limited
   to scan / signal feedback and is disabled for reduced motion.
   ============================================================ */
.ig-cases {
  position: relative;
  overflow: hidden;
  background-color: #edf6f5;
  border-block-color: rgba(23, 107, 115, .16);
}

.ig-cases::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(rgba(23, 107, 115, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 107, 115, .055) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .68;
  pointer-events: none;
  transform: none;
}

.ig-cases .container {
  position: relative;
  z-index: 1;
}

.ig-cases .ig-proof-heading {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .46fr);
  align-items: end;
  gap: clamp(30px, 5vw, 72px);
  margin-bottom: 34px;
}

.ig-cases .ig-proof-heading h2 {
  max-width: 760px;
  font-size: clamp(42px, 5.1vw, 66px);
  line-height: 1.02;
}

.ig-cases .ig-proof-heading h2 span {
  color: var(--cyan);
}

.ig-profile-link {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  min-height: 66px;
  padding: 10px 11px;
  color: var(--text);
  background: rgba(248, 253, 252, .86);
  border: 1px solid rgba(23, 107, 115, .28);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(15, 51, 54, .07), inset 3px 0 0 var(--cyan);
  transition: transform .24s var(--ease), border-color .22s ease, background .22s ease;
}

.ig-profile-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  background: linear-gradient(135deg, #f3bf3f 0%, #db477d 52%, #7751c9 100%);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 4px;
}

.ig-profile-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ig-profile-link > span:nth-child(2) {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.ig-profile-link small {
  color: var(--cyan);
  font: 800 8px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ig-profile-link strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ig-profile-link b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--cyan);
  font-size: 12px;
  border: 1px solid rgba(23, 107, 115, .24);
}

.ig-profile-link:hover,
.ig-profile-link:focus-visible {
  color: var(--text);
  background: #ffffff;
  border-color: rgba(23, 107, 115, .32);
  transform: translate3d(0, -2px, 0);
}

.ig-profile-link:active {
  transform: translate3d(0, 1px, 0) scale(.99);
}

.ig-system-bar {
  display: grid;
  grid-template-columns: auto minmax(70px, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 76px;
  padding: 13px 18px;
  color: #e8f8f5;
  background: #102a2d;
  border: 1px solid #102a2d;
  border-bottom-color: rgba(92, 212, 203, .3);
  border-radius: 10px 10px 0 0;
  box-shadow: 0 18px 40px rgba(15, 51, 54, .13);
}

.ig-system-id {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ig-system-id > span:last-child {
  display: grid;
  gap: 5px;
}

.ig-system-id small,
.ig-system-id strong,
.ig-system-status,
.ig-cases .ig-case-state {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.ig-system-id small {
  color: #7adbd2;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .14em;
}

.ig-system-id strong {
  color: #ffffff;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .035em;
}

.ig-system-signal {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(122, 219, 210, .38);
}

.ig-system-signal::before,
.ig-system-signal::after,
.ig-system-signal i {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.ig-system-signal i {
  width: 7px;
  height: 7px;
  background: #7adbd2;
}

.ig-system-signal::before,
.ig-system-signal::after {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(122, 219, 210, .55);
  animation: ig-signal 2.4s var(--ease) infinite;
}

.ig-system-signal::after {
  animation-delay: 1.2s;
}

.ig-system-trace {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(122, 219, 210, .22);
}

.ig-system-trace::before,
.ig-system-trace::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  background: #7adbd2;
}

.ig-system-trace::before { left: 0; }
.ig-system-trace::after { right: 0; }

.ig-system-trace i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 26%;
  background: #7adbd2;
  animation: ig-trace 3.2s linear infinite;
}

.ig-system-status {
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ig-system-status li {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 9px;
  border: 1px solid rgba(122, 219, 210, .2);
}

.ig-system-status b {
  color: #7adbd2;
  font-size: 8px;
}

.ig-system-status span {
  color: rgba(232, 248, 245, .72);
  font-size: 8px;
  font-weight: 750;
  white-space: nowrap;
}

.ig-cases .ig-embed-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: #f9fdfc;
  border: 1px solid rgba(23, 107, 115, .24);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 22px 56px rgba(15, 51, 54, .12);
}

.ig-cases .ig-embed-card,
.ig-cases .ig-embed-card:hover {
  min-width: 0;
  overflow: hidden;
  background: #f9fdfc;
  border: 0;
  border-right: 1px solid rgba(23, 107, 115, .18);
  border-radius: 0;
  box-shadow: none;
  transform: none;
  transition: background .24s ease;
}

.ig-cases .ig-embed-card:last-child {
  grid-column: auto;
  width: auto;
  border-right: 0;
}

.ig-cases .ig-embed-card::after {
  display: none;
}

.ig-cases .ig-embed-card > header {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 112px;
  padding: 20px 18px 18px;
  background-color: #f9fdfc;
  background-image:
    linear-gradient(rgba(23, 107, 115, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 107, 115, .035) 1px, transparent 1px);
  background-size: 20px 20px;
  border-bottom: 1px solid rgba(23, 107, 115, .16);
  transition: background .24s ease;
}

.ig-cases .ig-embed-card:hover > header,
.ig-cases .ig-embed-card:hover .ig-embed-meta {
  background-color: #f1faf8;
}

.ig-cases .ig-case-index {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: #e8f8f5;
  background: #173f42;
  border: 1px solid rgba(23, 107, 115, .2);
  font: 820 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .04em;
}

.ig-case-heading {
  min-width: 0;
}

.ig-cases .ig-case-type {
  display: block;
  padding-right: 72px;
  color: var(--cyan);
  font: 820 8.5px/1.25 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .12em;
}

.ig-cases .ig-case-state {
  position: absolute;
  top: 18px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #44716f;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ig-cases .ig-case-state i {
  width: 5px;
  height: 5px;
  background: var(--cyan);
}

.ig-cases .ig-case-state > span {
  color: inherit;
}

.ig-cases .ig-embed-card > header h3 {
  margin-top: 8px;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.25;
}

.ig-cases .ig-embed-shell {
  position: relative;
  padding: 0;
  border-bottom: 1px solid rgba(23, 107, 115, .16);
}

.ig-cases .ig-embed-shell::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -42%;
  right: 0;
  left: 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(84, 205, 195, .02) 45%, rgba(84, 205, 195, .26) 100%);
  opacity: .72;
  animation: ig-image-scan 5.6s linear infinite;
}

.ig-cases .ig-embed-shell::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 12px;
  pointer-events: none;
  background:
    linear-gradient(var(--cyan), var(--cyan)) 0 0 / 22px 1px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) 0 0 / 1px 22px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) 100% 0 / 22px 1px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) 100% 0 / 1px 22px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) 0 100% / 22px 1px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) 0 100% / 1px 22px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) 100% 100% / 22px 1px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) 100% 100% / 1px 22px no-repeat;
  opacity: .72;
  transition: opacity .22s ease, transform .28s var(--ease);
}

.ig-cases .ig-embed-shell img {
  filter: saturate(.84) contrast(1.04);
  transition: transform .55s var(--ease), filter .3s ease;
}

.ig-cases .ig-embed-shell:hover img {
  filter: saturate(1) contrast(1.05);
  transform: scale(1.025);
}

.ig-cases .ig-embed-shell:hover::after,
.ig-cases .ig-embed-shell:focus-visible::after {
  opacity: 1;
  transform: scale(.985);
}

.ig-cases .ig-embed-badge {
  z-index: 3;
  right: 14px;
  bottom: 14px;
  color: #ffffff;
  background: rgba(16, 42, 45, .88);
  border: 1px solid rgba(122, 219, 210, .34);
  border-radius: 3px;
  box-shadow: 0 10px 24px rgba(15, 51, 54, .18);
}

.ig-cases .ig-embed-meta {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  padding: 16px 18px 18px;
  background: #f9fdfc;
  transition: background .24s ease;
}

.ig-cases .ig-embed-meta p {
  margin-bottom: 13px;
}

.ig-cases .ig-embed-meta a {
  margin-top: auto;
  color: var(--cyan);
}

.ig-cases .ig-actions {
  margin-top: 28px;
}

@keyframes ig-signal {
  0% { opacity: .72; transform: scale(.65); }
  75%, 100% { opacity: 0; transform: scale(1.55); }
}

@keyframes ig-trace {
  from { transform: translate3d(-125%, 0, 0); }
  to { transform: translate3d(485%, 0, 0); }
}

@keyframes ig-image-scan {
  0%, 10% { opacity: 0; transform: translate3d(0, 0, 0); }
  18% { opacity: .72; }
  82% { opacity: .72; }
  90%, 100% { opacity: 0; transform: translate3d(0, 340%, 0); }
}

@media (max-width: 900px) {
  .ig-cases .ig-proof-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ig-profile-link {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    width: min(100%, 360px);
    min-width: 0;
  }

  .ig-system-bar {
    grid-template-columns: auto minmax(80px, 1fr);
  }

  .ig-system-status {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ig-system-status li {
    justify-content: center;
  }

  .ig-cases .ig-embed-grid {
    grid-template-columns: 1fr;
  }

  .ig-cases .ig-embed-card,
  .ig-cases .ig-embed-card:hover,
  .ig-cases .ig-embed-card:last-child {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 107, 115, .18);
  }

  .ig-cases .ig-embed-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .ig-cases .ig-proof-heading {
    margin-bottom: 26px;
  }

  .ig-cases .ig-proof-heading h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .ig-profile-link {
    min-height: 62px;
  }

  .ig-system-bar {
    gap: 13px;
    min-height: 0;
    padding: 14px;
    border-radius: 7px 7px 0 0;
  }

  .ig-system-trace {
    min-width: 34px;
  }

  .ig-system-status {
    gap: 4px;
  }

  .ig-system-status li {
    grid-template-columns: 1fr;
    gap: 2px;
    justify-items: center;
    min-height: 42px;
    padding: 6px 3px;
  }

  .ig-system-status span {
    max-width: 100%;
    overflow: hidden;
    font-size: 7px;
    text-overflow: ellipsis;
  }

  .ig-cases .ig-embed-grid {
    border-radius: 0 0 7px 7px;
    box-shadow: 0 16px 38px rgba(15, 51, 54, .1);
  }

  .ig-cases .ig-embed-shell {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .ig-cases .ig-embed-card > header {
    min-height: 100px;
    padding: 18px 16px 16px;
  }

  .ig-cases .ig-embed-meta {
    min-height: 104px;
    padding: 15px 16px 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ig-profile-link,
  .ig-cases .ig-embed-card,
  .ig-cases .ig-embed-card > header,
  .ig-cases .ig-embed-meta,
  .ig-cases .ig-embed-shell img,
  .ig-cases .ig-embed-shell::after {
    transition: none !important;
  }

  .ig-system-signal::before,
  .ig-system-signal::after,
  .ig-system-trace i,
  .ig-cases .ig-embed-shell::before {
    animation: none !important;
  }

  .ig-cases .ig-embed-shell::before {
    display: none;
  }
}
