:root {
  --ink: #151a1d;
  --muted: #687780;
  --line: #dfe8ec;
  --paper: #f6f9fb;
  --white: #ffffff;
  --brand-blue: #00aeef;
  --brand-blue-deep: #007fb8;
  --charcoal: #171d20;
  --focus-blue: #00aeef;
  --form-accent: #007fb8;
  --surface: #ffffff;
  --surface-soft: #f7fafb;
  --surface-warm: #f4f8f9;
  --line-soft: rgba(16, 24, 32, 0.075);
  --line-blue: rgba(0, 127, 184, 0.18);
  --shadow-soft: 0 18px 48px rgba(20, 36, 44, 0.065);
  --shadow-panel: 0 24px 70px rgba(14, 34, 42, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --hero-wave-color: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

*,
*::before,
*::after {
  animation: none !important;
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16.5px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  backdrop-filter: saturate(170%) blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.06);
}

.nav {
  width: min(1360px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 148px;
}

.brand img {
  width: 214px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.93rem;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand-blue-deep);
  background: rgba(0, 174, 239, 0.09);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 174, 239, 0.18);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: start;
  background: var(--charcoal) url("/assets/hero-solaire-polynesie.jpg?v=251973f032") center / cover no-repeat;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 29, 32, 0.58);
  pointer-events: none;
}

.hero--wave {
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-inner,
.section,
.page-hero-inner {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  padding: 128px 0 64px;
}

.hero--wave .hero-inner {
  width: min(1360px, calc(100vw - 32px));
  max-width: 1360px;
  min-width: 0;
  padding-bottom: clamp(112px, 12vw, 160px);
}

.hero--wave .lead {
  max-width: min(690px, 100%);
  overflow-wrap: normal;
}

.hero-wave {
  position: absolute;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: 1;
  display: block;
  width: calc(100% + 2px);
  height: clamp(92px, 10vw, 150px);
  color: var(--hero-wave-color);
  pointer-events: none;
}

.hero-wave path {
  fill: currentColor;
}

.hero-wave__drift {
  opacity: 0.42;
  transform-box: fill-box;
  transform-origin: center bottom;
}

.hero-wave--animated .hero-wave__drift {
  animation: heroWaveDrift 16s ease-in-out infinite alternate !important;
}

@keyframes heroWaveDrift {
  from {
    transform: translateY(0) scaleX(1.015);
  }

  to {
    transform: translateY(6px) scaleX(1.045);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wave--animated .hero-wave__drift {
    animation: none !important;
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.07;
  font-weight: 650;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  font-size: 4.9rem;
}

h2 {
  max-width: 820px;
  font-size: 2.8rem;
}

h3 {
  font-size: 1.25rem;
}

.lead {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.22rem;
  font-weight: 400;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 620;
  cursor: pointer;
  transition: transform 160ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: none;
}

.btn:active {
  transform: none;
}

.btn-primary {
  background: var(--brand-blue);
  color: var(--white);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  border-color: rgba(0, 174, 239, 0.32);
  color: var(--brand-blue-deep);
  background: var(--white);
}

.section {
  padding: 78px 0;
  clip-path: inset(0 -100vmax);
}

main > .section:nth-of-type(odd) {
  background: var(--white);
  box-shadow: 0 0 0 100vmax var(--white);
}

main > .section:nth-of-type(even) {
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 30px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.reseller-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.45fr);
  gap: 48px;
  align-items: center;
}

.reseller-proof-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.reseller-proof-badge {
  display: flex;
  justify-content: flex-end;
}

.reseller-proof-mark.ecoflow-brand-mark--authorized-vertical img {
  width: 800px;
  min-width: 0;
  max-width: 100%;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card {
  background: var(--white);
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 14px;
  padding: 24px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.card:hover {
  transform: none;
  border-color: rgba(0, 174, 239, 0.28);
}

.card p,
.split p,
.page-copy p,
.contact-list p {
  color: var(--muted);
}

.metric {
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 750;
  color: var(--brand-blue);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.52fr);
  gap: 34px;
  align-items: start;
}

.panel {
  background: var(--charcoal);
  color: var(--white);
  border-radius: 18px;
  padding: 32px;
  box-shadow: none;
  transition: transform 220ms ease;
}

.panel:hover {
  transform: none;
}

.panel p {
  color: rgba(255, 255, 255, 0.78);
}

.list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 13px 0;
  border-top: 1px solid rgba(16, 24, 32, 0.1);
}

.panel .list li {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.page-hero {
  background: linear-gradient(120deg, rgba(23, 29, 32, 0.95), rgba(0, 127, 184, 0.82)), url("/assets/hero-solaire-polynesie.jpg?v=251973f032") center / cover no-repeat;
  color: var(--white);
}

.page-hero-inner {
  padding: 82px 0 66px;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
}

.technology-page {
  overflow-x: hidden;
}

.technology-page h1,
.technology-page h2,
.technology-page h3,
.technology-page p,
.technology-page .section-header > *,
.technology-page .technology-partner-row,
.technology-page .technology-final-cta {
  min-width: 0;
  max-width: 100%;
}

.technologies-hero {
  background: linear-gradient(120deg, rgba(23, 29, 32, 0.94), rgba(0, 127, 184, 0.7)), url("/assets/hero-solaire-polynesie.jpg?v=251973f032") center / cover no-repeat;
}

.technologies-hero__inner {
  display: grid;
  gap: 16px;
  padding-top: 68px;
  padding-bottom: 50px;
  min-width: 0;
}

.technologies-hero h1 {
  max-width: 860px;
  font-size: clamp(2.5rem, 4.9vw, 4.15rem);
  line-height: 0.98;
}

.technologies-hero .lead {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.02rem, 1.4vw, 1.17rem);
}

.technology-system-note {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(220px, 0.22fr);
  gap: 32px;
  align-items: center;
  padding-top: 62px;
  padding-bottom: 38px;
}

.technology-system-note__content {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.technology-system-note__content h2,
.technology-local-proof__copy h2,
.technology-final-cta h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 1.04;
}

.technology-system-note__content p {
  margin: 0;
}

.technology-system-flow {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-left: 3px solid var(--brand-blue);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(0, 174, 239, 0.06));
  color: var(--charcoal);
}

.technology-system-flow span {
  font-size: 1rem;
  font-weight: 820;
}

.technology-system-flow small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
}

.technology-partner-showcase {
  display: grid;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 62px;
}

.technology-partner-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 24, 32, 0.07);
}

.technology-partner-row--ecoflow {
  background: linear-gradient(135deg, #ffffff 0%, #f4fbfe 100%);
}

.technology-partner-row--sunergy,
.technology-partner-row--hqmount {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
}

.technology-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 166px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.technology-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
}

.technology-partner-logo img {
  width: auto;
  max-width: 100%;
  max-height: 114px;
  object-fit: contain;
}

.technology-partner-logo--sunergy img {
  max-height: 138px;
}

.technology-partner-logo--hqmount img {
  max-height: 98px;
}

.technology-partner-copy {
  display: grid;
  gap: 10px;
}

.technology-partner-copy h2,
.technology-partner-copy h3,
.technology-partner-copy p {
  margin: 0;
}

.technology-partner-copy h3 {
  color: var(--charcoal);
  font-size: 1.28rem;
}

.technology-partner-copy h2 {
  max-width: 620px;
  font-size: clamp(1.6rem, 2.35vw, 2.18rem);
  line-height: 1.05;
  font-weight: 700;
}

.technology-partner-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: 0.98rem;
  line-height: 1.62;
}

.technology-partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.technology-page .btn {
  min-height: 39px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.87rem;
  font-weight: 660;
}

.technology-official-link {
  color: var(--brand-blue-deep);
  font-weight: 760;
  text-decoration: none;
}

.technology-official-link:hover {
  text-decoration: underline;
}

.technology-local-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: 34px;
  align-items: start;
  padding-top: 62px;
  padding-bottom: 62px;
  border-top: 1px solid rgba(16, 24, 32, 0.08);
}

.technology-local-proof__copy {
  display: grid;
  gap: 12px;
}

.technology-local-proof__copy p {
  margin: 0;
}

.technology-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.technology-pillars li {
  padding: 10px 14px;
  border: 1px solid rgba(0, 127, 184, 0.2);
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.07);
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 720;
}

.technology-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) auto;
  gap: 26px;
  align-items: center;
  margin-bottom: 62px;
  padding: 30px 34px;
  border-radius: 8px;
  border: 1px solid rgba(0, 174, 239, 0.2);
  background: linear-gradient(135deg, var(--charcoal) 0%, #12313d 100%);
  color: var(--white);
  box-shadow: 0 20px 54px rgba(16, 24, 32, 0.13);
}

.technology-final-cta h2,
.technology-final-cta p {
  margin: 0;
}

.technology-final-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.technology-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.ecoflow-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(620px, 78vh, 820px);
  padding: clamp(86px, 10vw, 132px) max(16px, calc((100vw - 1360px) / 2)) clamp(58px, 8vw, 96px);
  background: url("/assets/hero-PowerOcean-Teaser.jpg") center / cover no-repeat;
  color: var(--white);
}

.ecoflow-page main {
  position: relative;
  z-index: 0;
  background: var(--white);
}

.ecoflow-page {
  overflow-x: hidden;
}

.ecoflow-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(8, 14, 17, 0.46);
  pointer-events: none;
}

.ecoflow-hero__copy {
  min-width: 0;
}

.ecoflow-hero__copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 16px;
  width: min(760px, 100%);
  padding: 0;
}

.ecoflow-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 5.4vw, 5rem);
}

.ecoflow-hero .lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}

.ecoflow-brand-strip {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr) minmax(240px, 0.42fr);
  gap: 24px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

.ecoflow-brand-strip__logo img,
.ecoflow-brand-strip__badge img {
  width: auto;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.ecoflow-brand-strip p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 650;
}

.ecoflow-brand-strip__badge {
  justify-self: end;
}

.ecoflow-product-showcase {
  display: grid;
  gap: 28px;
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--white);
  box-shadow: 0 0 0 100vmax var(--white);
  clip-path: inset(0 -100vmax);
}

.ecoflow-product-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  padding: 34px 0;
  border-top: 1px solid rgba(16, 24, 32, 0.08);
  background: transparent;
  box-shadow: none;
}

.ecoflow-product-panel:first-of-type {
  border-top: 0;
  padding-top: 12px;
}

.ecoflow-product-panel:nth-of-type(even) {
  background: #f5f8f8;
  box-shadow: 0 0 0 100vmax #f5f8f8;
  clip-path: inset(0 -100vmax);
}

.ecoflow-product-panel--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
}

.ecoflow-product-panel--reverse .ecoflow-product-media {
  order: 2;
}

.ecoflow-product-media {
  overflow: hidden;
  min-height: 370px;
  border-radius: 14px;
  background: #f5f8f8;
}

.ecoflow-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 370px;
  object-fit: cover;
  object-position: center;
}

.ecoflow-product-panel__copy {
  display: grid;
  align-content: center;
  gap: 16px;
  min-width: 0;
  padding: 18px 10px;
}

.ecoflow-product-panel__copy h3 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
}

.ecoflow-product-panel__copy p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
}

.ecoflow-product-panel__subtitle {
  color: var(--ink) !important;
  font-size: 1.08rem;
  font-weight: 750;
}

.ecoflow-product-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 0;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.ecoflow-product-panel li {
  padding: 12px 0;
  border-top: 1px solid rgba(18, 55, 70, 0.1);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.32;
}

.ecoflow-tech-band {
  display: grid;
  grid-template-columns: minmax(340px, 0.62fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  background: #f5f8f8;
  box-shadow: 0 0 0 100vmax #f5f8f8;
  clip-path: inset(0 -100vmax);
}

.ecoflow-tech-band__media {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
}

.ecoflow-tech-band__media img {
  display: block;
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
}

.ecoflow-tech-band__copy {
  display: grid;
  gap: 18px;
}

.ecoflow-battery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 0;
  margin-top: 4px;
}

.ecoflow-battery-grid article {
  min-height: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(16, 24, 32, 0.1);
  background: transparent;
}

.ecoflow-battery-grid span {
  display: block;
  color: #123746;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.05;
}

.ecoflow-battery-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

  .ecoflow-proof-strip {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(130px, 1fr));
  gap: 0;
  align-items: stretch;
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f5f8f8;
  box-shadow: 0 0 0 100vmax #f5f8f8;
  clip-path: inset(0 -100vmax);
}

.ecoflow-proof-strip article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
  padding: 12px 24px;
  border-left: 1px solid rgba(16, 24, 32, 0.1);
  background: transparent;
}

.ecoflow-proof-strip article:first-child {
  border-left: 0;
  padding-left: 0;
}

.ecoflow-proof-strip span {
  color: #123746;
  font-size: 1.18rem;
  font-weight: 820;
  line-height: 1.05;
}

.ecoflow-proof-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.ecoflow-proof-card--warranty {
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
}

.ecoflow-proof-card--warranty img {
  width: 58px;
  height: auto;
  object-fit: contain;
}

.ecoflow-monitoring {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.62fr);
  gap: 42px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--white);
  box-shadow: 0 0 0 100vmax var(--white);
  clip-path: inset(0 -100vmax);
}

.ecoflow-monitoring p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.ecoflow-monitoring__media {
  overflow: hidden;
  border-radius: 18px;
  background: #f5f8f8;
}

.ecoflow-monitoring__media img {
  display: block;
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.ecoflow-polynesia {
  display: grid;
  grid-template-columns: minmax(340px, 0.56fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  background: #f5f8f8;
  box-shadow: 0 0 0 100vmax #f5f8f8;
  clip-path: inset(0 -100vmax);
}

.ecoflow-polynesia__image {
  overflow: hidden;
  border-radius: 18px;
  background: #f5f8f8;
}

.ecoflow-polynesia__image img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.ecoflow-polynesia__copy p:not(.eyebrow) {
  max-width: 860px;
  color: var(--muted);
  font-size: 1.08rem;
}

.ecoflow-polynesia__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 0;
  margin-top: 24px;
}

.ecoflow-polynesia__points span {
  padding: 14px 0;
  border-top: 1px solid rgba(16, 24, 32, 0.1);
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}

.ecoflow-note {
  display: grid;
  gap: 0;
  max-width: 1040px;
  padding-top: 52px;
  padding-bottom: 52px;
  background: var(--white);
  box-shadow: 0 0 0 100vmax var(--white);
  clip-path: inset(0 -100vmax);
}

.ecoflow-note p:not(.eyebrow) {
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(18, 55, 70, 0.16);
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 650;
}

.ecoflow-final-cta {
  display: grid;
  gap: 18px;
}

.ecoflow-final-cta h2 {
  max-width: 900px;
}

.solutions-catalog {
  overflow: visible;
}

.solution-proof {
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
}

.solutions-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
}

.solution-category {
  display: grid;
  gap: 36px;
  width: 100%;
  min-width: 0;
}

.solution-category + .solution-category {
  padding-top: 10px;
}

.solution-carousel {
  min-width: 0;
}

.solution-proof .card {
  display: flex;
  align-items: center;
  min-height: 142px;
}

.solution-proof .card p {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
}

.solution-category-presentation {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-width: 0;
  padding: 64px max(16px, calc((100vw - 1360px) / 2)) 56px;
  background: var(--paper);
}

.solution-category-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 48px;
  align-items: center;
  min-width: 0;
}

.solution-category-copy {
  min-width: 0;
}

.solution-brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ecoflow-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
}

.ecoflow-wordmark img {
  display: block;
  width: 400px;
  height: auto;
  max-width: 100%;
}

.ecoflow-wordmark--compact {
  padding: 0;
}

.ecoflow-wordmark--compact img {
  width: 400px;
  height: auto;
  max-width: 100%;
}

.solution-brand-mark > img {
  width: auto;
  max-width: 126px;
  max-height: 28px;
  object-fit: contain;
}

.solution-category-copy h2 {
  font-size: 2.45rem;
}

.solution-category-copy p:not(.eyebrow) {
  max-width: 790px;
  color: var(--muted);
}

.solution-recap {
  display: grid;
  align-content: center;
  align-self: center;
  padding: 22px;
  border-radius: 14px;
}

.solution-recap-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-recap-list li {
  display: grid;
  gap: 5px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.solution-recap-list li:first-child {
  border-top: 0;
}

.solution-recap-list span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-recap-list strong {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.3;
}

.solution-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 28px max(16px, calc((100vw - 1360px) / 2)) 34px;
  background: var(--white);
  overflow: hidden;
}

.solution-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.solution-carousel-title {
  display: grid;
  gap: 7px;
  max-width: 760px;
}

.solution-carousel-title h3 {
  font-size: 2.25rem;
}

.solution-carousel-title::before {
  content: "Configurations disponibles";
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-carousel-title p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.solution-description-config {
  margin-top: 18px;
}

.solution-carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 174, 239, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-blue-deep);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 160ms ease, border-color 180ms ease, background 180ms ease;
}

.carousel-button-prev {
  transform: translateX(-50%);
}

.carousel-button-next {
  transform: translateX(50%);
}

.carousel-button:hover {
  border-color: rgba(0, 174, 239, 0.48);
  background: var(--white);
}

.carousel-button-prev:hover {
  transform: translateX(-50%);
}

.carousel-button-next:hover {
  transform: translateX(50%);
}

.carousel-button:active {
  scale: 1;
}

.solution-carousel-stage {
  position: relative;
  min-width: 0;
  max-width: min(1060px, calc(100% - 72px));
  margin: 0 auto;
  overflow: visible;
}

.solution-carousel-track {
  display: flex;
  gap: 0;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  scroll-behavior: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  cursor: grab;
}

.solution-carousel-track::-webkit-scrollbar {
  display: none;
}

.solution-carousel-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.solution-carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
}

.solution-carousel-indicator {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.solution-carousel-indicator::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(16, 24, 32, 0.22);
  transition: width 160ms ease, background 160ms ease, opacity 160ms ease;
}

.solution-carousel-indicator:hover::before,
.solution-carousel-indicator:focus-visible::before {
  background: rgba(0, 127, 184, 0.48);
}

.solution-carousel-indicator.is-active::before {
  width: 18px;
  border-radius: 999px;
  background: rgba(7, 111, 152, 0.9);
}

.solution-carousel-indicator:focus-visible {
  outline: 2px solid rgba(0, 127, 184, 0.32);
  outline-offset: 2px;
}

.solution-pack-card {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.02fr);
  gap: 14px;
  min-height: 390px;
  padding: 20px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.solution-pack-card.is-highlighted {
  border-color: rgba(0, 174, 239, 0.72);
  background: var(--white);
}

.solution-pack-card.is-premium {
  background: var(--white);
}

.solution-pack-card h3 {
  max-width: 640px;
  font-size: 1.95rem;
}

.solution-pack-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.solution-pack-content > p:not(.product-status) {
  margin: 0;
}

.solution-pack-visual {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(0, 174, 239, 0.16);
  border-radius: 16px;
  background: var(--muted);
}

.solution-pack-visual span {
  color: var(--brand-blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-pack-visual strong {
  display: block;
  max-width: 300px;
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.05;
}

.product-status {
  width: fit-content;
  margin: 0;
  padding: 7px 12px;
  border: 1px solid rgba(0, 174, 239, 0.24);
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.08);
  color: var(--brand-blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-pack-card.is-highlighted .product-status {
  border-color: rgba(0, 174, 239, 0.48);
  background: var(--brand-blue);
  color: var(--white);
}

.solution-pack-card.is-highlighted .solution-pack-visual {
  border-color: rgba(0, 174, 239, 0.34);
  background: var(--muted);
}

.solution-pack-card.is-premium .product-status {
  border-color: rgba(16, 24, 32, 0.2);
  background: rgba(16, 24, 32, 0.06);
  color: var(--ink);
}

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

.product-spec {
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 14px;
  background: var(--paper);
}

.product-spec span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-spec strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.28;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.realisation {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--charcoal);
  color: var(--white);
}

.realisation p {
  color: rgba(255, 255, 255, 0.8);
}

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

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

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
}

.required-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.required-mark {
  color: var(--brand-blue);
  font-weight: 850;
}

.form-choice-input,
.study-choice-grid input,
.house-choice-grid input,
.agriculture-choice-group input,
.commerce-choice-group input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 1px;
  min-height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--focus-blue);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.14);
  outline: none;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  min-height: 24px;
  color: var(--muted);
  font-size: 0.84rem;
  font-style: italic;
  line-height: 1.35;
  font-weight: 500;
}

.form-help,
.devis-file-help,
.project-type-recommendation-note,
.form-consent-note,
.consent-field > span,
.agriculture-helper,
.study-upload p:not(.form-help) {
  color: var(--muted);
  font-size: 0.84rem;
  font-style: italic;
  line-height: 1.35;
}

.study-upload p:not(.form-help) {
  margin-top: 0;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--form-accent);
}

.js .reveal {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.js[data-scroll-direction="up"] .reveal {
  transform: none;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .reveal-delay-1.is-visible {
  transition-delay: 0ms;
}

.js .reveal-delay-2.is-visible {
  transition-delay: 0ms;
}

.js .reveal:not(.is-visible) {
  transition-delay: 0ms;
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 24px;
  align-items: start;
}

.footer-logo-link {
  display: inline-flex;
  position: relative;
  width: fit-content;
}

.footer-logo {
  width: 160px;
  height: auto;
  transition: opacity 180ms ease;
}

.footer-logo-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.footer-logo-link:hover .footer-logo:not(.footer-logo-hover),
.footer-logo-link:focus-visible .footer-logo:not(.footer-logo-hover) {
  opacity: 0;
}

.footer-logo-link:hover .footer-logo-hover,
.footer-logo-link:focus-visible .footer-logo-hover {
  opacity: 1;
}

.footer-brand p {
  max-width: 360px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  line-height: 1.25;
}

.footer-partner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  justify-self: center;
}

.ecoflow-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
}

.ecoflow-brand-mark img {
  display: block;
  height: auto;
  max-width: 100%;
}

.ecoflow-brand-mark--footer {
  padding: 0;
}

.ecoflow-brand-mark--authorized-horizontal img {
  min-width: 220px;
  max-width: 380px;
}

.ecoflow-brand-mark--authorized-vertical img {
  min-width: 96px;
  max-width: 190px;
}

.ecoflow-brand-mark--footer.ecoflow-brand-mark--authorized-horizontal img {
  min-width: 190px;
  max-width: 320px;
}

.footer-links,
.footer-group,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-group {
  align-items: flex-end;
  justify-self: stretch;
  min-width: 240px;
  width: 100%;
  text-align: right;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.25;
  word-break: break-word;
}

.footer-socials {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-socials a:hover {
  background: rgba(0, 174, 239, 0.12);
  border-color: rgba(0, 174, 239, 0.62);
  color: var(--brand-blue);
}

.footer-links a:hover,
.footer-group a:hover,
.footer-legal a:hover {
  color: var(--brand-blue);
}

.footer-legal {
  grid-column: 1 / -1;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  justify-self: center;
  gap: 8px 16px;
  font-size: 0.84rem;
  line-height: 1.25;
  padding-top: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 2rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--ink);
  font-weight: 750;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 18px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(16, 24, 32, 0.08);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 240ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    max-height: 360px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    border-radius: 12px;
  }

  .hero {
    min-height: 690px;
    background-position: 58% center;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .solution-pack-card h3,
  .legal-content h2,
  .devis-form-header h2 {
    font-size: 1.68rem;
  }

  .devis-intro h2 {
    font-size: 1.95rem;
  }

  .section,
  .page-hero-inner {
    padding: 54px 0;
  }

  .section-header,
  .reseller-proof,
  .split,
  .technology-system-note,
  .technology-partner-row,
  .technology-local-proof,
  .technology-final-cta,
  .grid-2,
  .grid-3,
  .solution-category-header,
  .solution-pack-card,
  .form-row,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .solution-category-copy h2 {
    font-size: 2rem;
  }

  .solution-recap {
    position: static;
  }

  .solution-carousel {
    padding: 24px 16px;
  }

  .solution-carousel-stage {
    max-width: calc(100% - 64px);
  }

  .solution-pack-card {
    flex-basis: 100%;
    min-height: auto;
  }

  .js .solutions-catalog,
  .js .solutions-list,
  .js .solution-category,
  .js .solution-carousel,
  .js .solution-carousel-stage,
  .js .solution-carousel-track,
  .js .solution-pack-card {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .solution-carousel-stage {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .solution-carousel-track {
    display: flex;
    width: 100%;
  }

  .solution-pack-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .solution-pack-visual {
    min-height: 220px;
  }

  .footer-legal {
    grid-column: auto;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    text-align: center;
  }

  .footer-inner {
    gap: 8px;
    padding: 18px 0 12px;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-group {
    align-items: center;
    min-width: 0;
    justify-self: center;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .reseller-proof-badge {
    justify-content: center;
  }

  .reseller-proof-mark.ecoflow-brand-mark--authorized-vertical img {
    width: 400px;
  }

  .ecoflow-brand-strip,
  .ecoflow-proof-strip,
  .ecoflow-product-panel,
  .ecoflow-product-panel--reverse,
  .ecoflow-tech-band,
  .ecoflow-monitoring,
  .ecoflow-polynesia {
    grid-template-columns: 1fr;
  }

  .ecoflow-hero {
    min-height: 560px;
    padding: 72px 24px 58px;
    background-position: center;
  }

  .ecoflow-hero__copy {
    width: min(680px, 100%);
  }

  .ecoflow-brand-strip__badge {
    justify-self: start;
  }

  .ecoflow-proof-strip {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .ecoflow-product-panel--reverse .ecoflow-product-media {
    order: 0;
  }

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

  .technology-system-note {
    gap: 20px;
    padding-top: 50px;
    padding-bottom: 28px;
  }

  .technology-partner-showcase {
    gap: 16px;
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .technology-partner-row {
    gap: 20px;
    padding: 24px;
  }

  .technology-partner-logo {
    min-height: 150px;
  }

  .technology-local-proof {
    gap: 24px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .technology-final-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .ecoflow-wordmark {
    padding: 0;
  }

  .ecoflow-wordmark img {
    width: 320px;
    height: auto;
    max-width: 100%;
  }

  .ecoflow-wordmark--compact img {
    width: 320px;
    height: auto;
    max-width: 100%;
  }

  .ecoflow-brand-mark {
    padding: 0;
  }

  .ecoflow-brand-mark--authorized-horizontal img {
    min-width: 200px;
    max-width: 320px;
  }

  .ecoflow-brand-mark--authorized-vertical img {
    min-width: 90px;
    max-width: 170px;
  }
}

@media (max-width: 520px) {
  .nav {
    width: min(100% - 22px, 1360px);
  }

  .brand {
    min-width: 126px;
  }

  .brand img {
    width: 138px;
    max-height: 42px;
  }

  .hero-inner,
  .section,
  .page-hero-inner,
  .footer-inner {
    width: min(100% - 22px, 1360px);
  }

  .technology-page .nav,
  .technology-page .section,
  .technology-page .page-hero-inner,
  .technology-page .footer-inner {
    width: calc(100vw - 80px);
    max-width: 100%;
  }

  .technology-page .section-header {
    display: block;
  }

  .technology-page h1,
  .technology-page h2,
  .technology-page p {
    width: 100%;
    max-width: calc(100vw - 80px);
    overflow-wrap: anywhere;
  }

  .hero-inner {
    padding-bottom: 42px;
  }

  .btn {
    width: 100%;
    min-height: 40px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .page-hero h1 {
    font-size: 1.96rem;
  }

  h2 {
    font-size: 1.68rem;
  }

  .lead {
    font-size: 1rem;
  }

  .card,
  .panel {
    padding: 18px;
  }

  .technologies-hero__inner {
    gap: 14px;
    padding-top: 42px;
    padding-bottom: 36px;
  }

  .technology-system-note {
    padding-top: 40px;
  }

  .technology-system-flow {
    padding: 18px;
  }

  .technology-partner-row {
    gap: 16px;
    padding: 18px 16px;
  }

  .technology-partner-logo {
    min-height: 118px;
    padding: 0;
  }

  .technology-partner-logo img {
    max-height: 78px;
  }

  .technology-partner-logo--sunergy img {
    max-height: 94px;
  }

  .technology-partner-logo--hqmount img {
    max-height: 66px;
  }

  .technology-partner-copy h2 {
    font-size: 1.38rem;
  }

  .technology-page .btn {
    min-height: 38px;
    padding: 10px 14px;
  }

  .technology-partner-actions,
  .technology-final-cta__actions {
    gap: 10px;
  }

  .technology-official-link {
    width: 100%;
    text-align: center;
  }

  .technology-pillars {
    gap: 8px;
  }

  .technology-pillars li {
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .technology-final-cta {
    margin-bottom: 42px;
    padding: 20px 18px;
  }

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

  .solutions-list {
    gap: 58px;
  }

  .solution-category + .solution-category {
    padding-top: 10px;
  }

  .solution-category-copy h2 {
    font-size: 1.7rem;
  }

  .solution-carousel-header {
    align-items: flex-start;
  }

  .solution-carousel-title p {
    font-size: 0.9rem;
  }

  .solution-carousel {
    padding: 18px 11px;
  }

  .solution-category-presentation {
    padding: 48px 11px 44px;
  }

  .solution-carousel-stage {
    max-width: calc(100% - 46px);
  }

  .solution-carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    justify-content: space-between;
    gap: 0;
    transform: translateY(-50%);
  }

  .carousel-button {
    width: 44px;
    height: 44px;
  }

  .carousel-button-prev,
  .carousel-button-prev:hover {
    transform: translateX(-50%);
  }

  .carousel-button-next,
  .carousel-button-next:hover {
    transform: translateX(50%);
  }

  .solution-carousel-track {
    gap: 0;
    padding: 0;
  }

  .solution-pack-card {
    flex-basis: 100%;
  }

  .solution-pack-visual {
    min-height: 180px;
    padding: 20px;
  }

  .solution-pack-visual strong {
    font-size: 1.3rem;
  }

  .reseller-proof-mark.ecoflow-brand-mark--authorized-vertical img {
    width: 400px;
  }

  .ecoflow-wordmark img,
  .ecoflow-wordmark--compact img {
    width: 240px;
    max-width: 100%;
  }

  .ecoflow-hero {
    min-height: 540px;
    padding: 58px 18px 44px;
    background-position: center;
    overflow: hidden;
  }

  .ecoflow-hero h1 {
    max-width: 100%;
    font-size: 1.72rem;
    line-height: 1.12;
  }

  .ecoflow-hero .lead {
    max-width: 100%;
    font-size: 1rem;
  }

  .ecoflow-hero__copy {
    width: min(calc(100vw - 36px), 354px);
  }

  .ecoflow-product-panel,
  .ecoflow-monitoring__media,
  .ecoflow-polynesia__image {
    border-radius: 14px;
  }

  .ecoflow-brand-strip {
    gap: 14px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

.ecoflow-proof-strip {
    gap: 0;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .ecoflow-proof-strip article {
    min-height: 0;
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid rgba(16, 24, 32, 0.1);
  }

  .ecoflow-proof-strip article:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .ecoflow-brand-strip__logo img,
  .ecoflow-brand-strip__badge img {
    max-height: 46px;
  }

  .ecoflow-product-showcase {
    gap: 16px;
  }

  .ecoflow-product-panel {
    gap: 16px;
    padding: 24px 0;
  }

  .ecoflow-product-media,
  .ecoflow-product-media img {
    min-height: 210px;
  }

  .ecoflow-product-panel__copy {
    padding: 0;
  }

  .ecoflow-product-panel__copy h3 {
    font-size: 1.85rem;
  }

  .ecoflow-product-panel ul,
  .ecoflow-battery-grid {
    grid-template-columns: 1fr;
  }

  .ecoflow-tech-band {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .ecoflow-tech-band__media img,
  .ecoflow-monitoring__media img,
  .ecoflow-polynesia__image img {
    min-height: 240px;
  }

  .ecoflow-battery-grid article {
    min-height: 0;
  }

  .ecoflow-note p:not(.eyebrow) {
    padding: 18px 0;
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

.devis-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  align-items: stretch;
}

.devis-intro,
.devis-form {
  border-radius: 18px;
  box-shadow: none;
}

.devis-intro {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: var(--charcoal);
  color: var(--white);
}

.devis-intro h2 {
  font-size: 2.55rem;
}

.devis-intro p {
  color: rgba(255, 255, 255, 0.76);
}

.devis-steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.devis-step {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.devis-step h3 {
  font-size: 1.04rem;
}

.devis-step p {
  margin: 6px 0 0;
  font-size: 0.94rem;
}

.devis-form {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(16, 24, 32, 0.08);
}

.devis-form-header {
  margin-bottom: 10px;
}

.devis-form-header h2 {
  font-size: 2.05rem;
}

.devis-form-header p:not(.eyebrow) {
  color: var(--muted);
}

.devis-form-column {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.selected-pack {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(0, 127, 184, 0.18);
  border-radius: 16px;
  background: #fbfdfe;
  box-shadow: none;
}

.selected-pack h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.15;
}

.selected-pack dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
}

.selected-pack div {
  display: grid;
  gap: 2px;
  min-height: 64px;
  padding: 12px;
  border: 1px solid rgba(23, 29, 32, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.selected-pack dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-pack dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
}

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

.devis-form-row--project,
.devis-form-row--project-meta {
  align-items: start;
}

.devis-form-row--project-meta {
  grid-template-columns: minmax(0, 1fr);
}

.devis-form.has-company-field .devis-form-row--project-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.devis-form:not(.has-company-field) .devis-form-row--project-meta > label:first-child {
  grid-column: 1 / -1;
}

.devis-form input,
.devis-form select,
.devis-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdfe;
  color: var(--ink);
  font: inherit;
  box-sizing: border-box;
}

.devis-form select {
  appearance: none;
  padding-right: 40px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 52%,
    calc(100% - 13px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.devis-form input.is-filled,
.devis-form select.is-filled,
.devis-form textarea.is-filled {
  border-color: rgba(0, 127, 184, 0.18);
  background-color: #eef5ff;
  color: var(--ink);
}

.devis-form input:focus,
.devis-form select:focus,
.devis-form textarea:focus {
  border-color: var(--focus-blue);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.12);
}

.devis-form textarea {
  min-height: 150px;
  overflow: hidden;
  resize: vertical;
}

.devis-file-field {
  display: grid;
  gap: 7px;
}

.devis-form input[type="file"] {
  padding: 11px 14px;
  cursor: pointer;
}

.devis-file-help {
  margin: -8px 0 0;
}

.project-type-recommendation {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(0, 127, 184, 0.18);
  border-radius: 14px;
  background: #f7fbfd;
  color: var(--ink);
}

.project-type-recommendation[hidden] {
  display: none;
}

.project-type-recommendation .btn[hidden] {
  display: none;
}

.project-type-recommendation h3 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-type-recommendation p {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.45;
}

.project-type-recommendation-note {
  font-size: 0.84rem;
  color: var(--muted);
}

.devis-action-row {
  display: grid;
  grid-template-columns: minmax(0, 340px);
  justify-content: center;
  gap: 12px;
}

.devis-action-row.has-study-action {
  grid-template-columns: repeat(2, minmax(0, 340px));
}

.devis-action-row .btn {
  width: 100%;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(0, 127, 184, 0.32);
  border-radius: 999px;
  background: var(--white);
  color: var(--brand-blue-deep);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 620;
  line-height: 1.1;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1.45;
}

.consent-field:focus-within {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  outline: none;
}

.consent-field input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  flex: 0 0 auto;
}

.consent-field input:focus,
.consent-field input:focus-visible {
  box-shadow: none;
  outline: 1px solid rgba(0, 127, 184, 0.42);
  outline-offset: 2px;
}

.consent-field a {
  display: inline-block;
  margin-left: 4px;
  color: var(--brand-blue-deep);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.devis-action-row .btn-primary,
.devis-action-row .btn-outline,
.devis-action-row .btn-outline:hover {
  background: var(--white);
  color: var(--brand-blue-deep);
}

.devis-action-row .btn:hover,
.devis-action-row .btn-primary:hover,
.devis-action-row .btn-outline:hover {
  border-color: rgba(0, 127, 184, 0.46);
  background: #f7fbfd;
  color: var(--brand-blue-deep);
}

.study-placeholder {
  display: grid;
  max-width: 880px;
  gap: 18px;
}

.study-placeholder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px !important;
  height: 1px !important;
  min-width: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: 0 !important;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.study-form input[type="hidden"],
.commerce-form input[type="hidden"],
.agriculture-form input[type="hidden"] {
  display: none !important;
}

.agriculture-special-access-link {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 24, 32, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.devis-intro .agriculture-special-access-link {
  margin: 0;
  border-top-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
}

.agriculture-special-access-link a {
  display: inline-block;
  margin-top: 8px;
  color: var(--brand-blue-deep);
  font-weight: 750;
  text-decoration: none;
}

.devis-intro .agriculture-special-access-link a {
  color: var(--brand-blue);
}

.devis-intro .agriculture-special-access-link a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.agriculture-study-page {
  overflow-x: hidden;
}

.agriculture-study-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  min-width: 0;
  padding-top: 36px;
  padding-bottom: 64px;
}

.agriculture-study-intro {
  display: grid;
  gap: 18px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 30px;
  border-radius: 18px;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}

.agriculture-study-intro h2 {
  max-width: 760px;
  font-size: 2.45rem;
  overflow-wrap: anywhere;
}

.agriculture-study-intro p {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  overflow-wrap: anywhere;
}

.agriculture-notice {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  max-width: 720px;
}

.agriculture-notice strong {
  color: var(--white);
}

.agriculture-form {
  gap: 18px;
  width: 100%;
  min-width: 0;
}

.agriculture-form-section {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 18px;
  background: var(--white);
}

.agriculture-section-heading {
  display: grid;
  gap: 6px;
}

.agriculture-section-heading h2 {
  font-size: 1.72rem;
}

.agriculture-form input,
.agriculture-form select,
.agriculture-form textarea {
  border-radius: 14px;
  background: #fbfdfe;
}

.agriculture-choice-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.agriculture-choice-group legend {
  grid-column: 1 / -1;
  padding: 0;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
}

.agriculture-choice-group label {
  display: grid;
  position: relative;
  min-height: 46px;
  align-items: center;
  gap: 0;
  padding: 11px 12px;
  border: 1px solid rgba(23, 29, 32, 0.12);
  border-radius: 8px;
  background: #fbfdfe;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.22;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.agriculture-choice-group label:hover {
  border-color: rgba(0, 127, 184, 0.34);
}

.agriculture-choice-group label:has(input:checked) {
  border-color: rgba(0, 127, 184, 0.56);
  background: rgba(0, 127, 184, 0.08);
  color: var(--brand-dark);
}

.agriculture-choice-group label:has(input:focus-visible) {
  outline: 3px solid rgba(0, 174, 239, 0.32);
  outline-offset: 2px;
}

.agriculture-helper {
  margin: 0;
  color: var(--muted);
}

.agriculture-field-help,
.agriculture-inline-note {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.agriculture-inline-note {
  margin: -4px 0 0;
  font-weight: 700;
}

.agriculture-equipment-list {
  display: grid;
  gap: 14px;
}

.agriculture-equipment-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(0, 174, 239, 0.18);
  border-radius: 16px;
  background: #fbfdfe;
}

.agriculture-equipment-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.agriculture-equipment-card-header h3 {
  font-size: 1.18rem;
}

.agriculture-remove-equipment,
.agriculture-add-equipment {
  width: fit-content;
}

.agriculture-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agriculture-checklist li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.agriculture-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-blue);
}

.commerce-study-page {
  overflow-x: hidden;
}

.commerce-study-intro h2 {
  max-width: 820px;
}

.commerce-form {
  gap: 18px;
  width: 100%;
  min-width: 0;
}

.commerce-form input[type="file"] {
  padding: 11px 14px;
  cursor: pointer;
}

.commerce-form-section [hidden],
.commerce-equipment-card [hidden] {
  display: none !important;
}

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

.commerce-equipment-list {
  display: grid;
  gap: 14px;
}

.commerce-equipment-card {
  display: grid;
  gap: 16px;
}

.commerce-checklist {
  margin-top: 2px;
}

.house-study-page {
  overflow-x: hidden;
}

.house-study-hero .page-hero-inner {
  padding-bottom: 58px;
}

.house-study-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
  gap: 24px;
  align-items: start;
}

.house-study-intro,
.house-form-section {
  border: 1px solid rgba(23, 29, 32, 0.08);
  border-radius: 14px;
  background: var(--white);
  box-shadow: none;
}

.house-study-intro {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  padding: 26px;
}

.house-study-intro h2 {
  font-size: 2rem;
}

.house-study-intro p,
.house-helper {
  color: var(--muted);
}

.house-assurance-grid,
.house-form,
.house-form-section,
.house-conditional,
.house-load-details {
  display: grid;
}

.house-assurance-grid {
  gap: 10px;
}

.house-assurance-grid article {
  padding: 14px;
  border: 1px solid rgba(0, 127, 184, 0.16);
  border-radius: 8px;
  background: #f7fbfd;
}

.house-assurance-grid h3,
.house-load-details h3 {
  font-size: 1rem;
}

.house-assurance-grid p,
.house-helper {
  margin: 6px 0 0;
  font-size: 0.92rem;
}

.house-form {
  gap: 16px;
  width: 100%;
}

.house-form-section {
  gap: 15px;
  padding: 24px;
}

.house-section-heading h2 {
  font-size: 1.55rem;
}

.house-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.house-choice-grid legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--ink);
  font-weight: 800;
}

.house-choice-grid label {
  position: relative;
  min-height: 46px;
  cursor: pointer;
}

.house-choice-grid label > span {
  display: grid;
  min-height: 100%;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid rgba(23, 29, 32, 0.12);
  border-radius: 8px;
  background: #fbfdfe;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.22;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.house-choice-grid input:checked + span {
  border-color: rgba(0, 127, 184, 0.56);
  background: rgba(0, 127, 184, 0.08);
  color: var(--brand-dark);
}

.house-choice-grid input:focus-visible + span {
  outline: 3px solid rgba(0, 174, 239, 0.32);
  outline-offset: 2px;
}

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

.house-conditional,
.house-load-details {
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(0, 127, 184, 0.14);
  border-radius: 10px;
  background: #f7fbfd;
}

.house-conditional[hidden],
.house-load-details[hidden],
.house-form-section[hidden],
[data-house-grid-connected][hidden] {
  display: none !important;
}

.house-inline-check {
  margin: 0;
}

.study-page {
  overflow-x: hidden;
}

.study-hero .page-hero-inner {
  padding-bottom: 58px;
}

.study-hero-copy {
  max-width: 760px;
  margin-top: 12px;
}

.study-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 36px;
  padding-bottom: 64px;
}

.study-intro,
.study-step {
  border: 1px solid rgba(23, 29, 32, 0.08);
  border-radius: 14px;
  background: var(--white);
  box-shadow: none;
}

.study-intro {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.study-intro h2 {
  font-size: 2rem;
}

.study-intro p,
.study-upload p {
  color: var(--muted);
}

.study-intro-cards,
.study-form,
.study-step,
.study-conditional {
  display: grid;
}

.study-intro-cards {
  gap: 10px;
}

.study-intro-cards article {
  padding: 14px;
  border: 1px solid rgba(0, 127, 184, 0.16);
  border-radius: 8px;
  background: #f7fbfd;
}

.study-intro-cards h3 {
  font-size: 1rem;
}

.study-intro-cards p,
.study-upload p {
  margin: 6px 0 0;
  font-size: 0.92rem;
}

.study-form {
  gap: 16px;
  width: 100%;
}

.study-intro-banner {
  position: static;
  gap: 14px;
  padding: 22px 24px;
  border: 0;
  border-radius: 14px;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}

.study-intro-banner h2 {
  max-width: none;
  color: var(--white);
  font-size: clamp(1.24rem, 2vw, 1.72rem);
  line-height: 1.18;
}

.study-intro-banner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.study-intro-banner li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.2;
}

.study-step {
  gap: 15px;
  padding: 24px;
}

.study-step-heading h2 {
  font-size: 1.55rem;
}

.study-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.study-choice-grid legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
}

.study-choice-grid label {
  position: relative;
  min-height: 46px;
  cursor: pointer;
}

.study-choice-grid label > span {
  display: grid;
  min-height: 100%;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid rgba(23, 29, 32, 0.12);
  border-radius: 8px;
  background: #fbfdfe;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.22;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.study-choice-grid label:hover > span {
  border-color: rgba(0, 127, 184, 0.34);
}

.study-choice-grid input:checked + span {
  border-color: rgba(0, 127, 184, 0.56);
  background: rgba(0, 127, 184, 0.08);
  color: var(--brand-dark);
}

.study-choice-grid input:focus-visible + span {
  outline: 3px solid rgba(0, 174, 239, 0.32);
  outline-offset: 2px;
}

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

.study-conditional {
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(0, 127, 184, 0.14);
  border-radius: 10px;
  background: #f7fbfd;
}

.study-conditional[hidden],
[data-grid-connected][hidden] {
  display: none !important;
}

.study-inline-check {
  margin: 0;
}

@media (max-width: 860px) {
  .devis-section,
  .devis-form-row {
    grid-template-columns: 1fr;
  }

  .devis-form.has-company-field .devis-form-row--project-meta {
    grid-template-columns: 1fr;
  }

  .devis-intro,
  .agriculture-study-intro,
  .house-study-intro,
  .study-intro,
  .devis-form {
    padding: 24px;
  }

  .study-layout,
  .house-study-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .study-intro,
  .house-study-intro {
    position: static;
  }

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

  .agriculture-study-intro h2 {
    font-size: 2rem;
  }
}

@media (max-width: 520px) {
  .devis-intro,
  .agriculture-study-intro,
  .agriculture-form-section,
  .house-study-intro,
  .house-form-section,
  .study-intro,
  .study-step,
  .devis-form {
    padding: 18px;
    border-radius: 10px;
  }

  .agriculture-study-layout {
    gap: 14px;
  }

  .house-study-layout,
  .study-layout,
  .agriculture-study-layout,
  .study-form,
  .house-form {
    gap: 12px;
  }

  .study-layout,
  .agriculture-study-layout {
    padding-top: 22px;
    padding-bottom: 42px;
  }

  .agriculture-study-intro h2 {
    font-size: 1.75rem;
  }

  .agriculture-study-hero h1 {
    font-size: 2rem;
  }

  .commerce-study-hero h1 {
    font-size: 1.9rem;
  }

  .agriculture-choice-group,
  .agriculture-checklist,
  .commerce-choice-group,
  .house-choice-grid,
  .house-choice-grid-compact,
  .study-choice-grid,
  .study-choice-grid-compact {
    grid-template-columns: 1fr;
  }

  .study-step,
  .house-form-section {
    gap: 12px;
  }

  .study-step-heading h2,
  .house-section-heading h2 {
    font-size: 1.32rem;
  }

  .study-choice-grid,
  .house-choice-grid {
    gap: 8px;
  }

  .study-choice-grid label,
  .house-choice-grid label {
    min-height: 42px;
  }

  .study-choice-grid label > span,
  .house-choice-grid label > span {
    padding: 9px 10px;
    font-size: 0.9rem;
  }

  .agriculture-equipment-card {
    padding: 16px;
    border-radius: 10px;
  }

  .agriculture-equipment-card-header {
    display: grid;
    align-items: start;
  }

  .agriculture-remove-equipment,
  .agriculture-add-equipment {
    width: 100%;
  }

  .selected-pack dl {
    grid-template-columns: 1fr;
  }

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

  .devis-action-row.has-study-action {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 8px;
    padding: 16px 0 12px;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    display: block;
  }

  .footer-brand p {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-group {
    align-items: center;
    gap: 8px;
    min-width: 0;
    justify-self: center;
    text-align: center;
  }

  .footer-partner {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-legal {
    justify-content: center;
    justify-self: center;
    align-items: center;
    padding-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* Global visual harmonization layer. */
body {
  background: #fbfcfc;
  font-size: 16px;
  line-height: 1.55;
}

.site-header {
  border-bottom-color: rgba(16, 24, 32, 0.055);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(16, 24, 32, 0.055);
}

.nav-links a {
  color: #596870;
  font-weight: 620;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(0, 127, 184, 0.075);
  color: #066d96;
}

.hero::before {
  background: linear-gradient(90deg, rgba(18, 25, 28, 0.76), rgba(18, 25, 28, 0.46));
}

.page-hero,
.technologies-hero {
  background:
    linear-gradient(120deg, rgba(20, 28, 31, 0.93), rgba(0, 96, 130, 0.54)),
    url("/assets/hero-solaire-polynesie.jpg?v=251973f032") center / cover no-repeat;
}

.hero-inner {
  padding-top: clamp(86px, 11vw, 118px);
  padding-bottom: clamp(46px, 7vw, 72px);
}

.page-hero-inner {
  padding-top: clamp(54px, 7vw, 78px);
  padding-bottom: clamp(46px, 6vw, 62px);
}

.eyebrow,
.solution-brand-mark,
.solution-carousel-title::before,
.product-status,
.product-spec span,
.selected-pack dt,
.project-type-recommendation h3,
.technology-system-flow small {
  color: #087aa4;
  font-size: 0.75rem;
  letter-spacing: 0.095em;
  font-weight: 760;
}

h1,
h2,
h3 {
  line-height: 1.1;
  font-weight: 640;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.65rem, 6.1vw, 4.45rem);
}

h2 {
  max-width: 840px;
  font-size: clamp(1.88rem, 3.2vw, 2.55rem);
}

h3 {
  font-size: clamp(1.08rem, 1.45vw, 1.22rem);
}

.lead,
.page-hero p {
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.62;
}

.section {
  padding: clamp(58px, 7vw, 76px) 0;
}

.section-header {
  gap: clamp(24px, 4vw, 44px);
  margin-bottom: 26px;
}

.section-header p,
.reseller-proof-copy p:not(.eyebrow),
.solution-category-copy p:not(.eyebrow),
.technology-partner-copy p:not(.eyebrow),
.legal-content p,
.legal-content li {
  color: #61717a;
  line-height: 1.62;
}

.btn,
.technology-page .btn,
.devis-action-row .btn {
  min-height: 40px;
  padding: 0 17px;
  border-radius: 999px;
  border-color: rgba(0, 127, 184, 0.28);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.005em;
  box-shadow: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.btn-primary,
.technology-page .btn-primary {
  background: #087fa8;
  border-color: #087fa8;
  color: var(--white);
}

.btn-primary:hover,
.technology-page .btn-primary:hover {
  background: #066d91;
  border-color: #066d91;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-outline,
.devis-action-row .btn,
.devis-action-row .btn-primary,
.devis-action-row .btn-outline,
.devis-action-row .btn-outline:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 127, 184, 0.28);
  color: #076f98;
}

.btn-outline:hover,
.devis-action-row .btn:hover,
.devis-action-row .btn-primary:hover,
.devis-action-row .btn-outline:hover {
  background: rgba(0, 127, 184, 0.07);
  border-color: rgba(0, 127, 184, 0.42);
  color: #065f82;
}

.card,
.devis-form,
.selected-pack,
.project-type-recommendation,
.agriculture-form-section,
.agriculture-equipment-card,
.house-study-intro,
.house-form-section,
.study-intro,
.study-step,
.technology-partner-row,
.technology-final-cta {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.card,
.devis-form,
.agriculture-form-section,
.house-form-section,
.study-step {
  padding: clamp(20px, 2.35vw, 26px);
}

.card:hover {
  border-color: rgba(0, 127, 184, 0.18);
}

.panel,
.devis-intro,
.agriculture-study-intro,
.study-intro-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #172024, #101619);
}

.metric {
  color: #087fa8;
  font-size: clamp(2.05rem, 4vw, 2.45rem);
}

.list li,
.devis-step,
.agriculture-special-access-link,
.technology-local-proof,
.footer-legal {
  border-top-color: rgba(16, 24, 32, 0.075);
}

input,
select,
textarea,
.devis-form input,
.devis-form select,
.devis-form textarea,
.agriculture-form input,
.agriculture-form select,
.agriculture-form textarea {
  border-color: rgba(16, 24, 32, 0.12);
  border-radius: var(--radius-md);
  background: #fcfefe;
  min-height: 42px;
}

input:focus,
select:focus,
textarea:focus,
.devis-form input:focus,
.devis-form select:focus,
.devis-form textarea:focus {
  border-color: #087fa8;
  box-shadow: 0 0 0 3px rgba(0, 127, 184, 0.14);
}

.study-choice-grid label > span,
.house-choice-grid label > span,
.agriculture-choice-group label {
  border-color: rgba(16, 24, 32, 0.11);
  border-radius: var(--radius-sm);
  background: #fcfefe;
}

.study-choice-grid input:checked + span,
.house-choice-grid input:checked + span,
.agriculture-choice-group label:has(input:checked) {
  border-color: rgba(0, 127, 184, 0.42);
  background: rgba(0, 127, 184, 0.07);
  color: var(--ink);
}

.study-conditional,
.house-conditional,
.house-load-details {
  border-color: var(--line-blue);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.technology-system-flow {
  border-left-color: #087fa8;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(0, 127, 184, 0.055));
}

.technology-partner-row {
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 4vw, 52px);
  padding: clamp(28px, 4vw, 42px);
}

.technology-partner-logo {
  min-height: 186px;
}

.technology-partner-logo img {
  max-height: 132px;
}

.technology-partner-logo--sunergy img {
  max-height: 158px;
}

.technology-partner-logo--hqmount img {
  max-height: 108px;
}

.technology-final-cta {
  background: linear-gradient(135deg, #172024, #11181b);
  color: var(--white);
  box-shadow: none;
}

.technology-final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.solution-proof .card {
  min-height: 124px;
}

.solution-category-presentation {
  padding-top: clamp(46px, 6vw, 62px);
  padding-bottom: clamp(40px, 5vw, 54px);
  background: var(--surface-warm);
}

.solution-category-copy h2 {
  font-size: clamp(1.78rem, 3.1vw, 2.28rem);
}

.solution-recap {
  border: 0;
  background: linear-gradient(135deg, #172024, #11181b);
}

.solution-carousel {
  padding-top: 24px;
  padding-bottom: 34px;
}

.solution-carousel-title h3 {
  font-size: clamp(1.55rem, 2.7vw, 2rem);
}

.solution-carousel-stage {
  max-width: min(1040px, calc(100% - 64px));
}

.carousel-button {
  width: 46px;
  height: 46px;
  border-color: rgba(16, 24, 32, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: #076f98;
  box-shadow: 0 12px 32px rgba(16, 24, 32, 0.08);
}

.solution-pack-card {
  min-height: 360px;
  padding: clamp(18px, 2.4vw, 26px);
  border-color: rgba(16, 24, 32, 0.075);
  background: rgba(255, 255, 255, 0.96);
}

.solution-pack-card.is-highlighted {
  border-color: rgba(0, 127, 184, 0.24);
  box-shadow: inset 0 0 0 1px rgba(0, 127, 184, 0.08);
}

.solution-pack-card h3 {
  font-size: clamp(1.45rem, 2.45vw, 1.82rem);
}

.solution-pack-visual {
  border-color: rgba(16, 24, 32, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e7f1f4, #cddde2);
  color: #172024;
}

.solution-pack-card.is-highlighted .solution-pack-visual {
  border-color: rgba(0, 127, 184, 0.18);
  background: linear-gradient(135deg, #e3f3f8, #c7dfe7);
}

.solution-pack-visual--has-image {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(16, 24, 32, 0.14);
  background: #172024;
  color: var(--white);
}

.solution-pack-visual--has-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.03) 60%,
    rgba(0, 0, 0, 0.34) 100%
  );
  content: "";
  pointer-events: none;
}

.solution-pack-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.solution-pack-visual--has-image span,
.solution-pack-visual--has-image strong {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.solution-pack-visual--has-image span {
  color: rgba(255, 255, 255, 0.78);
}

.solutions-page .solution-proof {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
}

.solutions-page,
.solutions-page .solutions-catalog,
.solutions-page .solutions-list,
.solutions-page .solution-category,
.solutions-page .solution-category-presentation,
.solutions-page .solution-carousel {
  max-width: 100%;
  overflow-x: clip;
}

.solutions-page .solutions-catalog,
.solutions-page .solutions-list,
.solutions-page .solution-category {
  overflow-x: visible;
}

.solutions-page .solution-proof {
  background: var(--paper);
}

.solution-carousel-section--dynamic-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.solution-carousel-section--dynamic-bg::before {
  display: none;
}

.solution-carousel-section--dynamic-bg > * {
  position: relative;
  z-index: 0;
}

.solutions-page .solution-pack-card {
  overflow-wrap: normal;
  word-break: normal;
}

.solutions-page .solution-pack-content,
.solutions-page .solution-pack-visual {
  min-width: 0;
}

.solutions-page .solution-pack-visual {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.solutions-page .solution-pack-visual--has-image {
  aspect-ratio: 16 / 9;
  min-height: 260px;
}

.product-status,
.solution-pack-card.is-highlighted .product-status,
.solution-pack-card.is-premium .product-status {
  border-color: rgba(0, 127, 184, 0.18);
  background: rgba(0, 127, 184, 0.07);
  color: #076f98;
}

.product-spec {
  min-height: 70px;
  border-color: rgba(16, 24, 32, 0.07);
  border-radius: var(--radius-md);
  background: #f7fafb;
}

.reseller-proof-mark.ecoflow-brand-mark--authorized-vertical img {
  width: min(680px, 100%);
}

.devis-section {
  gap: 24px;
}

.devis-intro,
.devis-form {
  border-radius: var(--radius-lg);
}

.devis-intro h2 {
  font-size: clamp(1.85rem, 3.1vw, 2.34rem);
}

.devis-form-header h2,
.agriculture-study-intro h2,
.house-study-intro h2,
.study-intro h2 {
  font-size: clamp(1.55rem, 2.5vw, 1.92rem);
}

.selected-pack div,
.house-assurance-grid article,
.study-intro-cards article,
.project-type-recommendation {
  border-color: rgba(16, 24, 32, 0.075);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

@media (min-width: 861px) and (max-width: 1180px) {
  .hero-inner,
  .section,
  .page-hero-inner,
  .footer-inner {
    width: min(1180px, calc(100% - 42px));
  }

  .hero {
    min-height: 640px;
  }

  .devis-section,
  .house-study-layout {
    grid-template-columns: 1fr;
  }

  .house-study-intro {
    position: static;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 15.5px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-inner,
  .page-hero-inner,
  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .section-header {
    gap: 18px;
    margin-bottom: 22px;
  }

  .technology-partner-row {
    padding: 22px;
  }

  .technology-partner-logo {
    min-height: 138px;
  }

  .solution-category {
    gap: 26px;
  }

  .solutions-list {
    gap: 42px;
  }

  .solution-category-presentation {
    padding-top: 38px;
    padding-bottom: 36px;
  }

  .solution-carousel {
    padding-top: 18px;
    padding-bottom: 26px;
  }

  .solution-pack-card {
    gap: 16px;
    min-height: 0;
  }

  .solution-pack-visual {
    min-height: 190px;
  }

  .study-layout,
  .house-study-layout,
  .agriculture-study-layout {
    padding-top: 26px;
    padding-bottom: 48px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .nav {
    min-height: 66px;
  }

  .nav-links {
    top: 66px;
  }

  .hero {
    min-height: 540px;
  }

  .hero-inner,
  .section,
  .page-hero-inner,
  .footer-inner {
    width: calc(100% - 24px);
    max-width: 1360px;
  }

  .technology-page .nav,
  .technology-page .section,
  .technology-page .page-hero-inner,
  .technology-page .footer-inner {
    width: calc(100% - 24px);
    max-width: 1360px;
  }

  .hero-inner,
  .page-hero-inner,
  .section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero--wave .hero-inner {
    width: calc(100vw - 24px);
    max-width: 1360px;
  }

  .hero--wave .lead,
  .reseller-proof-copy,
  .reseller-proof-copy h2,
  .reseller-proof-copy p:not(.eyebrow) {
    max-width: calc(100vw - 80px);
  }

  .hero--wave .lead {
    max-width: calc(100vw - 130px);
  }

  h1,
  .page-hero h1,
  .ecoflow-hero h1 {
    font-size: clamp(1.9rem, 11vw, 2.34rem);
  }

  h2,
  .solution-category-copy h2,
  .legal-content h2 {
    font-size: clamp(1.45rem, 8vw, 1.75rem);
  }

  .lead,
  .page-hero p {
    font-size: 0.98rem;
  }

  .btn,
  .technology-page .btn,
  .devis-action-row .btn {
    min-height: 42px;
    padding: 0 15px;
  }

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

  .hero--wave .hero-actions .btn {
    width: 100%;
  }

  .card,
  .panel,
  .devis-intro,
  .agriculture-study-intro,
  .agriculture-form-section,
  .house-study-intro,
  .house-form-section,
  .study-intro,
  .study-step,
  .devis-form,
  .technology-partner-row,
  .technology-final-cta {
    border-radius: var(--radius-md);
    padding: 17px;
  }

  .technology-partner-logo img {
    max-height: 92px;
  }

  .technology-partner-logo--sunergy img {
    max-height: 108px;
  }

  .technology-partner-logo--hqmount img {
    max-height: 76px;
  }

  .solution-category-presentation {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .solution-carousel-stage {
    max-width: 100%;
  }

  .carousel-button {
    width: 40px;
    height: 40px;
    box-shadow: 0 10px 24px rgba(16, 24, 32, 0.08);
  }

  .solution-pack-card {
    padding: 16px;
  }

  .product-specs {
    gap: 9px;
  }

.product-spec {
  min-height: 62px;
  padding: 12px;
  }
}

/* Targeted cleanup after the global visual pass. */
.nav {
  min-height: 72px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: clamp(156px, 15vw, 204px);
  max-height: 58px;
}

.nav-links {
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

.nav-links a {
  padding: 9px 12px;
  white-space: nowrap;
}

.nav-links a[aria-current="page"] {
  box-shadow: inset 0 0 0 1px rgba(0, 127, 184, 0.08);
}

.devis-section {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 3.2vw, 40px);
  align-items: start;
}

.devis-intro {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: auto;
  padding: clamp(26px, 3vw, 36px);
}

.devis-intro .eyebrow,
.devis-intro h2,
.devis-intro > p {
  margin: 0;
}

.devis-intro h2 {
  max-width: 520px;
  font-size: clamp(1.78rem, 2.45vw, 2.18rem);
  line-height: 1.13;
}

.devis-intro > p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.74);
}

.devis-steps {
  gap: 0;
  margin-top: 8px;
}

.devis-step {
  padding: 15px 0;
}

.devis-step:first-child {
  border-top: 0;
}

.devis-step h3 {
  font-size: 0.98rem;
}

.devis-step p {
  max-width: 520px;
  font-size: 0.9rem;
  line-height: 1.48;
}

.devis-form {
  display: grid;
  gap: 15px;
  padding: clamp(22px, 2.6vw, 30px);
}

.devis-form > input[type="hidden"],
.study-form > input[type="hidden"],
.commerce-form > input[type="hidden"],
.agriculture-form > input[type="hidden"] {
  display: none !important;
}

.devis-form-row {
  gap: 14px;
}

.devis-form label {
  gap: 6px;
  color: #4f5f67;
  font-size: 0.9rem;
  font-weight: 650;
}

.devis-form label > span:first-child,
.devis-file-field > span {
  line-height: 1.32;
}

.devis-form input,
.devis-form select,
.devis-form textarea {
  min-height: 42px;
  padding: 10px 12px;
  font-size: 0.94rem;
}

.devis-form textarea {
  min-height: 122px;
}

.devis-file-help {
  margin: -5px 0 0;
}

.consent-field {
  gap: 10px;
}

.consent-field input {
  min-height: 16px;
}

.devis-action-row {
  grid-template-columns: minmax(0, 280px);
  justify-content: start;
}

.devis-action-row.has-study-action {
  grid-template-columns: repeat(2, minmax(0, 260px));
}

.technology-hero .page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(240px, 0.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.technology-hero__copy {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.technology-hero__copy .eyebrow,
.technology-hero__copy .lead {
  margin: 0;
}

.technology-hero__brand {
  display: grid;
  min-height: 210px;
  align-items: center;
  justify-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.08);
}

.technology-hero__brand img {
  width: auto;
  max-width: min(100%, 280px);
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.18));
}

.technology-hero__brand--hqmount img {
  max-width: min(100%, 320px);
  max-height: 110px;
}

.technology-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
}

.technology-layout .section-header {
  margin-bottom: 0;
}

.technology-card {
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 249, 0.92)),
    var(--white);
}

.technology-card__mark {
  color: #087fa8;
  font-size: clamp(1.8rem, 3.1vw, 2.8rem);
  font-weight: 760;
  line-height: 1;
}

.technology-card p {
  margin: 0;
  color: #61717a;
}

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

.technology-specs .card {
  display: grid;
  min-height: 150px;
  align-content: end;
  padding: 20px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 251, 0.96));
}

.technology-specs h3 {
  max-width: 280px;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.24;
}

.technology-proof {
  align-self: stretch;
  display: grid;
  align-content: end;
  gap: 10px;
}

.technology-cta {
  display: grid;
  gap: 16px;
  margin-bottom: clamp(42px, 5vw, 64px);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #172024, #11181b);
  color: var(--white);
}

.technology-cta .eyebrow,
.technology-cta h2 {
  margin: 0;
}

.technology-cta h2 {
  max-width: 820px;
}

.technology-cta .actions {
  margin-top: 4px;
}

.technology-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.technologies-hub .technology-partner-showcase {
  gap: 0;
  padding-top: 18px;
  padding-bottom: 70px;
}

.technologies-hub .technology-system-note {
  grid-template-columns: 1fr;
  gap: 18px;
  padding-bottom: 30px;
}

.technologies-hub .technology-system-note__content {
  max-width: 980px;
}

.technologies-hub .technology-system-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #5f717a;
}

.technologies-hub .technology-system-flow span {
  display: inline-flex;
  align-items: center;
  color: #5f717a;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.technologies-hub .technology-system-flow span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 12px;
  border-radius: 999px;
  background: rgba(8, 122, 164, 0.42);
}

.technologies-hub .technology-partner-row {
  position: relative;
  overflow: visible;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(34px, 5vw, 56px) 0;
  border: 0;
  border-top: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.technologies-hub .technology-partner-row:first-child {
  border-top: 0;
}

.technologies-hub .technology-partner-row::before {
  display: none;
}

.technologies-hub .technology-partner-logo {
  align-self: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  background: transparent;
}

.technologies-hub .technology-partner-row--sunergy .technology-partner-logo {
  order: 0;
  justify-content: center;
}

.technologies-hub .technology-partner-row--sunergy .technology-partner-copy {
  order: 0;
}

.technologies-hub .technology-logo-link {
  width: auto;
  max-width: min(100%, 320px);
}

.technologies-hub .technology-partner-logo img {
  max-height: 116px;
}

.technologies-hub .technology-partner-logo--sunergy img {
  max-height: 136px;
}

.technologies-hub .technology-partner-logo--hqmount img {
  max-height: 88px;
}

.technologies-hub .technology-partner-copy {
  gap: 12px;
}

.technologies-hub .technology-partner-copy p:not(.eyebrow) {
  max-width: 760px;
}

.technologies-hub .technology-partner-actions {
  display: flex;
  align-items: center;
  gap: 14px 18px;
  margin-top: 12px;
}

.technologies-hub .technology-official-link {
  color: #5f717a;
  font-size: 0.88rem;
  font-weight: 680;
  text-decoration: none;
}

.technologies-hub .technology-official-link:hover {
  color: #087aa4;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.technology-partner-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.technologies-hub .technology-partner-points li {
  color: #61717a;
  font-size: 0.92rem;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.6;
  text-transform: none;
}

.technology-partner-points li {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #5f717a;
}

.technology-partner-points li + li::before {
  content: "\00b7";
  margin: 0 10px;
  color: rgba(97, 113, 122, 0.78);
}

.technologies-hub .technology-local-proof {
  grid-template-columns: minmax(0, 0.66fr) minmax(280px, 0.34fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
  padding-top: clamp(42px, 5vw, 58px);
  padding-bottom: clamp(42px, 5vw, 58px);
  border-top: 0;
  background: #eef6f9;
  box-shadow: 0 0 0 100vmax #eef6f9;
}

.technologies-hub .technology-pillars {
  justify-content: flex-end;
  gap: 0;
}

.technologies-hub .technology-pillars li {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #5f717a;
  font-size: 0.92rem;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.65;
  text-transform: none;
}

.technologies-hub .technology-pillars li + li::before {
  content: "\00b7";
  margin: 0 10px;
  color: rgba(95, 113, 122, 0.78);
}

.technologies-hub .technology-final-cta {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 16px;
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  padding-top: clamp(42px, 5vw, 58px);
  padding-bottom: clamp(48px, 6vw, 68px);
  border: 0;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  text-align: center;
  box-shadow: none;
}

.technologies-hub .technology-final-cta p {
  max-width: 720px;
  color: #61717a;
}

.technologies-hub .technology-final-cta__actions {
  justify-content: center;
}

.partner-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(600px, 74vh, 780px);
  background-color: #101619;
  color: var(--white);
}

.partner-hero--sunergy {
  background: url("/assets/hero-Sunergy.webp") center / cover no-repeat;
}

.partner-hero--sunergy::before {
  background: rgba(8, 14, 17, 0.36);
}

.partner-hero--hqmount {
  background: url("/assets/partners/hqmount/generated/hero-hqmount-structure-solaire.png") center / cover no-repeat;
}

.partner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(8, 14, 17, 0.48);
  pointer-events: none;
}

.partner-hero--hqmount::before {
  background: rgba(8, 14, 17, 0.56);
}

.partner-hero .page-hero-inner {
  position: relative;
  z-index: 1;
  display: block;
  width: min(1360px, calc(100% - 32px));
  padding-top: clamp(86px, 10vw, 132px);
  padding-bottom: clamp(58px, 8vw, 96px);
}

.partner-hero .technology-hero__copy {
  max-width: 760px;
}

.partner-hero .technology-hero__copy h1 {
  max-width: 860px;
  font-size: clamp(3rem, 5.1vw, 4.85rem);
}

.partner-hero .technology-hero__copy .lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
}

.partner-intro-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: center;
}

.sunergy-page .partner-intro-panel {
  padding-top: clamp(54px, 6vw, 76px);
  padding-bottom: clamp(54px, 6vw, 76px);
  background: var(--white);
  box-shadow: 0 0 0 100vmax var(--white);
  clip-path: inset(0 -100vmax);
}

.partner-intro-panel__media {
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius-lg);
  background: #101619;
}

.sunergy-page .partner-intro-panel__media {
  display: grid;
  align-items: center;
  justify-items: center;
  border-radius: 0;
  background: var(--white);
}

.sunergy-page .partner-intro-panel__media img {
  width: min(100%, 560px);
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.partner-intro-panel__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.partner-intro-panel__copy {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.partner-intro-panel__copy h2,
.partner-intro-panel__copy p {
  margin: 0;
}

.partner-intro-panel__copy p:not(.eyebrow) {
  color: #61717a;
  line-height: 1.68;
}

.sunergy-product-line {
  margin-top: 8px;
  color: #4f626b;
  font-size: 0.92rem;
  font-weight: 620;
  line-height: 1.6;
}

.partner-feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(280px, 0.34fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
  margin-top: 8px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(23, 32, 36, 0.98), rgba(17, 24, 27, 0.98));
  color: var(--white);
}

.sunergy-tech-section {
  background: #eef6f9;
  box-shadow: 0 0 0 100vmax #eef6f9;
  clip-path: inset(0 -100vmax);
}

.sunergy-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px 22px;
  margin: 10px 0 0;
  padding: 0;
}

.sunergy-feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 10px;
  align-items: start;
  padding: 2px 0 18px;
  border-bottom: 1px solid rgba(16, 24, 32, 0.1);
}

.sunergy-feature__icon {
  display: inline-grid;
  grid-row: span 2;
  align-items: center;
  justify-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(8, 122, 164, 0.22);
  border-radius: 50%;
  color: #087aa4;
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1;
}

.sunergy-feature h3,
.sunergy-feature p {
  margin: 0;
}

.sunergy-feature h3 {
  color: #253138;
  font-size: 1rem;
  line-height: 1.2;
}

.sunergy-feature p {
  color: #61717a;
  font-size: 0.9rem;
  line-height: 1.48;
}

.partner-feature-band--sunergy {
  margin-top: 0;
  padding-top: clamp(52px, 6vw, 72px);
  padding-bottom: clamp(52px, 6vw, 72px);
  border-radius: 0;
  background: var(--white);
  box-shadow: 0 0 0 100vmax var(--white);
  clip-path: inset(0 -100vmax);
  color: var(--ink);
}

.partner-feature-band__copy {
  display: grid;
  gap: 12px;
  align-content: center;
}

.partner-feature-band__copy h2,
.partner-feature-band__copy p,
.partner-proof-card h3,
.partner-proof-card p {
  margin: 0;
}

.partner-feature-band__copy p:not(.eyebrow),
.partner-proof-card p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.64;
}

.partner-feature-band--sunergy .partner-feature-band__copy p:not(.eyebrow),
.partner-feature-band--sunergy .partner-proof-card p {
  color: #61717a;
}

.partner-proof-card {
  display: grid;
  gap: 12px;
  align-content: end;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
}

.partner-feature-band--sunergy .partner-proof-card {
  align-content: center;
  padding: 24px 0;
  border: 0;
  border-top: 1px solid rgba(16, 24, 32, 0.12);
  border-bottom: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 0;
  background: transparent;
}

.sunergy-page .technology-cta {
  justify-items: center;
  margin-bottom: 0;
  padding-top: clamp(42px, 5vw, 58px);
  padding-bottom: clamp(48px, 6vw, 68px);
  background: var(--white);
  box-shadow: 0 0 0 100vmax var(--white);
  clip-path: inset(0 -100vmax);
  color: var(--ink);
  text-align: center;
}

.sunergy-page .technology-cta h2 {
  max-width: 620px;
}

.sunergy-page .technology-cta .actions {
  justify-content: center;
}

.sunergy-page .technology-cta .btn-outline {
  border-color: rgba(0, 174, 239, 0.32);
  background: var(--white);
  color: var(--brand-blue-deep);
}

.technology-specs .card {
  gap: 10px;
}

.technology-specs span {
  display: block;
}

.hqmount-page .technology-specs {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hqmount-page {
  background: var(--white);
}

.hqmount-page .section {
  width: min(1240px, calc(100% - 32px));
}

.hqmount-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(560px, 66vw, 760px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 18, 24, 0.78), rgba(8, 18, 24, 0.46) 48%, rgba(8, 18, 24, 0.14)),
    url("/assets/partners/hqmount/generated/hero-hqmount-structure-solaire.png") center / cover no-repeat;
  color: var(--white);
}

.hqmount-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 12, 16, 0.18), rgba(5, 12, 16, 0.26));
}

.hqmount-hero__copy {
  display: grid;
  gap: 16px;
  min-width: 0;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(88px, 11vw, 142px) 0 clamp(72px, 9vw, 112px);
}

.hqmount-hero__copy h1,
.hqmount-hero__copy p {
  max-width: 720px;
  margin: 0;
}

.hqmount-hero__copy h1 {
  color: var(--white);
  font-size: clamp(3rem, 5vw, 4.9rem);
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hqmount-hero__copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.62;
  overflow-wrap: break-word;
}

.hqmount-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
  padding-top: clamp(64px, 7vw, 94px);
  padding-bottom: clamp(62px, 7vw, 90px);
}

.hqmount-intro__logo {
  display: grid;
  justify-items: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 230px;
  padding: clamp(28px, 4vw, 44px);
  background: #f6fbfd;
  border: 1px solid rgba(0, 127, 184, 0.1);
  overflow: hidden;
}

.hqmount-intro__logo img {
  width: min(100%, 380px);
  height: auto;
}

.hqmount-intro__copy {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.hqmount-intro__copy h2,
.hqmount-intro__copy p,
.hqmount-section-heading h2,
.hqmount-section-heading p,
.hqmount-mounting__intro h2,
.hqmount-mounting__intro p,
.hqmount-final-cta h2,
.hqmount-final-cta p {
  margin: 0;
}

.hqmount-intro__copy h2,
.hqmount-section-heading h2,
.hqmount-mounting__intro h2,
.hqmount-why h2,
.hqmount-final-cta h2 {
  color: #121a1f;
  line-height: 1.12;
}

.hqmount-intro__copy p:not(.eyebrow),
.hqmount-mounting__intro > p,
.hqmount-final-cta p {
  color: #5c6d76;
  line-height: 1.68;
}

.hqmount-feature-section {
  padding-top: clamp(52px, 6vw, 78px);
  padding-bottom: clamp(54px, 6vw, 78px);
  background: #eef8fc;
  box-shadow: 0 0 0 100vmax #eef8fc;
  clip-path: inset(0 -100vmax);
}

.hqmount-section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.hqmount-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(0, 127, 184, 0.12);
}

.hqmount-feature,
.hqmount-why-grid article {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  background: #eef8fc;
  text-align: left;
}

.hqmount-icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--brand-blue-deep);
}

.hqmount-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hqmount-feature h3,
.hqmount-feature p,
.hqmount-mounting-card h3,
.hqmount-mounting-card p,
.hqmount-why-grid h3,
.hqmount-why-grid p {
  margin: 0;
}

.hqmount-feature h3,
.hqmount-mounting-card h3,
.hqmount-why-grid h3 {
  color: #172128;
  font-size: 1rem;
  line-height: 1.25;
}

.hqmount-feature p,
.hqmount-mounting-card p,
.hqmount-why-grid p {
  color: #5f7079;
  font-size: 0.92rem;
  line-height: 1.55;
}

.hqmount-mounting {
  padding-top: clamp(60px, 7vw, 92px);
  padding-bottom: clamp(64px, 7vw, 98px);
}

.hqmount-mounting__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.hqmount-mounting-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.hqmount-mounting-card {
  display: grid;
  gap: 11px;
  min-width: 0;
}

.hqmount-mounting-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: #edf4f7;
}

.hqmount-why {
  padding-top: clamp(52px, 6vw, 78px);
  padding-bottom: clamp(54px, 6vw, 78px);
  background: #f7fbfd;
  box-shadow: 0 0 0 100vmax #f7fbfd;
  clip-path: inset(0 -100vmax);
}

.hqmount-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(0, 127, 184, 0.12);
}

.hqmount-why-grid article {
  background: #f7fbfd;
}

.hqmount-final-cta {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding-top: clamp(48px, 5vw, 68px);
  padding-bottom: clamp(56px, 6vw, 76px);
  text-align: center;
}

.hqmount-final-cta h2 {
  max-width: 720px;
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
}

.hqmount-final-cta p {
  max-width: 740px;
}

.hqmount-final-cta .actions {
  justify-content: center;
  margin-top: 8px;
}

.hqmount-final-cta .btn-outline {
  border-color: rgba(0, 127, 184, 0.28);
  background: var(--white);
  color: var(--brand-blue-deep);
}

@media (max-width: 1180px) {
  .nav {
    width: min(1180px, calc(100% - 28px));
    gap: 16px;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .devis-section,
  .technology-layout,
  .partner-intro-panel {
    grid-template-columns: 1fr;
  }

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

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

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

  .hqmount-mounting-card {
    padding-right: 0;
  }
}

@media (max-width: 860px) {
  .nav-links a {
    white-space: normal;
  }

  .devis-section {
    gap: 18px;
  }

  .devis-form-row,
  .devis-form.has-company-field .devis-form-row--project-meta,
  .devis-action-row.has-study-action {
    grid-template-columns: 1fr;
  }

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

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

  .partner-hero {
    min-height: 560px;
  }

  .technology-hero__brand {
    min-height: 150px;
    justify-items: start;
  }

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

  .partner-feature-band {
    grid-template-columns: 1fr;
  }

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

  .hqmount-page .technology-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hqmount-hero {
    min-height: 500px;
    background-position: 56% center;
  }

  .hqmount-intro,
  .hqmount-mounting__intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hqmount-intro__logo {
    justify-items: start;
  }

  .hqmount-intro__logo img {
    width: min(100%, 320px);
  }

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

  .hqmount-mounting-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .hqmount-mounting-card {
    padding-right: 0;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 138px;
  }

  .devis-intro,
  .devis-form {
    padding: 18px;
  }

  .devis-intro h2 {
    font-size: 1.58rem;
  }

  .devis-step {
    padding: 12px 0;
  }

  .technology-hero__brand {
    min-height: 128px;
    padding: 20px;
  }

  .partner-hero .technology-hero__brand {
    min-height: 148px;
  }

  .partner-hero .page-hero-inner {
    width: min(calc(100vw - 24px), 366px);
    margin-right: auto;
    margin-left: 12px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .partner-hero .technology-hero__copy h1 {
    font-size: 1.72rem;
    line-height: 1.12;
    overflow-wrap: normal;
    word-break: normal;
  }

  .partner-hero .technology-hero__copy .lead {
    font-size: 0.95rem;
    line-height: 1.52;
    overflow-wrap: normal;
    word-break: normal;
  }

  .technology-hero__brand img {
    max-height: 98px;
  }

  .technology-specs {
    grid-template-columns: 1fr;
  }

  .hqmount-page .technology-specs {
    grid-template-columns: 1fr;
  }

  .technology-specs .card {
    min-height: 112px;
  }

  .partner-intro-panel__media,
  .partner-intro-panel__media img {
    min-height: 260px;
  }

  .sunergy-page .partner-intro-panel__media,
  .sunergy-page .partner-intro-panel__media img {
    min-height: 0;
  }

  .sunergy-feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sunergy-feature {
    padding-bottom: 14px;
  }

  .partner-feature-band {
    padding: 22px 18px;
  }

  .hqmount-page .section,
  .hqmount-hero__copy {
    width: calc(100vw - 24px);
    max-width: 520px;
  }

  .hqmount-hero {
    min-height: 430px;
    background-position: 58% center;
  }

  .hqmount-hero__copy {
    gap: 12px;
    padding-top: 58px;
    padding-bottom: 54px;
  }

  .hqmount-hero__copy h1 {
    max-width: 330px;
    font-size: 1.82rem;
    line-height: 1.1;
  }

  .hqmount-hero__copy p:not(.eyebrow) {
    max-width: 330px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hqmount-intro,
  .hqmount-feature-section,
  .hqmount-mounting,
  .hqmount-why,
  .hqmount-final-cta {
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .hqmount-intro__copy,
  .hqmount-section-heading {
    gap: 9px;
  }

  .hqmount-intro__copy,
  .hqmount-intro__copy p,
  .hqmount-mounting__intro,
  .hqmount-mounting__intro p,
  .hqmount-feature p,
  .hqmount-mounting-card p,
  .hqmount-why-grid p,
  .hqmount-final-cta p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hqmount-feature-grid,
  .hqmount-why-grid {
    grid-template-columns: 1fr;
  }

  .hqmount-mounting-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hqmount-feature,
  .hqmount-why-grid article {
    justify-items: start;
    padding: 22px 0;
    text-align: left;
  }

  .hqmount-feature-grid,
  .hqmount-why-grid {
    gap: 1px;
  }

  .hqmount-mounting-card img {
    aspect-ratio: 1.55 / 1;
  }
}

@media (max-width: 860px) {
  .technologies-hub .technology-partner-row,
  .technologies-hub .technology-partner-row--sunergy {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 0;
  }

  .technologies-hub .technology-partner-row--sunergy .technology-partner-logo,
  .technologies-hub .technology-partner-row--sunergy .technology-partner-copy {
    order: initial;
  }

  .technologies-hub .technology-partner-logo,
  .technologies-hub .technology-partner-row--sunergy .technology-partner-logo {
    justify-content: center;
  }

  .technologies-hub .technology-logo-link {
    width: 100%;
  }

  .technologies-hub .technology-local-proof {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .technologies-hub .technology-pillars {
    justify-content: flex-start;
  }

  .technology-partner-points {
    row-gap: 8px;
  }
}

@media (max-width: 520px) {
  .technologies-hub .technology-partner-showcase {
    padding-top: 8px;
    padding-bottom: 42px;
  }

  .technologies-hub .technology-partner-row {
    padding: 26px 0;
  }

  .technologies-hub .technology-logo-link {
    max-width: 250px;
    margin: 0 auto;
  }

  .technologies-hub .technology-partner-logo img {
    max-height: 82px;
  }

  .technologies-hub .technology-partner-logo--sunergy img {
    max-height: 96px;
  }

  .technologies-hub .technology-partner-logo--hqmount img {
    max-height: 62px;
  }

  .technologies-hub .technology-partner-actions .btn {
    width: auto;
  }
}

@media (max-width: 1024px) {
  html.solutions-page {
    --mobile-header-height: 66px;
    --tablet-header-height: 72px;
    --solutions-header-height: var(--tablet-header-height);
    scroll-padding-top: var(--solutions-header-height);
    scroll-snap-type: none;
  }

  html.solutions-page,
  body.solutions-page {
    overflow-x: hidden;
    overflow-x: clip;
  }

  .solutions-page .solutions-snap-item {
    scroll-margin-top: 0;
    scroll-snap-align: none;
  }

  .solutions-page .page-hero {
    scroll-snap-align: none;
  }

  .solutions-page .site-header {
    min-height: var(--solutions-header-height);
  }

  .solutions-page .nav {
    min-height: var(--solutions-header-height);
  }

  .solutions-page .nav-links {
    top: var(--solutions-header-height);
  }

  .solutions-page .page-hero-inner {
    padding-top: 30px;
    padding-bottom: 28px;
  }

  .solutions-page .page-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.08rem, 6vw, 3.1rem);
    overflow-wrap: normal;
    word-break: normal;
  }

  .solutions-page .page-hero p:not(.eyebrow) {
    width: 100%;
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.42;
    overflow-wrap: normal;
    word-break: normal;
  }

  .solutions-page .solution-proof {
    min-height: auto;
  }

  .solutions-page .solution-proof {
    display: grid;
    align-content: start;
    gap: 16px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .solutions-page .solution-proof .section-header {
    gap: 14px;
    margin-bottom: 12px;
  }

  .solutions-page .solution-proof h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.7rem, 4vw, 2.12rem);
    overflow-wrap: normal;
    word-break: normal;
  }

  .solutions-page .solution-proof .section-header > p {
    width: 100%;
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.4;
    overflow-wrap: normal;
    word-break: normal;
  }

  .solutions-page .solution-proof .grid {
    gap: 10px;
  }

  .solutions-page .solution-proof .card {
    min-height: 0;
    padding: 15px 16px;
  }

  .solutions-page .solution-proof .card p {
    font-size: 0.94rem;
    line-height: 1.34;
    overflow-wrap: normal;
    word-break: normal;
  }

  .solutions-page .solutions-catalog {
    padding-top: 0;
    padding-bottom: 0;
  }

  .solutions-page .solutions-list,
  .solutions-page .solution-category {
    gap: 0;
  }

  .solutions-page .solution-category + .solution-category {
    padding-top: 0;
  }

  .solutions-page .solution-category-presentation {
    display: grid;
    align-items: start;
    align-content: start;
    padding-block: 28px;
  }

  .solutions-page .solution-category-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solutions-page .solution-brand-mark {
    width: 100%;
    min-height: 0;
    margin-bottom: 8px;
  }

  .solutions-page .ecoflow-wordmark,
  .solutions-page .ecoflow-wordmark--compact {
    width: 100%;
    justify-content: flex-start;
  }

  .solutions-page .ecoflow-wordmark img,
  .solutions-page .ecoflow-wordmark--compact img {
    width: min(100%, 640px);
  }

  .solutions-page .solution-category-copy .eyebrow {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .solutions-page .solution-category-copy h2 {
    font-size: clamp(1.68rem, 4vw, 2.08rem);
  }

  .solutions-page .solution-category-copy p:not(.eyebrow) {
    margin-top: 11px;
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .solutions-page .solution-description-config {
    margin-top: 14px;
    gap: 5px;
    max-width: 100%;
  }

  .solutions-page .solution-recap {
    padding: 14px 16px;
    border-radius: var(--radius-md);
  }

  .solutions-page .solution-recap-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 0;
  }

  .solutions-page .solution-recap-list span {
    flex: 0 0 auto;
    font-size: 0.68rem;
    line-height: 1.15;
  }

  .solutions-page .solution-recap-list strong {
    font-size: 0.84rem;
    line-height: 1.2;
    text-align: right;
  }

  .solutions-page .solution-carousel {
    display: grid;
    align-content: start;
    padding-block: 16px 18px;
  }

  .solutions-page .solution-carousel-title::before {
    font-size: 0.68rem;
  }

  .solutions-page .solution-carousel-title p {
    font-size: 0.9rem;
    line-height: 1.34;
  }

  .solutions-page .solution-carousel-controls {
    display: none;
  }

  .solutions-page .solution-carousel-stage {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .solutions-page .solution-carousel-track {
    gap: 0;
    padding: 0;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
  }

  .solutions-page .solution-pack-card {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 16px;
  }

  .solutions-page .solution-pack-content {
    gap: 10px;
  }

  .solutions-page .product-status {
    padding: 6px 10px;
    font-size: 0.68rem;
    line-height: 1.1;
  }

  .solutions-page .solution-pack-card h3 {
    font-size: clamp(1.38rem, 3.6vw, 1.68rem);
  }

  .solutions-page .solution-pack-content > p:not(.product-status) {
    font-size: 0.9rem;
    line-height: 1.34;
  }

  .solutions-page .product-specs {
    gap: 8px;
  }

  .solutions-page .product-spec {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    min-height: 0;
    padding: 9px 11px;
    border-radius: var(--radius-sm);
  }

  .solutions-page .product-spec span {
    margin-bottom: 0;
    font-size: 0.66rem;
    line-height: 1.12;
  }

  .solutions-page .product-spec strong {
    font-size: 0.84rem;
    line-height: 1.16;
    text-align: right;
  }

  .solutions-page .product-actions {
    gap: 8px;
    margin-top: 0;
  }

  .solutions-page .product-actions .btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .solutions-page .solution-pack-visual {
    min-height: 220px;
    padding: 20px;
    order: -1;
  }

  .solutions-page .solution-pack-visual span {
    font-size: 0.72rem;
  }

  .solutions-page .solution-pack-visual strong {
    margin-top: 8px;
    font-size: 1.42rem;
  }

  .solutions-page .solution-carousel-indicators {
    gap: 7px;
    margin-top: 10px;
  }

  .solutions-page .solution-carousel-indicator {
    width: 18px;
    height: 18px;
  }

  .solutions-page .solution-carousel-indicator::before {
    width: 5px;
    height: 5px;
  }

  .solutions-page .solution-carousel-indicator.is-active::before {
    width: 14px;
  }
}

@media (max-width: 767px) {
  html.solutions-page {
    --solutions-header-height: var(--mobile-header-height);
  }

  .solutions-page .page-hero h1 {
    font-size: clamp(1.78rem, 8vw, 2.18rem);
  }

  .solutions-page .page-hero p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .solutions-page .solution-proof {
    gap: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .solutions-page .solution-proof .section-header {
    gap: 10px;
    margin-bottom: 10px;
  }

  .solutions-page .solution-proof h2 {
    font-size: clamp(1.42rem, 7vw, 1.8rem);
  }

  .solutions-page .solution-proof .section-header > p {
    font-size: 0.9rem;
    line-height: 1.36;
  }

  .solutions-page .solution-proof .grid {
    gap: 8px;
  }

  .solutions-page .solution-proof .card {
    padding: 11px 13px;
  }

  .solutions-page .solution-proof .card p {
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .solutions-page .solution-category-presentation {
    padding-block: 18px;
  }

  .solutions-page .solution-category-header {
    gap: 12px;
  }

  .solutions-page .solution-brand-mark {
    margin-bottom: 6px;
  }

  .solutions-page .ecoflow-wordmark img,
  .solutions-page .ecoflow-wordmark--compact img {
    width: 100%;
  }

  .solutions-page .solution-category-copy .eyebrow {
    margin-bottom: 7px;
    font-size: 0.68rem;
  }

  .solutions-page .solution-category-copy h2 {
    font-size: clamp(1.36rem, 7vw, 1.72rem);
  }

  .solutions-page .solution-category-copy p:not(.eyebrow) {
    margin-top: 9px;
    font-size: 0.9rem;
    line-height: 1.36;
  }

  .solutions-page .solution-description-config {
    margin-top: 10px;
    gap: 4px;
  }

  .solutions-page .solution-recap {
    padding: 10px 13px;
  }

  .solutions-page .solution-recap-list li {
    gap: 12px;
    padding: 6px 0;
  }

  .solutions-page .solution-recap-list span {
    font-size: 0.63rem;
  }

  .solutions-page .solution-recap-list strong {
    font-size: 0.78rem;
    line-height: 1.18;
  }

  .solutions-page .solution-carousel {
    padding-block: 10px 12px;
  }

  .solutions-page .solution-carousel-title::before {
    font-size: 0.62rem;
  }

  .solutions-page .solution-carousel-title p {
    font-size: 0.82rem;
    line-height: 1.28;
  }

  .solutions-page .solution-pack-card {
    gap: 9px;
    padding: 12px;
  }

  .solutions-page .solution-pack-content {
    gap: 8px;
  }

  .solutions-page .product-status {
    padding: 5px 9px;
    font-size: 0.62rem;
  }

  .solutions-page .solution-pack-card h3 {
    font-size: clamp(1.22rem, 6vw, 1.48rem);
  }

  .solutions-page .solution-pack-content > p:not(.product-status) {
    font-size: 0.84rem;
    line-height: 1.3;
  }

  .solutions-page .product-specs {
    gap: 6px;
  }

  .solutions-page .product-spec {
    gap: 10px;
    padding: 7px 9px;
  }

  .solutions-page .product-spec span {
    font-size: 0.6rem;
  }

  .solutions-page .product-spec strong {
    font-size: 0.78rem;
    line-height: 1.14;
  }

  .solutions-page .product-actions .btn {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .solutions-page .solution-pack-visual {
    min-height: 190px;
    padding: 18px;
  }

  .solutions-page .solution-pack-visual span {
    font-size: 0.66rem;
  }

  .solutions-page .solution-pack-visual strong {
    margin-top: 7px;
    font-size: 1.28rem;
  }

  .solutions-page .solution-carousel-indicators {
    gap: 5px;
    margin-top: 7px;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  html.solutions-page {
    --tablet-header-height: 72px;
    --solutions-header-height: var(--tablet-header-height);
    scroll-padding-top: var(--solutions-header-height);
    scroll-snap-type: none;
  }

  html.solutions-page,
  body.solutions-page {
    overflow-x: hidden;
    overflow-x: clip;
  }

  .solutions-page .site-header,
  .solutions-page .nav {
    min-height: var(--solutions-header-height);
  }

  .solutions-page .nav-links {
    top: var(--solutions-header-height);
  }

  .solutions-page .page-hero,
  .solutions-page .solutions-snap-item {
    scroll-snap-align: none;
  }

  .solutions-page .solutions-tablet-intro,
  .solutions-page .solution-tablet-snap {
    min-height: auto;
    scroll-snap-align: none;
    scroll-margin-top: 0;
  }

  .solutions-page .solutions-tablet-intro {
    display: grid;
    grid-template-rows: minmax(320px, 46svh) minmax(0, 1fr);
    background: var(--paper);
  }

  .solutions-page .solutions-tablet-intro .page-hero {
    min-height: 0;
  }

  .solutions-page .solutions-tablet-intro .page-hero-inner {
    padding-top: 44px;
    padding-bottom: 32px;
  }

  .solutions-page .solutions-tablet-intro .page-hero h1 {
    max-width: 980px;
    font-size: clamp(2.4rem, 5vw, 3.7rem);
  }

  .solutions-page .solutions-tablet-intro .page-hero p:not(.eyebrow) {
    max-width: 900px;
    font-size: 1rem;
    line-height: 1.42;
  }

  .solutions-page .solution-proof,
  .solutions-page .solution-category-presentation,
  .solutions-page .solution-carousel {
    min-height: auto;
  }

  .solutions-page .solution-proof {
    align-content: center;
    width: min(100% - 40px, 1120px);
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .solutions-page .solution-proof .section-header {
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
    gap: 28px;
    margin-bottom: 18px;
  }

  .solutions-page .solution-proof h2 {
    font-size: clamp(2rem, 3.6vw, 2.6rem);
  }

  .solutions-page .solution-proof .section-header > p {
    font-size: 1rem;
    line-height: 1.44;
  }

  .solutions-page .solution-proof .grid {
    gap: 18px;
  }

  .solutions-page .solution-proof .card {
    min-height: clamp(180px, 19svh, 248px);
    padding: 30px 26px;
  }

  .solutions-page .solutions-catalog {
    padding-top: 0;
    padding-bottom: 0;
  }

  .solutions-page .solutions-list,
  .solutions-page .solution-category {
    gap: 0;
  }

  .solutions-page .solution-category + .solution-category {
    padding-top: 0;
  }

  .solutions-page .solution-tablet-snap {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: start;
    background: var(--white);
  }

  .solutions-page .solution-category-presentation {
    padding-block: 26px 14px;
  }

  .solutions-page .solution-category-header {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .solutions-page .solution-brand-mark {
    width: 100%;
    margin-bottom: 8px;
  }

  .solutions-page .ecoflow-wordmark,
  .solutions-page .ecoflow-wordmark--compact {
    width: 100%;
    justify-content: flex-start;
  }

  .solutions-page .ecoflow-wordmark img,
  .solutions-page .ecoflow-wordmark--compact img {
    width: min(70vw, 520px);
  }

  .solutions-page .solution-category-copy h2 {
    font-size: clamp(1.9rem, 3vw, 2.3rem);
  }

  .solutions-page .solution-category-copy p:not(.eyebrow) {
    max-width: 760px;
    margin-top: 10px;
    font-size: 0.96rem;
    line-height: 1.38;
  }

  .solutions-page .solution-description-config {
    max-width: 760px;
    margin-top: 12px;
    gap: 4px;
  }

  .solutions-page .solution-description-config::before {
    font-size: 0.68rem;
  }

  .solutions-page .solution-description-config p {
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .solutions-page .solution-recap {
    align-self: start;
    padding: 14px 16px;
  }

  .solutions-page .solution-recap-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 0;
  }

  .solutions-page .solution-recap-list span {
    font-size: 0.66rem;
  }

  .solutions-page .solution-recap-list strong {
    font-size: 0.82rem;
    line-height: 1.18;
    text-align: right;
  }

  .solutions-page .solution-carousel {
    display: grid;
    align-content: start;
    padding-block: 10px 28px;
  }

  .solutions-page .solution-carousel-controls {
    display: none;
  }

  .solutions-page .solution-carousel-stage {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .solutions-page .solution-carousel-track {
    gap: 0;
    padding: 0;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
  }

  .solutions-page .solution-pack-card {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 20px;
  }

  .solutions-page .solution-pack-content {
    gap: 11px;
  }

  .solutions-page .solution-pack-card h3 {
    font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  }

  .solutions-page .solution-pack-content > p:not(.product-status) {
    font-size: 0.92rem;
    line-height: 1.34;
  }

  .solutions-page .product-specs {
    gap: 8px;
  }

  .solutions-page .product-spec {
    min-height: 0;
    padding: 9px 11px;
  }

  .solutions-page .product-actions .btn {
    min-height: 42px;
    width: auto;
  }

  .solutions-page .solution-pack-visual {
    aspect-ratio: 16 / 9;
    min-height: 260px;
    padding: 22px;
    order: -1;
  }

  .solutions-page .solution-pack-visual strong {
    font-size: 1.55rem;
  }

  .solutions-page .solution-carousel-indicators {
    margin-top: 12px;
  }
}

@media (min-width: 1024px) {
  .solutions-page .solution-carousel-stage {
    width: min(100%, 1120px);
    max-width: min(1120px, calc(100% - 72px));
  }

  .solutions-page .solution-pack-card {
    grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1fr);
    gap: 22px;
    min-height: 420px;
  }

  .solutions-page .solution-pack-visual {
    min-width: 420px;
    min-height: 100%;
    aspect-ratio: auto;
    order: 0;
  }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .solutions-page .solution-carousel-stage {
    max-width: min(1040px, calc(100% - 48px));
  }

  .solutions-page .solution-pack-card {
    grid-template-columns: minmax(360px, 0.96fr) minmax(420px, 0.92fr);
    gap: 18px;
  }
}

@media (min-width: 768px) and (max-width: 1180px) and (max-height: 900px) {
  .solutions-page .solutions-tablet-intro {
    grid-template-rows: minmax(280px, 42svh) minmax(0, 1fr);
  }

  .solutions-page .solutions-tablet-intro .page-hero-inner {
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .solutions-page .solutions-tablet-intro .page-hero h1 {
    font-size: clamp(2.2rem, 4.6vw, 3rem);
  }

  .solutions-page .solution-proof {
    padding-top: 24px;
    padding-bottom: 26px;
  }

  .solutions-page .solution-proof .section-header {
    margin-bottom: 14px;
  }

  .solutions-page .solution-proof .card {
    min-height: 86px;
    padding: 16px 18px;
  }

  .solutions-page .solution-category-presentation {
    padding-top: 18px;
    padding-bottom: 10px;
  }

  .solutions-page .solution-carousel {
    padding-top: 8px;
    padding-bottom: 18px;
  }

  .solutions-page .solution-pack-card {
    min-height: 0;
  }
}

@media (max-width: 340px) {
  .solutions-page .solution-proof,
  .solutions-page .solution-category-presentation,
  .solutions-page .solution-carousel {
    min-height: auto;
  }
}

/* Stabilisation responsive de la page solutions apres le fond dynamique. */
.solutions-page .solution-proof {
  width: min(100% - 32px, 1120px);
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 0;
  overflow-x: clip;
}

.solutions-page .solution-category-presentation,
.solutions-page .solution-carousel {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
}

.solutions-page .solution-category-presentation {
  background: var(--white, #ffffff);
  box-shadow: none;
  clip-path: none;
  padding-inline: max(24px, calc((100vw - 1120px) / 2));
}

.solutions-page .solution-carousel {
  background: var(--white);
  padding-inline: max(24px, calc((100vw - 1120px) / 2));
}

.solutions-page .solutions-list,
.solutions-page .solution-category {
  width: 100%;
  min-width: 0;
}

.solutions-page .solution-category-header {
  width: 100%;
  min-width: 0;
}

.solutions-page .solution-category-copy,
.solutions-page .solution-category-copy h2,
.solutions-page .solution-category-copy p,
.solutions-page .solution-proof h2,
.solutions-page .solution-proof .section-header > p,
.solutions-page .solution-proof .card p,
.solutions-page .solution-carousel-title,
.solutions-page .solution-carousel-title h3,
.solutions-page .solution-carousel-title p,
.solutions-page .solution-pack-content,
.solutions-page .solution-pack-card h3,
.solutions-page .solution-pack-content p,
.solutions-page .product-spec,
.solutions-page .product-spec strong {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.solutions-page .solution-category-copy h2,
.solutions-page .solution-carousel-title h3,
.solutions-page .solution-pack-card h3 {
  line-height: 1.08;
}

.solutions-page .solution-carousel-stage {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.solutions-page .solution-carousel-track {
  width: 100%;
  max-width: 100%;
}

.solutions-page .solution-pack-card {
  min-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}

.solutions-page .solution-pack-visual--has-image {
  min-height: 260px;
  aspect-ratio: 16 / 9;
}

.solutions-page .solution-carousel-section--dynamic-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.solutions-page .solution-carousel-section--dynamic-bg::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--active-solution-image, none);
  background-size: cover;
  background-position: center;
  filter: blur(24px) saturate(1.22) brightness(1.03);
  transform: scale(1.025);
  opacity: 0.88;
  pointer-events: none;
}

.solutions-page .solution-carousel-section--dynamic-bg::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.68) 0%,
      rgba(255, 255, 255, 0.46) 42%,
      rgba(255, 255, 255, 0.58) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.42) 50%,
      rgba(255, 255, 255, 0.70) 100%
    );
  pointer-events: none;
}

.solution-carousel-section--dynamic-bg .solution-carousel-stage::before {
  display: none;
  content: none;
}

.solution-carousel-section--dynamic-bg .solution-carousel-track,
.solution-carousel-section--dynamic-bg .solution-carousel-indicators {
  position: relative;
  z-index: 1;
}

.solution-carousel-section--dynamic-bg .solution-carousel-controls {
  position: absolute;
  z-index: 2;
}

.solutions-page .solution-carousel-section--dynamic-bg > * {
  position: relative;
  z-index: 1;
}

.solutions-page .solution-carousel-stage {
  --solution-carousel-indicators-space: 42px;
}

.solutions-page .solution-carousel-controls {
  top: calc((100% - var(--solution-carousel-indicators-space)) / 2);
  bottom: auto;
  align-items: center;
  transform: translateY(-50%);
}

.solution-carousel-section--dynamic-bg .solution-pack-visual--has-image::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.02) 62%,
    rgba(0, 0, 0, 0.26) 100%
  );
}

@media (min-width: 1180px) {
  .solutions-page .solution-category-presentation,
  .solutions-page .solution-carousel {
    padding-block: 42px;
  }

  .solutions-page .solution-category-header {
    grid-template-columns: minmax(420px, 1fr) minmax(280px, 360px);
    gap: 44px;
  }

  .solutions-page .solution-carousel-stage {
    max-width: 1060px;
  }

  .solutions-page .solution-pack-card {
    grid-template-columns: minmax(380px, 0.92fr) minmax(420px, 1fr);
    gap: 22px;
    min-height: 420px;
  }

  .solutions-page .solution-pack-visual {
    min-width: 420px;
    min-height: 100%;
    aspect-ratio: auto;
    order: 0;
  }
}

@media (min-width: 900px) and (max-width: 1179px) {
  .solutions-page .solution-proof {
    width: min(100% - 32px, 1120px);
  }

  .solutions-page .solution-category-presentation {
    padding-block: 30px 18px;
  }

  .solutions-page .solution-category-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .solutions-page .solution-category-copy {
    min-width: min(100%, 420px);
  }

  .solutions-page .solution-recap {
    width: 100%;
  }

  .solutions-page .solution-carousel {
    padding-block: 18px 30px;
  }
}

@media (min-width: 1024px) and (max-width: 1179px) {
  .solutions-page .solution-carousel-stage {
    max-width: min(100%, 1040px);
  }

  .solutions-page .solution-pack-card {
    grid-template-columns: minmax(360px, 1fr) minmax(420px, 0.95fr);
    gap: 18px;
    min-height: 400px;
  }

  .solutions-page .solution-pack-visual {
    min-width: 420px;
    min-height: 100%;
    aspect-ratio: auto;
    order: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .solutions-page .solution-proof {
    width: min(100% - 32px, 1120px);
  }

  .solutions-page .solution-category-header,
  .solutions-page .solution-pack-card {
    grid-template-columns: 1fr;
  }

  .solutions-page .solution-pack-card {
    gap: 18px;
    min-height: 0;
  }

  .solutions-page .solution-pack-visual {
    order: -1;
    min-width: 0;
    min-height: 260px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 899px) {
  .solutions-page .solution-proof {
    width: min(100% - 24px, 1120px);
  }

  .solutions-page .solution-category-header,
  .solutions-page .solution-pack-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .solutions-page .solution-recap {
    width: 100%;
  }

  .solutions-page .solution-pack-card {
    min-height: 0;
  }

  .solutions-page .solution-pack-visual {
    order: -1;
    min-width: 0;
    min-height: clamp(190px, 44vw, 260px);
    aspect-ratio: 16 / 9;
  }

  .solutions-page .product-specs {
    grid-template-columns: 1fr;
  }
}

/* Réglage visuel du fond image flouté des carrousels PowerOcean */
.solutions-page .solution-carousel-section--dynamic-bg::before {
  filter: blur(18px) saturate(1.16);
  transform: scale(1.018);
  opacity: 0.78;
}

.solutions-page .solution-carousel-section--dynamic-bg::after {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.52) 0%,
      rgba(255, 255, 255, 0.36) 44%,
      rgba(255, 255, 255, 0.46) 100%
    );
}

/* Neutralise le snap vertical de la page solutions sans toucher au carrousel horizontal. */
html.solutions-page,
body.solutions-page,
.solutions-page {
  scroll-snap-type: none;
}

.solutions-page .solution-proof,
.solutions-page .solution-category-presentation,
.solutions-page .solution-carousel,
.solutions-page .solutions-snap-item,
.solutions-page .solution-tablet-snap,
.solutions-page .solutions-tablet-intro,
.solutions-page .page-hero,
.solutions-page .snap-section {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  scroll-margin-top: 0;
}

.solutions-page .solution-category-presentation,
.solutions-page .solution-carousel,
.solutions-page .solution-proof,
.solutions-page .solution-tablet-snap,
.solutions-page .solutions-tablet-intro {
  min-height: auto;
  height: auto;
}
