:root {
  --black: #050505;
  --ink: #111111;
  --paper: #f5f5f5;
  --white: #ffffff;
  --muted: #666666;
  --line: #e1e1e1;
  --red: #e10613;
  --red-dark: #b9000a;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.quote-page .page-title {
  max-width: 1080px;
}

.quote-layout,
.quote-form-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 22px;
  align-items: start;
  margin-top: 24px;
}

.quote-form-section {
  grid-template-columns: minmax(0, 1fr);
}

.quote-checkout-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.quote-panel {
  padding: clamp(20px, 3vw, 34px);
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.quote-contact-panel {
  position: sticky;
  top: 96px;
}

.quote-next-steps {
  display: grid;
  gap: 10px;
  margin: 14px 0 18px;
}

.quote-next-steps div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f7f7f7;
}

.quote-next-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 13px;
}

.quote-next-steps span {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.quote-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.quote-items,
.suggestion-list {
  display: grid;
  gap: 12px;
}

.quote-item,
.suggestion-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafafa;
}

.suggestion-item {
  grid-template-columns: 64px minmax(0, 1fr);
}

.quote-item img,
.suggestion-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.quote-item h3,
.suggestion-item h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.quote-meta {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-item p,
.suggestion-item p,
.quote-empty p,
.quote-result p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.quote-remove,
.suggestion-add {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.suggestion-add {
  grid-column: 2;
  justify-self: start;
  padding: 0 12px;
}

.quote-empty {
  display: none;
  padding: 22px;
  border: 1px dashed #cccccc;
  border-radius: 8px;
  background: #fafafa;
}

.quote-empty.is-visible {
  display: block;
}

.quote-empty .button {
  margin-top: 16px;
}

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

.quote-contact-panel .quote-form {
  gap: 12px;
}

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

.quote-contact-panel .form-grid {
  gap: 10px 12px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.quote-form .consent-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.45;
}

.quote-form .consent-line input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  background: #fafafa;
}

.quote-contact-panel input,
.quote-contact-panel textarea {
  padding: 11px 12px;
}

.quote-contact-panel textarea {
  min-height: 96px;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(225, 6, 19, 0.22);
  border-color: var(--red);
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
}

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

.quote-send-box {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(225, 6, 19, 0.2);
  border-radius: 8px;
  background: #fff5f5;
}

.quote-send-box h3 {
  margin: 0 0 8px;
}

.quote-suggestions-panel {
  margin-top: 22px;
}

.quote-suggestions-panel .suggestion-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quote-suggestions-panel .suggestion-item {
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
}

.quote-count {
  display: none;
  min-width: 20px;
  min-height: 20px;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

.quote-count.is-visible {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img,
iframe,
video {
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.site-header.light-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.logo img {
  display: block;
  max-height: 48px;
}

.burger {
  position: absolute;
  right: 24px;
  top: 17px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  cursor: pointer;
}

.light-header .burger {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.menu {
  position: absolute;
  top: 76px;
  right: 24px;
  display: none;
  min-width: 220px;
  padding: 12px;
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.menu.show {
  display: block;
}

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

.menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 6px;
  color: var(--white);
  font-weight: 700;
}

.menu a:hover,
.menu a.active {
  background: var(--red);
}

.hero-slider {
  position: relative;
  min-height: 540px;
  padding-top: 76px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-slider > a,
.hero-slider img {
  display: block;
  width: 100%;
  height: 540px;
}

.hero-slider img {
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 0.35s ease;
}

.hero-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 760px;
  padding: 132px clamp(20px, 6vw, 80px) 64px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.78) 42%, rgba(0, 0, 0, 0.5) 100%),
    url("../images/Fiches_produits_16_9/son-lumieres-mtpboxing.jpg") center / cover;
  opacity: 0.86;
}

.hero-showcase > * {
  position: relative;
  z-index: 1;
}

.hero-text {
  position: absolute;
  left: clamp(20px, 7vw, 90px);
  bottom: 74px;
  width: min(720px, calc(100% - 40px));
}

.hero-showcase .hero-text {
  position: static;
  width: auto;
}

.hero-proof-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.hero-proof-points span {
  min-height: 54px;
  padding: 12px 14px;
  border-left: 3px solid var(--red);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.hero-universe {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 2px solid rgba(200, 169, 107, 0.8);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.48);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-universe > .eyebrow {
  color: #d7b56d;
  text-align: center;
}

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

.universe-card {
  position: relative;
  display: block;
  min-height: 138px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: #111111;
}

.universe-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 138px;
  object-fit: cover;
  opacity: 0.68;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.universe-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.78));
}

.universe-card span {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 13px;
  color: var(--white);
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.universe-card:hover img {
  opacity: 0.86;
  transform: scale(1.04);
}

.hero-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(126px, 1fr);
  gap: 12px;
  min-height: 520px;
}

.hero-tile {
  position: relative;
  min-height: 126px;
  overflow: hidden;
  border-radius: 8px;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-tile-large {
  grid-column: span 2;
  grid-row: span 2;
}

.hero-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.hero-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
}

.hero-tile span {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}

.hero-tile:hover img {
  opacity: 0.9;
  transform: scale(1.04);
}

.hero-text p,
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

h3 {
  margin: 16px 0 8px;
  font-size: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(17px, 2vw, 21px) !important;
  font-weight: 500 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.primary.is-added {
  background: #12803c;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.button.secondary.dark {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dot.active {
  background: var(--white);
}

.section,
.page-main {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 6vw, 80px);
}

.page-main {
  padding-top: 136px;
}

.section-heading,
.page-title {
  max-width: 980px;
  margin-bottom: 34px;
}

.page-title p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #2b2b2b;
}

.trust-strip div {
  min-height: 118px;
  padding: 28px clamp(20px, 4vw, 54px);
  color: var(--white);
  background: var(--black);
}

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

.trust-strip strong {
  margin-bottom: 8px;
  font-size: clamp(20px, 2.2vw, 28px);
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.service-card {
  display: block;
  min-height: 100%;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.service-card-featured {
  border-top: 4px solid var(--red);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-top: 14px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.options-band {
  background: var(--white);
}

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

.compact-grid a {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: #fafafa;
  font-weight: 900;
}

.signature-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 114, 255, 0.12), rgba(225, 6, 19, 0.1)),
    var(--black);
}

.signature-section .section-heading h2 {
  max-width: 880px;
}

.signature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.875fr));
  gap: 14px;
}

.signature-card {
  position: relative;
  display: grid;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #101010;
}

.signature-card-large {
  grid-row: span 2;
  min-height: 516px;
}

.signature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
  transform: scale(1.01);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.signature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.86));
}

.signature-card div {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: clamp(18px, 2.5vw, 30px);
}

.signature-card span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.signature-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.signature-card p {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.48;
}

.signature-card:hover img {
  opacity: 0.82;
  transform: scale(1.045);
}

.process-section {
  background: #ececec;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  min-height: 210px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.process-grid span {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.catalog-section {
  padding: 0 clamp(20px, 6vw, 80px) clamp(56px, 7vw, 86px);
}

.category-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: end;
  max-width: 1180px;
  margin-bottom: 24px;
}

.category-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.catalog-cta {
  margin: 0 clamp(20px, 6vw, 80px) clamp(56px, 7vw, 86px);
  border-radius: 8px;
}

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

.videos-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.videos-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  background: #222;
}

.youtube-live-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 22px;
  align-items: stretch;
}

.youtube-live-panel iframe {
  width: 100%;
  min-height: 420px;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  background: #222;
}

.youtube-live-panel.local-preview iframe {
  display: none;
}

.youtube-local-fallback {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(237, 0, 18, 0.22), rgba(0, 114, 255, 0.14)),
    #161616;
}

.youtube-local-fallback[hidden] {
  display: none;
}

.youtube-local-fallback h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.youtube-local-fallback p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.youtube-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 4px;
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.youtube-live-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.youtube-live-copy h3 {
  margin-top: 0;
}

.youtube-live-copy p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.reviews-section {
  background: #ececec;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.review-stars {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 18px;
  letter-spacing: 2px;
}

.review-card p {
  flex: 1;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card strong {
  margin-bottom: 5px;
  font-size: 16px;
}

.review-card span,
.reviews-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.reviews-note {
  max-width: 760px;
  margin-top: 18px;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.product-list {
  display: grid;
  gap: clamp(26px, 5vw, 56px);
}

.product-list .product-detail:nth-child(even) .product-media {
  order: 2;
}

.product-media,
.product-copy,
.quote-box,
.form-frame {
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.product-media {
  padding: 14px;
}

.product-media img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.product-copy,
.quote-box {
  padding: clamp(22px, 4vw, 40px);
}

.product-copy p,
.product-copy li,
.quote-box li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.product-copy ul,
.quote-box ul {
  padding-left: 20px;
}

.form-frame {
  max-width: 980px;
  padding: 10px;
}

.form-frame iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
  border-radius: 8px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--black);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
}

.site-footer a {
  color: var(--white);
  font-weight: 700;
}

.whatsapp-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.mobile-quote-access {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.mobile-quote-access .quote-count {
  margin-left: 8px;
  background: var(--white);
  color: var(--red);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.comparison-grid.four-col {
  grid-template-columns: 1.1fr repeat(4, minmax(0, 1fr));
}

.comparison-cell {
  min-height: 58px;
  padding: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  line-height: 1.4;
}

.comparison-cell:nth-child(4n),
.comparison-grid.four-col .comparison-cell:nth-child(5n) {
  border-right: 0;
}

.comparison-head {
  color: var(--white);
  background: var(--black);
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-label {
  color: var(--ink);
  background: #f7f7f7;
  font-weight: 800;
}

.comparison-section-label,
.comparison-section-fill {
  color: var(--white);
  background: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0;
}

.comparison-action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.formula-stack,
.mini-card-grid,
.partnership-grid {
  display: grid;
  gap: 16px;
}

.formula-stack {
  max-width: 920px;
}

.formula-card,
.mini-card,
.partnership-card,
.review-invite,
.review-form-panel {
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.formula-card,
.mini-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

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

.mini-card img {
  width: 96px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.media-mini-card {
  display: block;
}

.media-mini-card img {
  display: block;
  width: 100%;
  margin-bottom: 18px;
  aspect-ratio: 16 / 9;
}

.mini-card h3,
.formula-card h3,
.partnership-card h3 {
  margin-top: 0;
}

.mini-card p,
.formula-card p,
.partnership-card p,
.review-invite p,
.review-form-panel p {
  color: var(--muted);
  line-height: 1.55;
}

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

.review-public-title,
.has-no-approved-reviews .reviews-grid {
  display: none;
}

.reviews-section:not(.has-no-approved-reviews) .review-public-title {
  display: block;
}

.review-form {
  display: grid;
  gap: 14px;
}

.review-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  background: #fafafa;
}

.review-form textarea {
  min-height: 130px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.whatsapp-chat::before {
  content: "●";
  margin-right: 8px;
  color: #ffffff;
}

@media (min-width: 920px) {
  .burger {
    display: none;
  }

  .menu {
    position: static;
    display: block;
    min-width: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .menu ul {
    display: flex;
    gap: 8px;
  }

  .menu a {
    color: var(--white);
  }

  .light-header .menu a {
    color: var(--ink);
  }

  .light-header .menu a:hover,
  .light-header .menu a.active {
    color: var(--white);
  }

  .site-header {
    justify-content: space-between;
  }
}

@media (max-width: 920px) {
  .site-header {
    min-height: 62px;
    padding: 9px 14px;
    justify-content: flex-start;
  }

  .logo img {
    max-width: min(54vw, 210px);
    max-height: 38px;
    object-fit: contain;
  }

  .burger {
    top: 10px;
    right: 14px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .menu {
    top: 62px;
    right: 14px;
    left: 14px;
    width: auto;
    min-width: 0;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

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

  .universe-card,
  .universe-card img {
    min-height: 118px;
  }

  .hero-mosaic {
    min-height: 420px;
  }

  .service-grid,
  .page-grid,
  .videos-container,
  .youtube-live-panel,
  .reviews-grid,
  .product-detail,
  .quote-layout,
  .trust-strip,
  .compact-grid,
  .signature-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .signature-card-large {
    grid-column: span 2;
    grid-row: auto;
    min-height: 360px;
  }

  .product-detail,
  .quote-layout,
  .category-heading {
    grid-template-columns: 1fr;
  }

  .quote-contact-panel {
    position: static;
  }

  .quote-suggestions-panel .suggestion-list {
    grid-template-columns: 1fr 1fr;
  }

  .product-list .product-detail:nth-child(even) .product-media {
    order: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 56px;
    padding: 8px 12px;
  }

  .logo img {
    max-width: min(50vw, 172px);
    max-height: 32px;
  }

  .burger {
    top: 9px;
    right: 12px;
    min-height: 34px;
    padding: 0 10px;
  }

  .menu {
    top: 56px;
    right: 12px;
    left: 12px;
  }

  .hero-showcase {
    padding-top: 92px;
  }

  .hero-proof-points,
  .hero-universe-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof-points span {
    min-height: 0;
    font-size: 12px;
  }

  .universe-card,
  .universe-card img {
    min-height: 104px;
  }

  .universe-card span {
    font-size: 16px;
  }

  .hero-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(118px, 1fr);
    min-height: 0;
  }

  .hero-tile-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .hero-slider,
  .hero-slider > a,
  .hero-slider img {
    min-height: 560px;
    height: 560px;
  }

  .hero-text {
    bottom: 64px;
  }

  .hero-actions,
  .button,
  .service-grid,
  .page-grid,
  .videos-container,
  .youtube-live-panel,
  .reviews-grid,
  .compact-grid,
  .signature-grid,
  .process-grid,
  .trust-strip {
    width: 100%;
  }

  .service-grid,
  .page-grid,
  .videos-container,
  .youtube-live-panel,
  .reviews-grid,
  .compact-grid,
  .signature-grid,
  .process-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .signature-card,
  .signature-card-large {
    grid-column: auto;
    min-height: 300px;
  }

  .youtube-live-panel iframe {
    min-height: 220px;
  }

  .cta-section {
    display: block;
  }

  .cta-section .button {
    margin-top: 20px;
  }

  .site-footer {
    padding-bottom: 78px;
  }

  .mobile-quote-access {
    display: inline-flex;
    right: 132px;
  }

  .whatsapp-chat {
    right: 12px;
    bottom: 18px;
  }

  .quote-panel-head,
  .form-grid,
  .quote-item,
  .suggestion-item,
  .formula-card,
  .mini-card {
    grid-template-columns: 1fr;
  }

  .quote-suggestions-panel .suggestion-list {
    grid-template-columns: 1fr;
  }

  .comparison-grid,
  .comparison-grid.four-col {
    display: block;
    border: 0;
    background: transparent;
  }

  .comparison-cell {
    border: 1px solid var(--line);
    border-bottom: 0;
  }

  .comparison-cell:last-child {
    border-bottom: 1px solid var(--line);
  }

  .comparison-label {
    margin-top: 14px;
  }

  .mini-card-grid,
  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .quote-panel-head {
    display: grid;
  }

  .quote-item img,
  .suggestion-item img {
    max-width: 120px;
  }

  .suggestion-add {
    grid-column: auto;
  }
}
