@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-700.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/inter-800.woff2") format("woff2");
}

:root {
  color: #10294d;
  background: #f6f8fb;
  font-family: "Inter", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --blue-950: #052e62;
  --blue-900: #073c7d;
  --blue-800: #07529e;
  --blue-700: #0763b6;
  --blue-100: #e8f3fc;
  --blue-50: #f3f9fe;
  --orange: #ff7314;
  --orange-dark: #e85e00;
  --red: #c82026;
  --ink: #10294d;
  --muted: #5d6d81;
  --line: #dce4ec;
  --paper: #ffffff;
  --shadow: 0 12px 35px rgba(13, 50, 92, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #f6f8fb;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

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

[hidden] {
  display: none !important;
}

.lampe-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #e7ecf1;
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, 1380px);
  min-height: 88px;
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 3px;
}

.brand strong {
  color: var(--blue-800);
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.brand small {
  color: var(--muted);
  font-size: 0.95rem;
}

.header-actions,
.hero-actions,
.bottom-actions,
.detail-actions,
.advice-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-800);
  font-size: 1.45rem;
  font-weight: 800;
  white-space: nowrap;
}

.phone-link svg {
  font-size: 1.2em;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button:focus-visible,
.brand:focus-visible,
.card-link:focus-visible,
.gallery button:focus-visible,
.breadcrumb a:focus-visible,
.dialog-close:focus-visible,
.mobile-actions a:focus-visible,
.mobile-actions button:focus-visible {
  outline: 3px solid #ffb57e;
  outline-offset: 3px;
}

.button-orange {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 115, 20, 0.25);
}

.button-orange:hover {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: var(--blue-800);
}

.button-blue {
  border-color: var(--blue-800);
  background: var(--blue-800);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(520px, 49%) 1fr;
  width: min(100% - 32px, 1410px);
  min-height: 490px;
  margin: 16px auto 0;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background: var(--blue-800);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 4vw, 56px);
  color: #fff;
}

.hero-kicker {
  margin-bottom: 18px;
  color: #d8edff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(2.8rem, 4vw, 4.1rem);
  line-height: 0.99;
}

.hero-subline {
  max-width: 580px;
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero-reassurance {
  max-width: 570px;
  margin-bottom: 28px;
  color: #dceeff;
  font-size: 1rem;
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  background: #244a2d;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-image-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(4, 45, 95, 0.9);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 750;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100% - 32px, 1410px);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.trust-item {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item > svg {
  flex: 0 0 auto;
  color: var(--blue-800);
  font-size: 2rem;
}

.trust-item span {
  display: grid;
  gap: 4px;
}

.trust-item strong {
  color: var(--blue-900);
  font-size: 1.13rem;
}

.trust-item small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.section {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
  padding-block: 72px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 40px;
}

.section-heading > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(13, 50, 92, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-link {
  display: grid;
  width: 100%;
  grid-template-columns: 46% 1fr;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.card-link > img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.product-card h3 {
  margin-bottom: 12px;
  color: var(--blue-950);
  font-size: clamp(1.28rem, 2vw, 1.68rem);
  line-height: 1.15;
}

.product-card p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  border-radius: 8px;
  background: var(--blue-50);
  color: var(--blue-800);
  font-size: 1.08rem;
}

.price-row strong {
  font-size: 1.5rem;
}

.price-row small {
  color: var(--muted);
  font-size: 0.72rem;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--blue-800);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: #9bc4e5;
  text-underline-offset: 3px;
}

.advice-band {
  display: grid;
  grid-template-columns: 118px 1fr auto;
  align-items: center;
  gap: 30px;
  width: min(100% - 48px, 1320px);
  margin: 0 auto 20px;
  padding: 30px;
  border-radius: 18px;
  background: var(--blue-900);
  color: #fff;
}

.advice-band > img {
  width: 118px;
  height: 118px;
  border: 4px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
}

.advice-band .eyebrow {
  color: #ffbd8d;
}

.advice-band h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.advice-band p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: #dceeff;
  line-height: 1.55;
}

.advice-actions {
  flex-direction: column;
  align-items: stretch;
}

.reference-section {
  padding-top: 100px;
}

.reference-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.reference-list span {
  padding: 10px 14px;
  border: 1px solid #bed4e6;
  border-radius: 999px;
  background: #fff;
  color: var(--blue-800);
  font-size: 0.86rem;
  font-weight: 650;
}

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

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(13, 50, 92, 0.07);
}

.video-poster {
  position: relative;
  height: 235px;
  overflow: hidden;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-person img {
  object-position: center 25%;
}

.video-poster span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  transform: translate(-50%, -50%);
}

.video-card h3 {
  margin: 20px 22px 6px;
  color: var(--blue-950);
  font-size: 1.14rem;
}

.video-card p {
  margin: 0 22px 22px;
  color: var(--muted);
  font-size: 0.88rem;
}

.bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: min(100% - 32px, 1410px);
  margin: 0 auto 18px;
  padding: clamp(42px, 6vw, 74px);
  border-radius: 16px;
  background: var(--blue-800);
  color: #fff;
}

.bottom-cta h2 {
  max-width: 780px;
  margin-bottom: 14px;
  color: #fff;
}

.bottom-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: #dceeff;
}

.bottom-cta .eyebrow {
  color: #ffbd8d;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
  padding: 34px 0 38px;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer > div {
  display: grid;
  gap: 5px;
}

.site-footer > div:last-child {
  text-align: right;
}

.site-footer strong,
.site-footer a {
  color: var(--blue-900);
  font-weight: 750;
}

.detail-page {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
  padding: 28px 0 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: var(--blue-800);
  font-weight: 700;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 50px;
  align-items: start;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-main {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 12px;
  background: #e9eef3;
}

.gallery-main > img {
  width: 100%;
  height: 420px;
  object-fit: contain;
}

.gallery-main > .gallery-slide {
  display: none;
}

.gallery-main > .gallery-slide.active {
  display: block;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-900);
  box-shadow: 0 6px 20px rgba(4, 40, 80, 0.2);
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-arrow-left {
  left: 16px;
}

.gallery-arrow-right {
  right: 16px;
}

.gallery-counter {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 10px;
  border-radius: 7px;
  background: rgba(4, 45, 95, 0.9);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.gallery-thumbs button {
  overflow: hidden;
  height: 84px;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 8px;
  background: #e9eef3;
  cursor: pointer;
}

.gallery-thumbs button.active {
  border-color: var(--orange);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-summary {
  padding: 10px 0;
}

.detail-summary h1 {
  margin-bottom: 18px;
  color: var(--blue-950);
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  line-height: 1.03;
}

.detail-intro {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.6;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.detail-facts > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border-radius: 9px;
  background: var(--blue-50);
}

.detail-facts svg {
  color: var(--blue-800);
  font-size: 1.55rem;
}

.detail-facts span {
  display: grid;
  gap: 3px;
}

.detail-facts small {
  color: var(--muted);
  font-size: 0.72rem;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list svg {
  color: #15945f;
}

.detail-price {
  display: grid;
  gap: 5px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border-left: 5px solid var(--orange);
  background: #fff5ed;
}

.detail-price small {
  color: var(--muted);
}

.detail-price strong {
  color: var(--blue-900);
  font-size: 2rem;
}

.detail-price span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.detail-actions {
  flex-wrap: wrap;
}

.micro-copy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  margin-top: 34px;
}

.detail-content > article,
.detail-content > aside {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.detail-content h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.detail-content article > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

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

.included-grid > div {
  display: flex;
  gap: 10px;
  padding: 18px;
  border-radius: 10px;
  background: var(--blue-50);
}

.included-grid svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: #15945f;
}

.included-grid span {
  display: grid;
  gap: 6px;
}

.included-grid small {
  color: var(--muted);
  line-height: 1.4;
}

.detail-content aside {
  align-self: start;
  background: var(--blue-900);
  color: #fff;
}

.detail-content aside > svg {
  margin-bottom: 20px;
  color: #ffbd8d;
  font-size: 2.5rem;
}

.detail-content aside h3 {
  font-size: 1.6rem;
}

.detail-content aside p {
  color: #dceeff;
  line-height: 1.6;
}

.detail-content aside .button {
  margin-top: 10px;
  background: #fff;
  color: var(--blue-900);
}

.dialog-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 28, 59, 0.72);
}

.quote-dialog {
  position: relative;
  width: min(100%, 720px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(2, 28, 59, 0.35);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #eef3f7;
  color: var(--blue-900);
  cursor: pointer;
  font-size: 1.25rem;
}

.quote-dialog h2 {
  margin-bottom: 12px;
  padding-right: 34px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.dialog-intro {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.55;
}

.quote-dialog form {
  display: grid;
  gap: 16px;
}

.lampe-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.quote-dialog label {
  display: grid;
  gap: 7px;
  color: var(--blue-950);
  font-size: 0.82rem;
  font-weight: 700;
}

.quote-dialog input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #c5d2df;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.quote-dialog input:focus {
  border-color: var(--blue-700);
  outline: 3px solid #dbeefe;
}

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

.input-with-icon {
  position: relative;
  display: block;
}

.input-with-icon svg {
  position: absolute;
  top: 50%;
  left: 14px;
  color: var(--blue-700);
  transform: translateY(-50%);
}

.input-with-icon input {
  padding-left: 42px;
}

.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
  line-height: 1.45;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
}

.privacy-check a {
  color: var(--blue-800);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.submit-button {
  width: 100%;
  margin-top: 4px;
}

.form-success {
  display: grid;
  justify-items: start;
  padding: 30px 0;
}

.form-success > span {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: #e8f8f0;
  color: #15945f;
  font-size: 1.7rem;
}

.form-success p {
  color: var(--muted);
  line-height: 1.6;
}

.form-error {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-left: 4px solid var(--red);
  background: #fff2f2;
  color: #852128;
  font-size: 0.88rem;
  line-height: 1.5;
}

.admin-notice,
.content-page {
  width: min(100% - 48px, 1000px);
  margin: 48px auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.content-page {
  min-height: 50vh;
  line-height: 1.7;
}

.content-page h1 {
  color: var(--blue-950);
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.product-editor-content {
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.7;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 48% 52%;
  }

  .hero-copy {
    padding: 48px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 5.3vw, 4rem);
  }

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

  .trust-item:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .card-link {
    grid-template-columns: 1fr;
  }

  .card-link > img {
    min-height: 260px;
    height: 260px;
  }

  .advice-band {
    grid-template-columns: 96px 1fr;
  }

  .advice-band > img {
    width: 96px;
    height: 96px;
  }

  .advice-actions {
    grid-column: 1 / -1;
    flex-direction: row;
  }

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

  .detail-content {
    grid-template-columns: 1fr;
  }

  .detail-content aside {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
  }

  .detail-content aside > svg,
  .detail-content aside h3,
  .detail-content aside p {
    margin: 0;
  }

  .detail-content aside h3,
  .detail-content aside p {
    grid-column: 2;
  }

  .detail-content aside .button {
    grid-column: 3;
    grid-row: 1 / span 2;
    margin: 0;
  }
}

@media (max-width: 820px) {
  .header-inner {
    width: min(100% - 28px, 1320px);
    min-height: 78px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.76rem;
  }

  .phone-link {
    font-size: 1rem;
  }

  .header-quote {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(100% - 20px, 760px);
    margin-top: 10px;
  }

  .hero-copy {
    padding: 48px 30px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 10vw, 4rem);
  }

  .hero-image {
    min-height: 330px;
  }

  .trust-strip {
    width: min(100% - 20px, 760px);
  }

  .section {
    width: min(100% - 28px, 760px);
    padding-block: 72px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .card-link {
    grid-template-columns: 44% 1fr;
  }

  .card-link > img {
    min-height: 320px;
    height: 100%;
  }

  .advice-band {
    width: min(100% - 28px, 760px);
  }

  .bottom-cta {
    display: grid;
    width: min(100% - 20px, 760px);
  }

  .bottom-actions {
    flex-wrap: wrap;
  }

  .detail-page {
    width: min(100% - 28px, 760px);
  }

  .detail-hero {
    padding: 24px;
  }

  .gallery-main,
  .gallery-main > img {
    height: 390px;
    min-height: 390px;
  }

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

  .detail-content aside {
    display: block;
  }

  .detail-content aside > svg {
    margin-bottom: 18px;
  }

  .detail-content aside h3 {
    margin-bottom: 12px;
  }

  .detail-content aside p {
    margin-bottom: 18px;
  }

  .site-footer {
    width: min(100% - 28px, 760px);
    padding-bottom: 94px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 60;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(3, 35, 72, 0.3);
  }

  .mobile-actions a,
  .mobile-actions button {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    font-weight: 800;
  }

  .mobile-actions a {
    background: var(--blue-900);
    color: #fff;
  }

  .mobile-actions button {
    background: var(--orange);
    color: #fff;
  }
}

@media (max-width: 600px) {
  .header-actions .phone-link span {
    display: none;
  }

  .hero-copy {
    padding: 38px 24px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .hero-actions,
  .hero-actions .button,
  .bottom-actions,
  .bottom-actions .button {
    width: 100%;
  }

  .hero-image {
    min-height: 245px;
  }

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

  .trust-item {
    min-height: 92px;
  }

  .trust-item + .trust-item,
  .trust-item:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .card-link {
    grid-template-columns: 1fr;
  }

  .card-link > img {
    min-height: 230px;
    height: 230px;
  }

  .product-card-body {
    padding: 22px;
  }

  .advice-band {
    grid-template-columns: 72px 1fr;
    padding: 22px;
  }

  .advice-band > img {
    width: 72px;
    height: 72px;
  }

  .advice-band h2 {
    font-size: 1.45rem;
  }

  .advice-band p:not(.eyebrow) {
    grid-column: 1 / -1;
  }

  .advice-actions {
    flex-direction: column;
  }

  .gallery-main,
  .gallery-main > img {
    height: 280px;
    min-height: 280px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-thumbs button {
    height: 58px;
  }

  .detail-summary h1 {
    font-size: 2.3rem;
  }

  .detail-facts {
    grid-template-columns: 1fr;
  }

  .detail-actions,
  .detail-actions .button {
    width: 100%;
  }

  .detail-content > article,
  .detail-content > aside {
    padding: 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    gap: 22px;
  }

  .site-footer > div:last-child {
    text-align: left;
  }
}
