/* Self-hosted webfonts (Inter + JetBrains Mono). Served locally from
   /assets/fonts/ so no request is made to Google servers (GDPR + performance).
   On Apple devices SF Pro still wins via --font-sans; Inter is the fallback. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/inter-700.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/jetbrains-mono-400.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/jetbrains-mono-500.woff2") format("woff2");
}

/* <!-- Font: SF Pro on Apple devices, Inter elsewhere --> */
:root {
  --black: #000000;
  --white: #ffffff;
  --ink: #1d1d1f;
  --ink-2: #2d2d2f;
  --grey-text: #6e6e73;
  --grey-faint: #70707a;
  --grey-line: #d2d2d7;
  --grey-line-2: #e8e8ed;
  --grey-panel: #f5f5f7;
  --grey-panel-2: #fbfbfd;
  --black-panel: #0b0b0d;
  --blue: #0071e3;
  --blue-dark: #0058b8;
  --red: #ff453a;
  --font-sans: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-text: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", ui-monospace, "JetBrains Mono", Menlo, Consolas, monospace;
  --r-tile: 18px;
  --r-card: 12px;
  --r-pill: 980px;
  --r-small: 6px;
  --shadow-tile: 0 1px 2px rgba(0,0,0,.04), 0 8px 30px -10px rgba(0,0,0,.08);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--white);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.47059;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

p,
h1,
h2,
h3,
h5 {
  margin-top: 0;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 50;
  padding: 12px 16px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--r-card);
}

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

.v3-header {
  position: sticky;
  top: 0;
  z-index: 80;
}

.v3-nav {
  position: relative;
  height: 44px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.v3-nav__inner {
  max-width: 1024px;
  height: 44px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.v3-nav__brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.v3-nav__brand b {
  font-weight: 600;
  margin-left: 3px;
}

.v3-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.v3-nav__list a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: var(--ink-2);
  font-size: 12px;
  white-space: nowrap;
}

.v3-nav__list a:hover,
.v3-nav__list a:focus,
.v3-nav__list a[aria-current="page"] {
  color: var(--blue);
  outline: none;
}

.v3-nav__end {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* ---------- Language selector (Apple-style, v03) ---------- */
.viv-lang {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 4px;
}

.viv-lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid var(--grey-line);
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease;
}

.viv-lang-trigger:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.viv-lang-trigger:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.viv-lang-code {
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

.viv-lang-flag {
  flex: 0 0 auto;
  display: inline-flex;
  width: 20px;
  height: 14px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.viv-lang-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.viv-lang-flag--globe {
  width: 14px;
  box-shadow: none;
  border-radius: 0;
  color: var(--grey-faint);
}

.viv-lang-chevron {
  display: inline-flex;
  color: var(--grey-faint);
  transition: transform .18s ease;
}

.viv-lang-trigger[aria-expanded="true"] .viv-lang-chevron {
  transform: rotate(180deg);
}

.viv-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 210px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--r-card);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.30);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.viv-lang-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.viv-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--r-small);
  color: var(--ink);
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.viv-lang-option:hover {
  background: var(--grey-panel);
}

.viv-lang-option .viv-lang-name {
  flex: 1 1 auto;
}

.viv-lang-option .viv-lang-check {
  flex: 0 0 auto;
  display: inline-flex;
  width: 16px;
  color: var(--blue);
}

.viv-lang-option.is-active {
  background: rgba(0, 113, 227, 0.08);
  color: var(--blue);
  font-weight: 500;
}

.viv-lang-option.is-active:hover {
  background: rgba(0, 113, 227, 0.12);
}

@media (max-width: 639px) {
  .viv-lang-menu {
    right: 1rem;
    left: auto;
    max-width: calc(100vw - 2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .viv-lang-trigger,
  .viv-lang-chevron,
  .viv-lang-menu {
    transition: none;
  }
  .viv-lang-menu {
    transform: none;
  }
  .viv-lang-trigger[aria-expanded="true"] .viv-lang-chevron {
    transform: none;
  }
}

.v3-nav__icon,
.v3-nav__hamb {
  width: 44px;
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.v3-nav__hamb {
  display: none;
}

.v3-nav__hamb span,
.v3-nav__hamb span::before,
.v3-nav__hamb span::after {
  display: block;
  width: 17px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.v3-nav__hamb span {
  position: relative;
}

.v3-nav__hamb span::before,
.v3-nav__hamb span::after {
  position: absolute;
  left: 0;
}

.v3-nav__hamb span::before {
  top: -5px;
}

.v3-nav__hamb span::after {
  top: 5px;
}

.v3-subband {
  min-height: 52px;
  background: var(--grey-panel);
  border-bottom: 1px solid var(--grey-line-2);
}

.v3-subband__inner {
  max-width: var(--max);
  min-height: 52px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 34px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.v3-subband__title {
  color: var(--ink);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.v3-subband__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.v3-subband__actions a {
  color: var(--blue);
  font-size: 13px;
}

.v3-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  color: var(--ink);
  background: var(--white);
  text-align: center;
}

.v3-hero--category {
  display: block;
  max-width: none;
  margin: 0;
  padding-top: 42px;
  padding-bottom: 10px;
  background: var(--white);
  text-align: center;
}

.v3-hero--category .v3-section__head {
  margin-bottom: 0;
  text-align: center;
}

/* Pricelist hero: h1 do rozmiaru dawnego tytulu formularza (28px / 34px >=640px).
   Ramka formularza ma byc tak samo daleko pod h1 jak h1 pod menu (= hero
   padding-top). Zerujemy gorny padding sekcji formularza - selektor 0,3,0 bije
   generyczny `.v3-section + .v3-section { padding-top: clamp(28px,3vw,48px) }` -
   i przycinamy wlasny gorny padding wrappera formularza. Scoped na pricelist. */
.v3-hero.v3-hero--form h1 {
  font-size: 28px;
  line-height: 1.12;
}

.v3-section + .v3-section.v3-section--form {
  padding-top: 0;
}

.v3-section--form .viv-form-wrap {
  padding-top: 6px;
}

@media (min-width: 640px) {
  .v3-hero.v3-hero--form h1 {
    font-size: 34px;
  }
}

.v3-lede {
  max-width: 780px;
  margin: 0 auto;
  color: var(--grey-text);
  font-size: 21px;
  line-height: 1.34;
  text-align: center;
}

.v3-section__head .v3-lede {
  margin-left: auto;
  margin-right: auto;
}

.v3-hero__head {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 22px 32px;
}

.v3-eyebrow,
.v3-tile__eyebrow {
  margin-bottom: 12px;
  color: inherit;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -.01em;
}

.v3-hero h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 56px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.025em;
}

.v3-hero__sub {
  max-width: 620px;
  margin: 0 auto 24px;
  color: var(--ink-2);
  font-size: 21px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -.012em;
}

.v3-hero__ctas,
.v3-tile__ctas,
.v3-cta__ctas,
.v3-feature__ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.v3-hero__ctas {
  display: inline-flex;
  gap: 14px;
  margin-top: 0;
}

.v3-hero__media {
  position: relative;
  max-width: 1440px;
  height: 460px;
  margin: 0 auto;
  overflow: hidden;
}

.v3-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.v3-hero__code,
.v3-code-chip {
  position: absolute;
  right: 22px;
  bottom: 18px;
  padding: 4px 10px;
  color: rgba(255, 255, 255, .78);
  background: rgba(0, 0, 0, .4);
  border-radius: var(--r-small);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
}

.v3-link {
  color: var(--blue);
  font-size: 19px;
  letter-spacing: -.02em;
}

.v3-link:hover,
.v3-link:focus {
  color: var(--blue-dark);
}

.v3-link--white,
.v3-link--on-dark {
  color: var(--white);
}

.v3-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--r-pill);
  padding: 0 22px;
  color: var(--white);
  background: var(--blue);
  font-size: 17px;
  font-weight: 400;
  box-shadow: var(--shadow-tile);
  cursor: pointer;
}

.v3-btn:hover,
.v3-btn:focus {
  background: var(--blue-dark);
  outline: none;
}

.v3-btn--light {
  color: var(--ink);
  background: var(--white);
}

.v3-btn--light:hover,
.v3-btn--light:focus {
  color: var(--ink);
  background: var(--grey-panel);
}

.v3-hero .v3-btn--ghost {
  border: 1px solid var(--blue);
  color: var(--blue);
  background: transparent;
  box-shadow: none;
}

.v3-hero .v3-btn--ghost:hover,
.v3-hero .v3-btn--ghost:focus {
  color: var(--white);
  background: var(--blue);
}

.v3-section {
  padding: 60px clamp(18px, 4vw, 34px) 20px;
  background: var(--white);
}

.v3-section--slides-first {
  padding-top: 34px;
}

.v3-section--catalogue-first {
  padding-top: 34px;
}

.v3-section--home-primary {
  padding-top: 34px;
}

.v3-section--legacy-note {
  padding-top: 34px;
}

.v3-section--grey {
  background: var(--grey-panel);
}

.v3-section__head {
  max-width: 1140px;
  margin: 0 auto 24px;
  padding: 0 22px;
  text-align: center;
}

.v3-section__head h2,
.v3-feature h2,
.v3-cta h2,
.v3-note h2 {
  margin-bottom: 12px;
  color: inherit;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -.04em;
}

.v3-section__head p,
.v3-note p {
  margin: 0;
  color: var(--grey-text);
  font-size: 21px;
  letter-spacing: -.015em;
}

.v3-two-grid,
.v3-three-grid,
.v3-compact-grid,
.v3-compare__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.v3-two-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v3-three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v3-compact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
}

.v3-compare__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v3-range-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.v3-tile,
.v3-feature,
.v3-form,
.v3-sidecard,
.v3-note {
  border-radius: var(--r-tile);
}

/* Patch 02 - tile body and media stay in normal flow to avoid text-on-image overlap. */
.v3-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-tile);
}

.v3-tile--dark {
  background: var(--black);
  color: var(--white);
}

.v3-tile__body {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  padding: 40px 34px 28px;
  text-align: center;
}

.v3-tile h3 {
  margin-bottom: 12px;
  font-size: clamp(34px, 3.9vw, 54px);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -.04em;
}

.v3-tile p {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  color: var(--grey-text);
  font-size: 17px;
}

.v3-tile--dark p,
.v3-tile--cover p {
  color: rgba(255, 255, 255, .78);
}

.v3-tile__media {
  position: relative;
  flex: 1 1 auto;
  min-height: 260px;
  overflow: hidden;
  background: var(--grey-panel);
}

.v3-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v3-tile--cover {
  display: block;
}

.v3-tile--cover .v3-tile__media {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.v3-tile--cover .v3-tile__body {
  position: relative;
  z-index: 2;
  padding-top: 50px;
}

.v3-tile--cover::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 50%);
  content: "";
  pointer-events: none;
}

.v3-tile--cover.v3-tile--dark .v3-tile__body {
  text-shadow: 0 1px 24px rgba(0,0,0,.5);
}

.v3-tile__code {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 3;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(0, 0, 0, .72);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 11px;
}

.v3-tile--compact {
  min-height: 440px;
}

.v3-tile--compact .v3-tile__body {
  padding: 26px;
}

.v3-tile--compact h3 {
  font-size: 28px;
  letter-spacing: -.03em;
}

.v3-tile--compact p {
  display: none;
}

.v3-feature {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  text-align: center;
}

.v3-feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.12), rgba(0,0,0,.58));
  content: "";
}

.v3-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v3-feature__copy {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 48px 22px;
}

.v3-feature p {
  color: rgba(255, 255, 255, .82);
  font-size: 21px;
}

.v3-pcard {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--r-card);
}

.v3-range-card {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--r-card);
}

.v3-pcard a,
.v3-range-card a {
  display: grid;
  min-height: 100%;
}

.v3-range-card a[data-lightbox] {
  cursor: zoom-in;
}

.v3-range-grid--slides {
  grid-auto-rows: 1fr;
}

.v3-range-grid--slides + .v3-chips {
  margin-top: 28px;
  margin-bottom: 0;
}

.v3-range-card--slide {
  min-height: 336px;
}

.v3-range-card--slide a {
  height: 100%;
  grid-template-rows: 248px 88px;
}

.v3-range-card--slide .v3-range-card__media {
  height: 248px;
}

.v3-range-card--slide .v3-range-card__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.v3-range-card--slide .v3-range-card__body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.v3-range-card--slide .v3-range-card__code,
.v3-range-card--slide .v3-range-card__cat,
.v3-range-card--slide .v3-link,
.v3-range-card--slide .v3-range-card__body > p {
  display: none;
}

.v3-range-card--slide h3 {
  margin-bottom: 0;
  min-height: 0;
}

.v3-range-card.is-hidden {
  display: none;
}

.v3-pcard__media,
.v3-range-card__media {
  padding: 16px;
  background: var(--grey-panel);
}

.v3-pcard__media img,
.v3-range-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r-small);
}

.v3-pcard__body,
.v3-range-card__body {
  padding: 18px 14px 22px;
  text-align: center;
}

.v3-pcard__code,
.v3-range-card__code {
  margin-bottom: 8px;
  color: var(--grey-faint);
  font-family: var(--font-mono);
  font-size: 11px;
}

.v3-pcard__cat,
.v3-range-card__cat {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 13px;
}

.v3-pcard h3,
.v3-range-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -.03em;
}

.v3-pcard p,
.v3-range-card p {
  color: var(--grey-text);
  font-size: 14px;
}

.v3-pcard .v3-link,
.v3-range-card .v3-link {
  margin-top: auto;
  font-size: 15px;
}

.v3-fast-summary {
  max-width: var(--max);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--grey-line-2);
  border-radius: var(--r-tile);
  background: var(--white);
}

.v3-fast-summary p,
.v3-fast-group__head p {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.v3-fast-summary h2 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.v3-fast-nav {
  max-width: var(--max);
  margin: 0 auto 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.v3-fast-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--grey-line);
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.v3-fast-nav span {
  color: var(--grey-text);
  font-family: var(--font-mono);
  font-size: 12px;
}

.v3-fast-groups {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.v3-fast-group {
  scroll-margin-top: 88px;
}

.v3-fast-group__head {
  margin-bottom: 12px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.v3-fast-group__head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
}

.v3-fast-group__head a {
  color: var(--blue);
  font-weight: 700;
}

.v3-fast-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.v3-fast-item {
  min-height: 124px;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--grey-line-2);
  border-radius: var(--r-card);
  background: var(--white);
  color: var(--ink);
}

.v3-fast-item img {
  width: 126px;
  height: 104px;
  object-fit: cover;
  border-radius: var(--r-small);
  background: var(--grey-panel);
}

.v3-fast-item__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v3-fast-item strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.14;
}

.v3-fast-item__code,
.v3-fast-item__meta {
  margin-top: 6px;
  color: var(--grey-text);
  font-size: 12px;
}

.v3-fast-item__code {
  font-family: var(--font-mono);
}

.v3-fast-item__link {
  margin-top: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.v3-backtop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  min-height: 42px;
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: var(--r-pill);
  padding: 0 15px;
  color: var(--white);
  background: rgba(29, 29, 31, .88);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, background-color .18s ease;
}

.v3-backtop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.v3-backtop:hover,
.v3-backtop:focus {
  background: var(--black);
  outline: none;
}

.has-lightbox {
  width: 100%;
  overflow: hidden;
}

.has-search {
  width: 100%;
  overflow: hidden;
}

.v3-search {
  position: fixed;
  inset: 0;
  z-index: 92;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 82px 20px 24px;
  background: rgba(0, 0, 0, .42);
}

.v3-search.is-open {
  display: grid;
}

.v3-search__panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 110px));
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .30);
}

.v3-search__head {
  padding: 28px 32px 14px;
}

.v3-search__head h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: 0;
}

.v3-search__head p {
  margin: 0;
  color: var(--grey-text);
  font-size: 14px;
  line-height: 1.45;
}

.v3-search__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.v3-search__field {
  display: grid;
  gap: 8px;
  padding: 0 32px 14px;
}

.v3-search__field span {
  color: var(--grey-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.v3-search__field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 15px;
  color: var(--ink);
  background: #f8f9fb;
  font: 500 18px/1.2 var(--font);
  outline: none;
}

.v3-search__field input:focus {
  border-color: rgba(0, 113, 227, .55);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, .12);
}

.v3-search__status {
  margin: 0;
  padding: 0 32px 14px;
  color: var(--grey-text);
  font-size: 13px;
}

.v3-search__results {
  display: grid;
  gap: 1px;
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.v3-search__item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  min-height: 108px;
  padding: 12px 32px;
  color: inherit;
  background: var(--white);
}

.v3-search__item:hover,
.v3-search__item:focus {
  background: #f5f8fc;
  outline: none;
}

.v3-search__thumb {
  width: 96px;
  height: 84px;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: var(--grey-panel);
}

.v3-search__thumb img,
.v3-search__thumb-fallback {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.v3-search__copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 5px;
}

.v3-search__copy strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.22;
  font-weight: 700;
}

.v3-search__copy span {
  color: var(--grey-text);
  font-size: 13px;
  line-height: 1.3;
}

.v3-search__code {
  font-family: var(--font-mono);
}

.v3-lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, .64);
}

.v3-lightbox.is-open {
  display: grid;
}

.v3-lightbox__panel {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  padding: 0;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
}

.v3-lightbox__media {
  position: relative;
  max-height: 50vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.v3-lightbox__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 50vh;
  object-fit: contain;
}

.v3-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.v3-lightbox__nav[hidden] {
  display: none;
}

.v3-lightbox__nav--prev {
  left: 18px;
}

.v3-lightbox__nav--next {
  right: 18px;
}

.v3-lightbox__count {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 2;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .14);
  font-size: 12px;
  line-height: 1.2;
  transform: translateX(-50%);
}

.v3-lightbox__count[hidden] {
  display: none;
}

.v3-lightbox__body {
  padding: 24px 32px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.v3-lightbox__head {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.v3-lightbox__title {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
}

.v3-lightbox__code {
  margin: 0;
  color: var(--grey-text);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 12px;
  letter-spacing: .04em;
}

.v3-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.v3-lightbox__content .lb-summary {
  margin: 0 0 12px;
  color: #374151;
  font-size: 15px;
  line-height: 1.55;
}

.v3-lightbox__content .lb-specs {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 5px 14px;
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.35;
}

.v3-lightbox__content .lb-specs dt {
  color: var(--grey-text);
}

.v3-lightbox__content .lb-specs dd {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}

.v3-lightbox__content .lb-applications h2 {
  margin: 0 0 8px;
  color: var(--grey-text);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.v3-lightbox__content .lb-applications ul {
  margin: 0 0 12px;
  padding-left: 20px;
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
}

.v3-lightbox__content .lb-cta {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.v3-sitemap {
  padding-top: 20px;
}

.v3-sitemap__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 34px;
}

.v3-sitemap__group h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.v3-sitemap__group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.v3-sitemap__group li + li {
  margin-top: 8px;
}

.v3-sitemap__group a,
.v3-sitemap__xml a {
  color: var(--blue);
  text-decoration: none;
}

.v3-sitemap__group a:hover,
.v3-sitemap__xml a:hover {
  text-decoration: underline;
}

.v3-sitemap__xml {
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--grey-text);
  font-size: 14px;
  line-height: 1.5;
}

.v3-text-page {
  padding-top: 18px;
}

.v3-text-page__inner {
  max-width: 860px;
  margin: 0 auto;
}

.v3-text-page__inner p,
.v3-text-page__inner li {
  color: #374151;
  font-size: 17px;
  line-height: 1.72;
}

.v3-text-page__inner p {
  margin: 0 0 18px;
}

.v3-text-page__inner h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: 0;
}

.v3-text-page__inner ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.v3-text-page__inner li + li {
  margin-top: 9px;
}

.v3-trust {
  padding: 44px 20px;
  background: var(--grey-panel);
}

.v3-trust__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  text-align: center;
}

.v3-trust__item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.035em;
}

.v3-trust__item p {
  margin: 0;
  color: var(--grey-text);
  font-size: 14px;
}

.v3-related {
  padding-top: 36px;
}

.v3-related__links {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

/* Related products rendered as touch-friendly chips (Fast Track style, a touch
   larger). min-height 48px clears the mobile touch-target guideline; the flex
   gap guarantees spacing between adjacent targets. */
.v3-related__chips {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.v3-chip-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--grey-line);
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.v3-chip-link:hover,
.v3-chip-link:focus {
  border-color: var(--blue);
  color: var(--blue);
  outline: none;
}

.v3-cta {
  padding: 60px 22px;
  color: var(--white);
  background: var(--black);
  text-align: center;
}

.v3-cta p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .78);
  font-size: 21px;
}

.v3-page-hero {
  padding: 48px 22px 32px;
  background: var(--white);
  text-align: center;
}

.v3-page-hero h1 {
  max-width: 860px;
  margin: 0 auto 18px;
  color: var(--ink);
  font-size: clamp(52px, 6vw, 78px);
  line-height: .96;
  font-weight: 600;
  letter-spacing: -.04em;
}

.v3-page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--grey-text);
  font-size: 21px;
  letter-spacing: -.015em;
}

.v3-breadcrumb {
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--grey-text);
  font-size: 14px;
}

.v3-breadcrumb a {
  color: var(--blue);
}

.v3-chips {
  max-width: var(--max);
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.v3-chip {
  min-height: 44px;
  border: 1px solid var(--grey-line);
  border-radius: var(--r-pill);
  padding: 0 17px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.v3-chip.is-active {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.v3-note {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px;
  background: var(--white);
  text-align: center;
}

.v3-note h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
}

/* ---------- FAQ (accordion) — Claude Design FAQ_STYLE_v03 ---------- */
.v3-faq__list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--grey-line-2);
}

.v3-faq__item {
  border-bottom: 1px solid var(--grey-line-2);
}

.v3-faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 6px;
  cursor: pointer;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -.02em;
  -webkit-tap-highlight-color: transparent;
}

.v3-faq__item summary::-webkit-details-marker { display: none; }

.v3-faq__item summary:hover { color: var(--blue); }

.v3-faq__item summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: var(--r-small);
}

/* +/- drawn in CSS, no icon dependency */
.v3-faq__item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--grey-faint);
  background:
    linear-gradient(currentColor, currentColor) center / 17px 1.6px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.6px 17px no-repeat;
  transition: color .18s ease, transform .2s ease;
}

.v3-faq__item[open] summary { color: var(--blue); }

.v3-faq__item[open] summary::after {
  color: var(--blue);
  background:
    linear-gradient(currentColor, currentColor) center / 17px 1.6px no-repeat;
  transform: rotate(180deg);
}

.v3-faq__a {
  max-width: 700px;
  padding: 0 6px 26px;
}

.v3-faq__a p {
  margin: 0;
  color: var(--grey-text);
  font-size: 17px;
  line-height: 1.62;
}

.v3-faq__item[open] .v3-faq__a {
  animation: v3-faq-reveal .2s ease;
}

@keyframes v3-faq-reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .v3-faq__item summary { font-size: 18px; padding: 19px 2px; gap: 16px; }
  .v3-faq__a { padding-bottom: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .v3-faq__item summary::after { transition: color .18s ease; }
  .v3-faq__item[open] summary::after { transform: none; }
  .v3-faq__item[open] .v3-faq__a { animation: none; }
}

.v3-contact {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr);
  gap: 20px;
  align-items: start;
}

.v3-form,
.v3-sidecard {
  border: 1px solid var(--grey-line-2);
  background: var(--white);
}

.v3-form {
  padding: 30px;
}

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

.v3-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 14px;
}

.v3-req {
  color: var(--red);
  margin-left: 2px;
}

.v3-form input,
.v3-form select,
.v3-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--grey-line);
  border-radius: var(--r-card);
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
}

.v3-form textarea {
  min-height: 150px;
  resize: vertical;
}

.v3-form__note {
  margin: 14px 0 0;
  color: var(--grey-text);
  font-size: 14px;
}

.v3-form__note.is-error {
  color: var(--red);
}

.v3-form__note.is-success {
  color: #198754;
}

.v3-contact__side {
  display: grid;
  gap: 20px;
}

.v3-sidecard {
  padding: 26px;
}

.v3-sidecard--dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.v3-sidecard h3 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.035em;
}

.v3-sidecard p,
.v3-sidecard li {
  color: var(--grey-text);
}

.v3-sidecard--dark p,
.v3-sidecard--dark li {
  color: rgba(255, 255, 255, .78);
}

.v3-sidecard ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.v3-sidecard li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--grey-line);
}

/* /services/ "Choose your repair track" - image-topped cards (v03 imagery, see
   docs/SERVICES_IMAGERY_EN.md). The media slot shows a real photo when one exists
   at src/assets/img/approved/services/<slug>.jpg, otherwise a striped placeholder
   with a monospace label (never stock/icon/SVG). Tokens only. */
.svc-tracks {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-line-2);
  border-radius: var(--r-card);
}

.svc-card__media {
  padding: 14px 14px 0;
}

.svc-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--r-small);
  background: var(--grey-panel);
}

.svc-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 12px;
  border-radius: var(--r-small);
  background:
    repeating-linear-gradient(-45deg,
      var(--grey-panel), var(--grey-panel) 14px,
      var(--grey-line-2) 14px, var(--grey-line-2) 28px);
  color: var(--grey-text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  text-align: center;
}

.svc-card__body {
  padding: 18px 20px 24px;
}

.svc-card__body h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.035em;
  color: var(--ink);
}

.svc-card__body h3 a {
  color: inherit;
}

.svc-card__body p {
  margin: 0 0 14px;
  color: var(--grey-text);
  font-size: 17px;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .svc-tracks {
    grid-template-columns: 1fr;
  }
}

/* Apple-style breadcrumb: a quiet nav bar just above the footer. Constrained to
   the same column width as the footer, small grey text, blue links. */
.v3-breadcrumb-bottom {
  background: var(--white);
  border-top: 1px solid var(--grey-line-2);
}

.v3-breadcrumb-bottom__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--grey-text);
  font-size: 14px;
  line-height: 1.4;
}

.v3-breadcrumb-bottom__inner a {
  color: var(--blue);
}

.v3-breadcrumb-bottom__inner a:hover,
.v3-breadcrumb-bottom__inner a:focus {
  color: var(--blue-dark);
}

.v3-breadcrumb-bottom__inner [aria-current="page"] {
  color: var(--ink);
}

.v3-breadcrumb-bottom__sep {
  color: var(--grey-faint);
}

.v3-footer {
  color: var(--grey-text);
  background: var(--grey-panel);
  font-size: 12px;
}

.v3-footer__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 24px 22px;
}

.v3-footer__note {
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--grey-line);
}

.v3-footer__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.v3-footer h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.v3-footer__toggle {
  display: none;
}

.v3-footer ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
  list-style: none;
}

.v3-footer a:hover,
.v3-footer a:focus {
  color: var(--ink);
}

.v3-footer__bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--grey-line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.v3-footer__bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1024px) {
  .v3-section {
    padding-top: 48px;
    padding-bottom: 16px;
  }

  .v3-two-grid,
  .v3-three-grid,
  .v3-compare__grid,
  .v3-range-grid,
  .v3-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v3-compact-grid,
  .v3-trust__grid,
  .v3-sitemap__grid,
  .v3-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v3-hero__head {
    padding: 24px 22px 28px;
  }

  .v3-hero h1 {
    font-size: 44px;
  }

  .v3-hero__media {
    height: 360px;
  }

  .v3-tile {
    min-height: 500px;
  }

  .v3-feature {
    min-height: 420px;
  }

  .v3-fast-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (min-width: 721px) {
  .v3-hero--category {
    padding-top: 42px;
    padding-bottom: 10px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .v3-nav,
  .v3-nav__inner {
    height: 48px;
  }

  .v3-nav__inner {
    padding: 0 12px 0 18px;
  }

  .v3-nav__list {
    position: absolute;
    left: 0;
    right: 0;
    top: 48px;
    display: none;
    padding: 10px 18px 18px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
  }

  .v3-nav__list.is-open {
    display: grid;
  }

  .v3-nav__list a {
    min-height: 48px;
    padding: 0;
    font-size: 17px;
  }

  .v3-nav__hamb {
    display: inline-flex;
  }

  .v3-nav__icon {
    display: none;
  }

  .v3-nav__icon[data-search-open] {
    display: inline-flex;
  }

  .v3-subband__inner {
    display: grid;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .v3-subband__title {
    font-size: 18px;
  }

  .v3-subband__actions {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }

  .v3-hero__head {
    padding: 20px 18px 24px;
  }

  .v3-hero h1 {
    font-size: 32px;
  }

  .v3-hero__sub {
    margin-bottom: 20px;
    font-size: 17px;
  }

  .v3-page-hero p,
  .v3-section__head p,
  .v3-feature p,
  .v3-cta p {
    font-size: 19px;
  }

  .v3-hero__media {
    height: 280px;
  }

  .v3-hero .v3-btn {
    width: auto;
  }

  .v3-code-chip {
    left: 14px;
    right: 14px;
    bottom: 14px;
    text-align: center;
  }

  .v3-section {
    padding: 36px 16px 14px;
  }

  .v3-section__head {
    margin-bottom: 20px;
    padding: 0 18px;
  }

  .v3-two-grid,
  .v3-three-grid,
  .v3-compact-grid,
  .v3-compare__grid,
  .v3-range-grid,
  .v3-trust__grid,
  .v3-sitemap__grid,
  .v3-contact,
  .v3-form__row {
    grid-template-columns: 1fr;
  }

  .v3-range-card--slide {
    min-height: auto;
  }

  .v3-range-card--slide a {
    grid-template-rows: auto 86px;
  }

  .v3-range-card--slide .v3-range-card__media {
    height: auto;
  }

  .v3-range-card--slide .v3-range-card__media img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .v3-tile {
    min-height: 468px;
  }

  .v3-tile__body {
    padding: 26px 20px;
  }

  .v3-trust {
    padding: 30px 20px;
  }

  .v3-cta {
    padding: 40px 18px;
  }

  .v3-feature {
    min-height: 360px;
  }

  .v3-page-hero {
    padding: 32px 18px 24px;
  }

  .v3-page-hero h1 {
    font-size: 48px;
  }

  .v3-btn {
    width: 100%;
  }

  .v3-backtop {
    right: 14px;
    bottom: 14px;
    min-height: 40px;
    padding: 0 13px;
    font-size: 14px;
  }

  .v3-search {
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    background: var(--white);
  }

  .v3-search__panel {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-width: none;
    max-height: none;
    min-height: 0;
    grid-template-rows: auto auto auto minmax(0, 1fr);
    border-radius: 0;
    box-shadow: none;
  }

  .v3-search__head {
    padding: 24px 18px 12px;
  }

  .v3-search__head h2 {
    font-size: 24px;
  }

  .v3-search__field,
  .v3-search__status {
    padding-left: 18px;
    padding-right: 18px;
  }

  .v3-search__item {
    grid-template-columns: 86px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    min-height: 102px;
    padding: 10px 18px;
  }

  .v3-search__copy {
    align-content: start;
    padding-top: 2px;
  }

  .v3-search__thumb {
    width: 86px;
    height: 82px;
  }

  .v3-fast-summary,
  .v3-fast-group__head {
    display: grid;
    align-items: start;
  }

  .v3-fast-nav {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 6px;
    padding-bottom: 0;
  }

  .v3-fast-nav a {
    min-height: 32px;
    padding: 0 10px;
    white-space: normal;
    font-size: 12px;
    line-height: 1.1;
  }

  .v3-fast-nav span {
    font-size: 11px;
  }

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

  .v3-fast-item {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .v3-fast-item img {
    width: 112px;
    height: 96px;
  }

  .v3-contact__side {
    grid-template-columns: 1fr;
  }

  .v3-form {
    padding: 22px;
  }

  .v3-note {
    padding: 30px 18px;
  }

  .v3-note h2 {
    font-size: 32px;
  }

  .v3-footer__grid,
  .v3-footer__bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .v3-footer h2 {
    display: none;
  }

  .v3-footer__col {
    border-bottom: 1px solid var(--grey-line);
  }

  .v3-footer__toggle {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding: 0;
    color: var(--ink);
    background: transparent;
    font-size: 12px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
  }

  .v3-footer__toggle::after {
    content: "+";
  }

  .v3-footer__toggle[aria-expanded="true"]::after {
    content: "-";
  }

  .v3-footer__col ul {
    display: none;
    padding: 0 0 14px;
  }

  .v3-footer__col.is-open ul {
    display: grid;
  }

  .v3-hero--category {
    padding-top: 30px;
    padding-bottom: 8px;
  }

  .v3-lightbox {
    padding: 0;
  }

  .v3-lightbox__panel {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }

  .v3-lightbox__media,
  .v3-lightbox__image {
    max-height: 40vh;
  }

  .v3-lightbox__media {
    touch-action: pan-y;
  }

  .v3-lightbox__nav {
    width: 38px;
    height: 38px;
    font-size: 30px;
  }

  .v3-lightbox__nav--prev {
    left: 10px;
  }

  .v3-lightbox__nav--next {
    right: 10px;
  }

  .v3-lightbox__body {
    padding: 20px 16px calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .v3-lightbox__title {
    font-size: 20px;
  }
}

/* ---------- Patch 01 - Adjacent-section rhythm ---------- */

/* When a page hero is followed directly by a content section, the section
   absorbs the gap. Standalone sections keep their larger Apple-scale spacing. */
.v3-page-hero {
  padding-bottom: clamp(28px, 3vw, 44px);
}

.v3-page-hero + .v3-section,
.v3-page-hero + .v3-feature,
.v3-page-hero + .v3-trust {
  padding-top: clamp(24px, 3vw, 40px);
}

.v3-page-hero + .v3-section > .v3-chips:first-child {
  margin-top: 0;
  margin-bottom: clamp(20px, 2vw, 28px);
}

.v3-subband + .v3-page-hero {
  padding-top: clamp(44px, 5vw, 72px);
}

.v3-section + .v3-section {
  padding-top: clamp(28px, 3vw, 48px);
}

.v3-page-hero + .v3-section .v3-section__head {
  margin-bottom: clamp(22px, 2.5vw, 32px);
}

/* ---------- Product detail pages (broom pilot) ---------- */

/* The product page reuses the lightbox content classes (.lb-summary,
   .lb-specs, .lb-applications, .lb-cta) inside [data-product-content], so the
   popup and the standalone page render the same content identically. These
   rules add the page-only chrome: a left-aligned breadcrumb, the heading
   block, and the gallery. Tokens and radii match the rest of v03. */

.v3-pdp {
  padding-top: clamp(18px, 2.4vw, 30px);
}

.v3-pdp__content {
  max-width: 860px;
  margin: 0 auto;
}

.v3-pdp__head {
  margin-bottom: 22px;
}

.v3-pdp__head h1 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -.03em;
}

.v3-pdp__code {
  margin: 0;
  color: var(--grey-faint);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
}

/* Internal-use link on the product code: clickable but visually identical to
   the surrounding code text (no underline, inherits colour). Lets staff open
   the full product page from the popup without changing how the code looks. */
.v3-code-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.v3-code-link:hover,
.v3-code-link:focus {
  text-decoration: none;
  color: inherit;
}

/* Visually-hidden but available to screen readers and the heading outline.
   Used for structural section headings on listing pages (valid h1 -> h2 -> h3,
   no skipped levels) without changing the visual design. */
.v3-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Gallery: approved photos stacked one under another, shown at their natural
   proportions (no cropping). Width is capped at 960px (or the content column,
   whichever is smaller) and scaled down proportionally; smaller photos keep
   their own size. */
.v3-pdp__gallery {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 26px;
}

.v3-pdp__gallery img,
.v3-pdp__gallery img:first-child {
  width: auto;
  max-width: min(960px, 100%);
  height: auto;
  background: var(--grey-panel);
  border-radius: var(--r-card);
}

/* The product page's own content column reuses lightbox typography. Mirror the
   lightbox content rules here so the standalone page matches the popup. */
.v3-pdp__content .lb-summary {
  margin: 0 0 18px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
}

.v3-pdp__content .lb-specs {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 7px 18px;
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.4;
}

.v3-pdp__content .lb-specs dt {
  color: var(--grey-text);
}

.v3-pdp__content .lb-specs dd {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}

.v3-pdp__content .lb-applications h2 {
  margin: 0 0 8px;
  color: var(--grey-text);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.v3-pdp__content .lb-applications ul {
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}

.v3-pdp__content .lb-cta {
  padding-top: 18px;
  border-top: 1px solid var(--grey-line-2);
}

/* Breadcrumb on product pages is left-aligned (the base .v3-breadcrumb is
   centred for category heroes). Constrain to the same column as the content. */
.v3-breadcrumb--pdp {
  max-width: 860px;
  margin: 0 auto 8px;
  padding: clamp(18px, 2.4vw, 28px) clamp(18px, 4vw, 34px) 0;
  justify-content: flex-start;
}

.v3-breadcrumb--pdp span {
  color: var(--grey-faint);
}

/* Loading state shown in the popup while the product page is fetched. */
.v3-lightbox__loading {
  margin: 0;
  padding: 24px 0;
  color: var(--grey-text);
  font-size: 15px;
}

.v3-lightbox__loading::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 9px;
  vertical-align: -2px;
  border: 2px solid var(--grey-line);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: v3-spin .7s linear infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .v3-lightbox__loading::before {
    animation-duration: 2.4s;
  }
}

@media (max-width: 720px) {
  .v3-breadcrumb--pdp {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ---------------------------------------------------------------------------
   Category tiles: visual cue so a tile that is a container of further tiles
   (category / sub-category / collection) is distinguishable from a single
   product at a glance. Targets the .v3-range-card--category class emitted by
   range_card (all container tiles); product tiles get .v3-range-card--product
   instead, so they stay untouched. Pure CSS, v03 palette, no images.
   --------------------------------------------------------------------------- */
.v3-range-card--category .v3-range-card__media {
  border: 1px solid var(--grey-line);
  border-radius: var(--r-card);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.04) 0,
    rgba(0, 0, 0, 0.04) 1px,
    transparent 1px,
    transparent 7px
  );
}
