/* <!-- Font: SF Pro on Apple devices, Inter elsewhere --> */
:root {
  --black: #000000;
  --white: #ffffff;
  --ink: #1d1d1f;
  --ink-2: #2d2d2f;
  --grey-text: #6e6e73;
  --grey-faint: #86868b;
  --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-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  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;
}

.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__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--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: 456px;
}

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

.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: grid;
  grid-template-rows: auto auto minmax(48px, auto) 1fr auto;
  align-content: start;
}

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

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

.has-lightbox {
  overflow: hidden;
}

.v3-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  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;
  width: max-content;
  max-width: calc(100vw - 32px);
  padding: 12px;
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
}

.v3-lightbox__image {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - 56px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--r-small);
  background: var(--grey-panel);
}

.v3-lightbox__close {
  position: absolute;
  top: -14px;
  right: -14px;
  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__caption {
  display: grid;
  gap: 2px;
  padding: 10px 2px 0;
  color: var(--grey-text);
  font-size: 12px;
  text-align: left;
}

.v3-lightbox__caption strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.v3-lightbox__caption span:empty {
  display: none;
}

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

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

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

@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-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-contact,
  .v3-form__row {
    grid-template-columns: 1fr;
  }

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

  .v3-range-card--slide a {
    grid-template-rows: 230px 1fr;
  }

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

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

/* ---------- 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);
}
