@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700;800&display=swap");

:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3fb;
  --ink: #101828;
  --muted: #677489;
  --line: rgba(16, 24, 40, 0.1);
  --navy: #1f2d45;
  --navy-strong: #101c31;
  --red: #d11217;
  --red-dark: #a90a0f;
  --green: #19693f;
  --green-soft: #dff2e7;
  --shadow: 0 24px 70px rgba(16, 28, 49, 0.14);
  --shadow-soft: 0 18px 40px rgba(16, 28, 49, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
  --font-display: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --accent: var(--red);
  --accent-soft: rgba(209, 18, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  padding-top: 88px;
  background:
    radial-gradient(circle at top left, rgba(209, 18, 23, 0.06), transparent 32%),
    radial-gradient(circle at bottom right, rgba(25, 105, 63, 0.07), transparent 30%),
    var(--bg);
}

body.page-services,
body.page-home,
body.page-contact {
  --accent: var(--red);
  --accent-soft: rgba(209, 18, 23, 0.12);
}

.page-services *,
.page-services *::before,
.page-services *::after {
  border-radius: 0 !important;
}

.page-services .hero-visual-services .orb {
  border-radius: 50% !important;
}

.page-services .hero-services .eyebrow {
  border-radius: 999px !important;
}

body.page-home,
body.page-services,
body.page-rse,
body.page-reports,
body.page-contact {
  position: relative;
  background: transparent;
}

body.page-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(108deg, rgba(10, 20, 34, 0.9), rgba(15, 39, 62, 0.74)),
    radial-gradient(circle at 84% 22%, rgba(209, 18, 23, 0.28), transparent 18%),
    url("assets/entretien.png");
  background-position: center, 84% 22%, center;
  background-size: auto, auto, cover;
  background-repeat: no-repeat;
}

body.page-services::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(110deg, rgba(10, 18, 31, 0.88), rgba(18, 31, 51, 0.76)),
    radial-gradient(circle at 78% 18%, rgba(25, 105, 63, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(8, 15, 27, 0.18), rgba(8, 15, 27, 0.5)),
    url("assets/desinsectisation.png");
  background-position: center, 78% 18%, center, center;
  background-size: auto, auto, auto, cover;
  background-repeat: no-repeat;
}

body.page-rse::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(110deg, rgba(10, 18, 31, 0.88), rgba(18, 31, 51, 0.76)),
    radial-gradient(circle at 80% 22%, rgba(209, 18, 23, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(8, 15, 27, 0.18), rgba(8, 15, 27, 0.5)),
    url("assets/mains.png");
  background-position: center, center, 80% 22%, center;
  background-size: auto, auto, auto, cover;
  background-repeat: no-repeat;
}

body.page-reports::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(110deg, rgba(10, 18, 31, 0.88), rgba(18, 31, 51, 0.76)),
    radial-gradient(circle at 80% 22%, rgba(25, 105, 63, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(8, 15, 27, 0.18), rgba(8, 15, 27, 0.5)),
    url("assets/bureau.png");
  background-position: center, center, center, center;
  background-size: auto, auto, auto, cover;
  background-repeat: no-repeat;
}

body.page-contact::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at top right, rgba(209, 18, 23, 0.08), transparent 18%),
    linear-gradient(180deg, #f5f7fc, #eef3fb);
}

body.page-home main,
body.page-services main,
body.page-rse main,
body.page-reports main,
body.page-contact main,
body.page-home .site-footer {
  position: relative;
  z-index: 1;
}

body.page-services .site-footer,
body.page-rse .site-footer,
body.page-reports .site-footer,
body.page-contact .site-footer {
  position: relative;
  z-index: 1;
}

body.page-rse,
body.page-reports {
  --accent: var(--green);
  --accent-soft: rgba(25, 105, 63, 0.12);
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.08);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-mark {
  width: 58px;
  height: 61px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  filter: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

.brand-name-s {
  color: var(--green);
}

.brand-name-cha {
  color: var(--red);
}

.brand-copy > span {
  color: var(--muted);
  font-size: 0.83rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  position: relative;
  content: "";
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.site-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
}

.site-nav a:not(.button) {
  position: relative;
  color: var(--muted);
  font-size: 0.96rem;
  padding: 10px 2px;
  transition: color 180ms ease;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a[aria-current="page"]::after,
.site-nav a:not(.button):hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 0;
  padding: 14px 22px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #bb0d13);
  box-shadow: 0 16px 30px rgba(209, 18, 23, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(209, 18, 23, 0.32);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.button-surface {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid rgba(16, 24, 40, 0.09);
  box-shadow: var(--shadow-soft);
}

.button-outline {
  color: var(--accent);
  background: transparent;
  border: 1px solid currentColor;
}

.button-nav {
  margin-left: 8px;
  padding-inline: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(16, 28, 49, 0.9), rgba(16, 28, 49, 0.78)),
    radial-gradient(circle at top right, rgba(209, 18, 23, 0.36), transparent 26%),
    radial-gradient(circle at 20% 75%, rgba(80, 170, 210, 0.18), transparent 28%),
    linear-gradient(135deg, #15223a, #24476d);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.14;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 10% -12% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-home {
  background: transparent;
}

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

.page-home .hero-copy {
  max-width: 980px;
}

.hero-services {
  background: transparent;
}

.hero-rse {
  background: transparent;
}

.page-rse .hero-rse {
  min-height: calc(100vh - 88px + 56px);
  padding-bottom: 128px;
}

.hero-reports {
  min-height: 70vh;
  color: #fff;
  background: transparent;
}

.hero-reports::before,
.hero-reports::after {
  opacity: 0.08;
}

.hero-contact {
  min-height: auto;
  padding: 16px 0 8px;
  color: var(--ink);
  background: transparent;
  scroll-margin-top: 88px;
}

.hero-contact .hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.hero-contact::before,
.hero-contact::after {
  opacity: 0.07;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 48px;
}

.hero-services .hero-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: 32px;
}

.page-reports .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: 40px;
}

.hero-copy,
.hero-figure {
  animation: rise-in 700ms ease both;
}

.hero-figure {
  animation-delay: 120ms;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-contact .eyebrow,
.section-tag {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: transparent;
}

.hero h1 {
  margin: 18px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero-services h1 {
  max-width: none;
}

.hero-rse h1 {
  max-width: none;
}

.hero-contact h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.4rem, 3.2vw, 4.4rem);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-home h1 {
  max-width: none;
}

.hero p {
  margin: 0;
  max-width: 62ch;
  font-size: 1.03rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.hero-reports p,
.hero-contact p {
  color: var(--muted);
}

.hero-contact p {
  max-width: none;
}

.hero-reports p {
  color: rgba(255, 255, 255, 0.84);
}

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

.page-home .hero-actions {
  gap: 28px;
}

.hero-rse .hero-actions {
  gap: 28px;
}

.page-services .hero-actions {
  gap: 28px;
}

.page-reports .hero-actions {
  gap: 28px;
}

.hero-figure-brochure {
  display: flex;
  justify-content: flex-end;
}

.brochure-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: min(100%, 460px);
  padding: 28px 20px 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.brochure-card-media {
  width: 100%;
  max-width: 355px;
}

.brochure-card-image {
  display: block;
  width: 100%;
  height: auto;
}

.brochure-card .button {
  width: auto;
  justify-content: center;
  text-align: center;
}

.brochure-button {
  min-height: 52px;
  padding: 0 20px;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #1d6d54);
  border-color: transparent;
}

.hero-note {
  display: flex;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-note strong,
.stat-strip strong,
.contact-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.hero-note span,
.stat-strip span,
.contact-badge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.hero-reports .hero-note span,
.hero-contact .hero-note span {
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.24), transparent 15%),
    radial-gradient(circle at 28% 78%, rgba(96, 200, 255, 0.16), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual-services {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-visual-rse {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-visual-photo-report {
  min-height: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.hero-visual-photo-report::before,
.hero-visual-photo-report::after {
  display: none;
}

.hero-visual-photo-report .hero-photo {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 30px;
  z-index: 1;
}

.hero-visual::before {
  inset: 10% 12% auto auto;
  width: 240px;
  height: 160px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-visual-services::before {
  display: none;
}

.hero-visual-services::after {
  display: none;
}

.hero-visual-rse::before,
.hero-visual-rse::after {
  display: none;
}

.hero-visual::after {
  inset: auto auto 10% 10%;
  width: 320px;
  height: 210px;
  background:
    linear-gradient(135deg, rgba(209, 18, 23, 0.4), rgba(25, 105, 63, 0.12)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-visual-home .orb,
.hero-visual-services .orb,
.hero-visual-rse .orb,
.hero-visual-report .orb,
.hero-visual-contact .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-visual-home .orb.one,
.hero-visual-services .orb.one,
.hero-visual-rse .orb.one,
.hero-visual-report .orb.one,
.hero-visual-contact .orb.one {
  inset: 9% auto auto 10%;
  width: 94px;
  height: 94px;
  background: rgba(209, 18, 23, 0.52);
}

.hero-visual-home .orb.two,
.hero-visual-services .orb.two,
.hero-visual-rse .orb.two,
.hero-visual-report .orb.two,
.hero-visual-contact .orb.two {
  inset: auto 11% 16% auto;
  width: 130px;
  height: 130px;
  background: rgba(92, 188, 168, 0.3);
}

.hero-visual-home {
  min-height: auto;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.hero-visual-home::before,
.hero-visual-home::after {
  display: none;
}

.hero-map-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(9, 20, 39, 0.28);
}

.wire-grid,
.hero-figure-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65));
  z-index: 1;
}

.hero-card,
.panel-badge,
.report-tile,
.contact-card,
.service-card,
.metric-card,
.faq-card,
.document-card,
.governance-card,
.stack-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16, 24, 40, 0.06);
}

.hero-card {
  position: absolute;
  z-index: 2;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.hero-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.hero-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero-card-top {
  top: 40px;
  right: 38px;
  width: 250px;
}

.hero-card-bottom {
  left: 36px;
  bottom: 34px;
  width: 280px;
}

.hero-card-center {
  right: 84px;
  bottom: 142px;
  width: 220px;
  background: rgba(31, 45, 69, 0.86);
  color: #fff;
}

.hero-card-center p {
  color: rgba(255, 255, 255, 0.72);
}

.hero-ribbon {
  position: absolute;
  right: 44px;
  bottom: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(209, 18, 23, 0.92), rgba(209, 18, 23, 0.74));
  box-shadow: 0 20px 40px rgba(209, 18, 23, 0.24);
}

.hero-ribbon strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.hero-ribbon span {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.9);
}

.stat-strip {
  margin-top: -38px;
  position: relative;
  z-index: 2;
}

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

.metric-card {
  padding: 26px 24px;
  text-align: center;
  border-bottom: 3px solid var(--accent);
}

.metric-card strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--accent);
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-rse .stat-grid .metric-card:nth-child(2),
.page-rse .stat-grid .metric-card:nth-child(4) {
  border-bottom-color: var(--red);
}

.page-rse .stat-grid .metric-card:nth-child(2) strong,
.page-rse .stat-grid .metric-card:nth-child(4) strong {
  color: var(--red);
}

.page-rse .stat-strip {
  margin-top: -44px;
  z-index: 3;
}

.page-rse .stat-grid {
  gap: 22px;
}

.page-rse .metric-card {
  min-height: 198px;
  padding: 34px 28px 28px;
  background: rgba(255, 255, 255, 0.98);
  border: 0;
  border-bottom: 4px solid var(--accent);
  border-radius: 22px !important;
  box-shadow: 0 18px 36px rgba(16, 28, 49, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.page-rse .metric-card strong {
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 0.95;
}

.page-rse .metric-card span {
  margin-top: 0;
  color: #6b5149;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.page-rse .rse-wide-band {
  position: relative;
  z-index: 1;
  height: 176px;
  margin-top: -118px;
  background: rgba(255, 255, 255, 0.98);
}

.page-rse .section-rse-content {
  background: #f6f8fc;
  padding-top: 36px;
}

.page-rse .section-rse-social {
  background: rgba(236, 243, 252, 0.9);
  border-top: 1px solid rgba(125, 152, 194, 0.18);
  border-bottom: 1px solid rgba(125, 152, 194, 0.18);
}

.section {
  padding: 108px 0;
  position: relative;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
}

.section-header.compact {
  align-items: center;
}

.section-copy {
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.75;
}

.section h2,
.cta h2,
.footer-brand strong {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.section h2,
.cta h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.title-single-line {
  white-space: nowrap;
}

.cta-title-light {
  color: #fff;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.underline {
  width: 56px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--accent);
}

.page-home main > .hero + .section .underline {
  width: 168px;
}

.page-services #prestations .underline {
  width: 168px;
  height: 4px;
}

.page-reports .section-header.compact .underline {
  width: 168px;
}

.page-rse .section-header.compact .underline {
  width: 168px;
}

.page-rse #environnement h2 {
  color: var(--green);
}

.page-rse #environnement {
  scroll-margin-top: 120px;
}

.page-rse .section-rse-social h2 {
  color: var(--red);
}

.page-rse .section-rse-social .underline {
  width: 168px;
  background: var(--red);
}

.page-rse .section-rse-social .icon-badge {
  background:
    linear-gradient(135deg, rgba(209, 18, 23, 0.18), rgba(255, 255, 255, 0.96)),
    #fff4f4;
  color: var(--red);
}

.page-reports .hero-reports {
  min-height: calc(100vh - 88px);
  padding-bottom: 72px;
}

.page-reports main > .hero + .section {
  padding-top: 32px;
}

.page-home main > .hero + .section {
  position: relative;
  isolation: isolate;
  background: #f5f7fb !important;
}

.page-contact main > .hero + .section {
  padding-top: 0;
}

.page-services #prestations {
  background: #f5f7fb;
}

.page-reports #documents-cles {
  background: #f5f7fb;
  scroll-margin-top: 120px;
}

.page-home main > .hero + .section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #f5f7fb;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  justify-items: center;
}

.service-card {
  width: min(100%, 380px);
  min-height: 380px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  border: 1.5px solid rgba(209, 18, 23, 0.32);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.page-home main > .hero + .section .service-card {
  min-height: auto;
  aspect-ratio: auto;
  padding: 22px;
}

.service-card:hover,
.stack-card:hover,
.document-card:hover,
.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, var(--accent-soft), rgba(255, 255, 255, 0.96)),
    var(--surface);
  color: var(--accent);
  margin-bottom: 20px;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
}

.icon-badge img {
  width: 24px;
  height: 24px;
}

.icon-badge-plain {
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
}

.icon-badge-eco img {
  width: 44px;
  height: 44px;
}

.icon-badge-recycle img {
  width: 40px;
  height: 40px;
}

.icon-badge-drop img {
  width: 29px;
  height: 29px;
}

.icon-badge .icon-cleaning-large {
  width: 34px;
  height: 34px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(53%) saturate(982%) hue-rotate(103deg) brightness(91%) contrast(89%);
}

.stack-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.stack-card-head .icon-badge {
  margin-bottom: 0;
  flex-shrink: 0;
}

.service-card h3,
.stack-card h3,
.faq-card h3,
.document-card h3,
.contact-card h3,
.governance-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.service-card p,
.stack-card p,
.faq-card p,
.document-card p,
.contact-card p,
.list-copy {
  color: var(--muted);
  line-height: 1.72;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 700;
}

.services-grid .card-link {
  margin-top: auto;
  padding-top: 20px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: center;
}

#pourquoi {
  background: rgba(236, 243, 252, 0.9);
  border-top: 1px solid rgba(125, 152, 194, 0.18);
  border-bottom: 1px solid rgba(125, 152, 194, 0.18);
}

#methodologie {
  background: rgba(236, 243, 252, 0.9);
  border-top: 1px solid rgba(125, 152, 194, 0.18);
  border-bottom: 1px solid rgba(125, 152, 194, 0.18);
}

#faq-contact {
  background: rgba(236, 243, 252, 0.9);
  border-top: 1px solid rgba(125, 152, 194, 0.18);
  border-bottom: 1px solid rgba(125, 152, 194, 0.18);
}

#faq-contact .faq-card {
  border-color: rgba(209, 18, 23, 0.28);
}

#faq-contact .faq-card h3 {
  color: var(--green);
}

#methodologie h2 {
  white-space: nowrap;
}

#methodologie .split-grid {
  align-items: start;
}

#methodologie .media-panel {
  margin-top: 48px;
}

#pourquoi .split-grid {
  padding: 32px 0;
}

#pourquoi .media-panel,
#pourquoi .media-photo,
#pourquoi .panel-badge {
  border-radius: 0;
}

#pourquoi .media-panel {
  overflow: visible;
}

.media-panel {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(31, 45, 69, 0.14), rgba(255, 255, 255, 0.8)),
    linear-gradient(135deg, #dbe6f3, #f8fbff);
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: var(--shadow);
}

.media-panel::before,
.media-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.media-panel::before {
  width: 380px;
  height: 380px;
  inset: -120px -80px auto auto;
  background: radial-gradient(circle, rgba(209, 18, 23, 0.18), transparent 70%);
}

.media-panel::after {
  width: 280px;
  height: 280px;
  inset: auto auto -90px -70px;
  background: radial-gradient(circle, rgba(25, 105, 63, 0.16), transparent 70%);
}

.media-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-panel.dark {
  background:
    linear-gradient(135deg, rgba(16, 28, 49, 0.92), rgba(31, 45, 69, 0.92)),
    linear-gradient(135deg, #1f2d45, #0f1827);
  color: #fff;
}

.media-method {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.media-panel.dark.media-method {
  background: transparent;
}

.media-method::before,
.media-method::after {
  display: none;
}

.media-panel.dark::before {
  background: radial-gradient(circle, rgba(209, 18, 23, 0.3), transparent 70%);
}

.media-panel.dark::after {
  background: radial-gradient(circle, rgba(99, 200, 177, 0.18), transparent 70%);
}

.media-figure {
  position: absolute;
  inset: 0;
}

.media-figure .pillar,
.media-figure .tile,
.media-figure .glow,
.media-figure .screen,
.media-figure .worker,
.media-figure .sheet,
.media-figure .table-top,
.media-figure .glass-card {
  position: absolute;
  border-radius: 24px;
}

.media-team .pillar {
  bottom: 0;
  width: 10%;
  height: 74%;
  background: linear-gradient(180deg, rgba(31, 45, 69, 0.06), rgba(31, 45, 69, 0.22));
}

.media-team .pillar:nth-child(1) { left: 8%; }
.media-team .pillar:nth-child(2) { left: 24%; }
.media-team .pillar:nth-child(3) { left: 40%; }
.media-team .pillar:nth-child(4) { left: 56%; }
.media-team .pillar:nth-child(5) { left: 72%; }

.media-team .worker {
  bottom: 10%;
  width: 12%;
  height: 38%;
  background: linear-gradient(180deg, #284667, #17263f);
  border-radius: 30px 30px 18px 18px;
  box-shadow: 0 14px 24px rgba(16, 28, 49, 0.2);
}

.media-team .worker::before,
.media-team .worker::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.media-team .worker::before {
  top: -28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, #c88d68, #8b5a3e);
}

.media-team .worker::after {
  top: 16%;
  width: 62%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.media-team .worker.one { left: 12%; height: 34%; }
.media-team .worker.two { left: 27%; }
.media-team .worker.three { left: 43%; height: 40%; }
.media-team .worker.four { left: 59%; height: 35%; }
.media-team .worker.five { left: 74%; height: 39%; }

.panel-badge {
  position: absolute;
  right: 26px;
  bottom: 26px;
  padding: 22px;
  background: linear-gradient(135deg, var(--red), #b30c12);
  color: #fff;
  min-width: 190px;
}

#pourquoi .panel-badge {
  min-width: 0;
  width: 190px;
  left: auto;
  right: -22px;
  bottom: -22px;
  transform: none;
}

#pourquoi .panel-badge span {
  display: block;
}

.panel-badge strong {
  font-family: var(--font-display);
  font-size: 2.3rem;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.feature-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
}

.feature-item .icon-badge {
  margin: 0;
  width: 52px;
  height: 52px;
}

.page-home .services-grid .icon-badge {
  background: rgba(236, 243, 252, 0.9);
}

.feature-item .icon-badge-green {
  background: linear-gradient(135deg, rgba(25, 105, 63, 0.2), rgba(25, 105, 63, 0.08));
  color: var(--green);
}

.feature-item h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

#methodologie .feature-item:first-child h3 {
  margin-bottom: 0;
}

#methodologie .feature-item:nth-child(2) h3 {
  margin-bottom: 0;
}

#methodologie .feature-item:nth-child(3) h3 {
  margin-bottom: 0;
}

#methodologie .feature-item .list-copy {
  margin: 0;
}

.stack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-services #prestations .stack-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.stack-card {
  padding: 28px;
}

.stack-card-cleaning {
  border: 1px solid rgba(209, 18, 23, 0.55);
  height: 100%;
  align-self: stretch;
}

.page-services #prestations .icon-badge {
  background: transparent;
}

.stack-card-media {
  width: auto;
  max-width: none;
  padding: 28px;
  border: 1px solid rgba(209, 18, 23, 0.55);
  height: 100%;
  align-self: stretch;
  justify-self: stretch;
}

.stack-card-copy {
  display: flex;
  flex-direction: column;
}

.stack-card-photo {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  border-radius: 20px;
  margin: 14px 0;
}

.stack-card-media .stack-card-head {
  margin-bottom: 6px;
}

.stack-card-disinfection .stack-card-head {
  margin-bottom: 2px;
}

.stack-card-media .check-list {
  gap: 8px;
  margin-top: 6px;
}

.stack-card.highlight {
  background:
    linear-gradient(135deg, rgba(31, 45, 69, 0.97), rgba(31, 45, 69, 0.9)),
    var(--navy);
  color: #fff;
}

.stack-card-remise {
  width: 100%;
  max-width: 760px;
  height: 100%;
  align-self: stretch;
  justify-self: start;
}

.stack-card-disinfection {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 20px;
  height: 100%;
  align-self: stretch;
  align-items: stretch;
  border: 1px solid rgba(209, 18, 23, 0.55);
}

.cleaning-mini-cards {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.cleaning-mini-card {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 8px;
  background: rgba(236, 243, 252, 0.9);
  border: 1px solid rgba(16, 24, 40, 0.06);
}

.cleaning-mini-card img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cleaning-mini-card span {
  font-family: var(--font-display);
  font-size: 0.88rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.stack-card-thumb {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  justify-self: stretch;
  align-self: stretch;
}

.stack-card-disinfection .tag-row span {
  background: rgba(25, 105, 63, 0.14);
  color: var(--green);
  border-radius: 999px;
}

.stack-card.highlight p,
.stack-card.highlight .list-copy {
  color: rgba(255, 255, 255, 0.72);
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 48%, currentColor 50%),
    currentColor;
  color: var(--green);
  box-shadow: inset 0 0 0 5px var(--surface);
  flex-shrink: 0;
}

.check-list-custom li::before {
  border-radius: 0;
  background: url("assets/check (1).svg") center / contain no-repeat;
  box-shadow: none;
  color: inherit;
}

.check-list-cleaning li::before {
  border-radius: 0;
  background: url("assets/check (2).svg") center / contain no-repeat;
  box-shadow: none;
  color: inherit;
}

.check-list-remise li::before {
  border-radius: 0;
  background: url("assets/check.svg") center / contain no-repeat;
  box-shadow: none;
  color: inherit;
}

.media-method .screen {
  inset: 16% 10% 12% 14%;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(8, 22, 34, 0.98), rgba(20, 87, 73, 0.85)),
    #10233b;
  box-shadow: 0 28px 50px rgba(16, 28, 49, 0.3);
}

.media-method .screen,
.media-method .tile {
  display: none;
}

.media-method .media-photo {
  position: absolute;
  top: 64px;
  left: 0;
  width: 567px;
  height: 362px;
  max-width: none;
  object-fit: cover;
}

.media-method .screen::before {
  content: "";
  position: absolute;
  inset: 10% 12%;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(46, 154, 132, 0.38), rgba(21, 33, 61, 0.9));
}

.media-method .tile {
  width: 120px;
  height: 120px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.media-method .tile.one { top: 18%; right: 12%; }
.media-method .tile.two { bottom: 16%; left: 10%; }

.media-method .glass-card {
  left: 16px;
  bottom: 16px;
  min-width: 150px;
  padding: 16px;
  transform: none;
  background: linear-gradient(135deg, var(--red), #b30c12);
  color: #fff;
}

.media-method .glass-card strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}

.media-method .glass-card span {
  display: block;
  margin-top: 10px;
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 1081px) {
  #methodologie .media-panel {
    margin-top: 82px;
    min-height: 362px;
  }

  .media-method .media-photo {
    top: 0;
  }
}

.rse-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 22px;
}

.page-rse .rse-grid {
  display: flex;
  gap: 22px;
  align-items: start;
}

.page-rse .rse-grid > .rse-card-photo {
  flex: 0 0 690px;
}

.page-rse .rse-grid > .rse-card.green {
  flex: 1 1 0;
}

.rse-grid-bottom {
  display: grid;
  grid-template-columns: 0.72fr 0.72fr;
  gap: 22px;
  margin-top: 22px;
}

.rse-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: var(--shadow-soft);
}

.page-rse .rse-grid .rse-card {
  min-height: 0;
  height: 360px;
}

.rse-card-photo {
  padding: 18px 22px 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.68)),
    url("assets/produitsbio.png") center 58% / cover no-repeat;
}

.rse-card-photo .icon-badge {
  margin-bottom: 12px;
}

.rse-card-photo p {
  margin-top: 0;
  margin-bottom: 0;
  color: #31445e;
  font-size: 0.98rem;
  line-height: 1.45;
}

.rse-card-photo-title {
  margin: 0 0 8px;
  font-size: 1.45rem;
  white-space: nowrap;
}

.rse-card-photo .tag-row {
  margin-top: 10px;
  gap: 8px;
}

.rse-card-photo .tag-row span {
  min-height: 32px;
  padding: 0 12px;
  font-size: 0.78rem;
  background: rgba(25, 105, 63, 0.16);
  color: var(--green);
}

.rse-card.green {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(25, 105, 63, 0.96), rgba(30, 114, 76, 0.94)),
    var(--green);
}

.rse-card.green p,
.rse-card.green .tag-row span {
  color: rgba(255, 255, 255, 0.82);
}

.rse-card h3 {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  background: rgba(16, 24, 40, 0.05);
  color: var(--muted);
}

.rse-card.green .tag-row span {
  background: rgba(255, 255, 255, 0.12);
}

.rse-card .glow {
  inset: auto -8% -12% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42), transparent 70%);
}

.rse-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  border-color: var(--red);
}

.rse-link::after {
  content: "→";
  font-size: 1.8rem;
  color: var(--accent);
}

.social-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.bullet-list {
  display: grid;
  gap: 18px;
}

.bullet-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.bullet-item h3 {
  margin: 0;
}

.bullet-item .list-copy {
  margin-top: 0;
}

.image-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-self: center;
  margin-top: 28px;
}

.mini-panel {
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, rgba(16, 28, 49, 0.9), rgba(26, 87, 62, 0.88)),
    linear-gradient(180deg, #17293f, #204a59);
  box-shadow: var(--shadow);
}

.mini-panel-photo {
  background: #dfe6ef;
}

.mini-panel-photo::before,
.mini-panel-photo::after {
  display: none;
}

.mini-panel-photo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mini-panel-photo-image-epi {
  object-position: 72% center;
}

.mini-panel::before,
.mini-panel::after {
  content: "";
  position: absolute;
}

.mini-panel::before {
  inset: 12% 12% auto auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26), transparent 65%);
}

.mini-panel::after {
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
}

.mini-panel.team::before {
  width: 180px;
  height: 180px;
}

.mini-panel.cleaning {
  background:
    linear-gradient(135deg, rgba(12, 24, 36, 0.88), rgba(34, 76, 92, 0.82)),
    linear-gradient(180deg, #1a3341, #1c5961);
}

.mini-panel .figure-group,
.mini-panel .glove,
.mini-panel .helmet,
.mini-panel .desk {
  position: absolute;
}

.mini-panel.team .desk {
  inset: auto 8% 14% 8%;
  height: 18%;
  border-radius: 24px;
  background: rgba(53, 29, 18, 0.8);
}

.mini-panel.team .figure-group {
  bottom: 24%;
  width: 16%;
  height: 38%;
  background: linear-gradient(180deg, #ffb454, #c76f2b);
  border-radius: 26px 26px 18px 18px;
}

.mini-panel.team .figure-group::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #9c643d, #7c4b30);
}

.mini-panel.team .figure-group:nth-child(2) { left: 12%; }
.mini-panel.team .figure-group:nth-child(3) { left: 30%; height: 34%; }
.mini-panel.team .figure-group:nth-child(4) { left: 48%; height: 40%; }
.mini-panel.team .figure-group:nth-child(5) { left: 66%; height: 33%; }

.mini-panel.cleaning .glove {
  width: 34%;
  height: 20%;
  background: linear-gradient(135deg, #3ac3ab, #0f6e70);
  border-radius: 34px;
  bottom: 24%;
}

.mini-panel.cleaning .glove.one {
  left: 18%;
  transform: rotate(12deg);
}

.mini-panel.cleaning .glove.two {
  right: 18%;
  transform: rotate(-14deg);
}

.document-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.95fr);
  gap: 22px;
}

.document-card {
  padding: 28px;
}

.document-grid > .document-card {
  border-color: var(--red);
}

.document-card.featured {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.report-cover,
.report-preview {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(11, 26, 39, 0.96), rgba(18, 88, 74, 0.88)),
    linear-gradient(180deg, #14253b, #16403d);
}

.report-cover::before,
.report-preview::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.05);
}

.report-cover::after {
  content: "Rapport 2024";
  position: absolute;
  left: 28px;
  bottom: 26px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.report-preview::after {
  content: "";
  position: absolute;
  inset: auto 16px 16px auto;
  width: 52%;
  height: 46%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.report-preview-image {
  background: transparent;
}

.report-preview-image::before,
.report-preview-image::after {
  display: none;
}

.report-cover.report-preview-image::before,
.report-cover.report-preview-image::after {
  display: none;
}

.report-cover.report-preview-image img,
.report-preview-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  padding: 12px;
  object-fit: contain;
}

.document-card-rse {
  background: rgba(255, 255, 255, 0.94);
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.meta-row-report {
  margin-top: -2lh;
  color: var(--green);
}

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

.mini-doc {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--red);
}

.mini-doc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mini-doc-head img {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.mini-doc-head .meta-row {
  justify-content: flex-end;
  margin-left: auto;
}

.mini-doc h3 {
  font-size: 1.08rem;
  margin: 10px 0 6px;
}

.mini-doc .card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
  color: var(--red);
}

.mini-doc .card-link img {
  display: block;
  width: 26px;
  height: 26px;
  margin-left: auto;
}

.dark-section {
  background: rgba(236, 243, 252, 0.9);
  border-top: 1px solid rgba(125, 152, 194, 0.18);
  border-bottom: 1px solid rgba(125, 152, 194, 0.18);
  color: var(--ink);
}

.dark-section .section-copy,
.dark-section .list-copy,
.dark-section .governance-list p {
  color: var(--muted);
}

.governance-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.governance-list {
  display: grid;
  gap: 20px;
}

.governance-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
}

.governance-item .icon-badge {
  background: transparent;
  margin-bottom: 0;
}

.governance-item .icon-badge img {
  width: 34px;
  height: 34px;
}

.governance-item p {
  margin: 4px 0 0;
}

.governance-item-audit p {
  margin-top: 0;
}

.governance-item-compliance p {
  margin-top: 0;
}

.governance-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 70px;
}

.governance-card {
  padding: 28px 24px;
  background:
    linear-gradient(135deg, rgba(31, 45, 69, 0.98), rgba(31, 45, 69, 0.94)),
    var(--navy);
  border-color: rgba(31, 45, 69, 0.1);
  color: #fff;
  text-align: center;
}

.governance-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: #fff;
}

.governance-card:nth-child(1) strong { color: #ff6a6a; }
.governance-card:nth-child(2) strong { color: #91f0aa; }
.governance-card:nth-child(3) strong { color: #b1fff3; }
.governance-card:nth-child(4) strong { color: #ff4242; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(460px, 1.08fr);
  gap: 28px;
  align-items: start;
}

.form-card,
.contact-card,
.faq-card {
  padding: 30px;
}

.implant-card {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.implant-card img,
.implant-card object,
.implant-map {
  width: 100%;
  height: auto;
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
}

.form-card {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 24, 40, 0.08);
}

.form-card-quote {
  justify-self: end;
  width: 100%;
  max-width: 760px;
  margin-top: -18px;
}

.form-card h2 {
  color: var(--red);
  font-size: clamp(2rem, 3vw, 3rem);
}

.form-card-quote button[type="submit"] {
  display: block;
  margin: 0 auto;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.92rem;
  color: #344054;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(16, 24, 40, 0.12);
  background: #fbfcff;
  border-radius: 0;
  padding: 14px 16px;
  color: var(--ink);
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.consent {
  display: flex;
  gap: 10px;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.consent span {
  font-size: 0.8rem;
}

.consent input {
  margin-top: 3px;
}

.contact-card.dark {
  background:
    linear-gradient(135deg, rgba(31, 45, 69, 0.98), rgba(31, 45, 69, 0.94)),
    var(--navy);
  color: #fff;
}

.contact-card.dark p,
.contact-card.dark a {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.contact-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
}

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

.cred-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: center;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.contact-badge strong {
  color: var(--red);
}

.cta {
  padding: 92px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(209, 18, 23, 0.16), transparent 18%),
    linear-gradient(135deg, #1f2d45, #1a2437 60%, #142138);
  color: #fff;
  text-align: center;
}

.page-home .cta {
  background: transparent;
}

.page-services .cta {
  background: transparent;
}

.page-rse .cta {
  background: transparent;
}

.cta p {
  margin: 18px auto 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.cta-actions {
  justify-content: center;
}

.site-footer {
  padding: 34px 0 24px;
  background: #162133;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
}

.page-rse .footer-bottom {
  border-top-color: rgba(166, 225, 193, 0.16);
}

.footer-bottom p {
  margin: 0;
}

.status-message {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 700;
}

.scroll-top-button {
  position: fixed;
  right: calc(18px + env(safe-area-inset-right, 0px) + var(--scroll-top-offset-right, 0px));
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px !important;
  background:
    linear-gradient(145deg, rgba(31, 45, 69, 0.96), rgba(16, 28, 49, 0.92)),
    rgba(16, 28, 49, 0.94);
  backdrop-filter: blur(14px);
  box-shadow:
    0 18px 34px rgba(16, 28, 49, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.94);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.scroll-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top-button:hover {
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow:
    0 22px 40px rgba(16, 28, 49, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-2px) scale(1);
}

.scroll-top-button-icon {
  position: relative;
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

.scroll-top-button-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 2px;
  height: 12px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-45deg);
}

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

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .social-grid,
  .governance-grid,
  .cred-grid,
  .document-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-card-quote {
    justify-self: stretch;
    max-width: none;
    margin-top: 0;
  }

  .services-grid,
  .stack-grid,
  .faq-grid,
  .stat-grid,
  .mini-doc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rse-grid,
  .rse-grid-bottom {
    grid-template-columns: 1fr;
  }

  .page-rse .rse-grid {
    display: grid;
    gap: 22px;
  }

  .page-rse .rse-grid > .rse-card-photo,
  .page-rse .rse-grid > .rse-card.green {
    flex: initial;
  }

  .page-rse .rse-grid .rse-card {
    height: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual,
  .media-panel {
    min-height: 420px;
  }

  .page-rse .stat-strip {
    margin-top: -36px;
  }

  .page-rse .rse-wide-band {
    height: 148px;
    margin-top: -92px;
  }

  .rse-card-photo-title {
    white-space: normal;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    display: flex;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    border: 1px solid rgba(16, 24, 40, 0.08);
  }

  .site-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .button-nav {
    margin: 10px 0 0;
  }

  .hero-grid,
  .field-grid,
  .services-grid,
  .stack-grid,
  .faq-grid,
  .stat-grid,
  .mini-doc-grid,
  .image-duo {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

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

  .hero-card-top,
  .hero-card-bottom,
  .hero-card-center,
  .hero-ribbon {
    position: relative;
    inset: auto;
    width: auto;
    margin: 18px;
  }

  .page-rse .stat-strip {
    margin-top: -24px;
  }

  .page-rse .rse-wide-band {
    height: 104px;
    margin-top: -52px;
  }

  .page-rse .metric-card {
    min-height: 172px;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 10px;
  }

}

@media (max-width: 560px) {
  body {
    padding-top: 76px;
  }

  .nav-shell {
    min-height: 76px;
  }

  .brand-copy > span {
    display: none;
  }

  .hero {
    padding: 56px 0;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-contact h1 {
    white-space: normal;
  }

  .hero-contact p {
    white-space: normal;
  }

  .section {
    padding: 82px 0;
  }

  .form-card,
  .contact-card,
  .faq-card,
  .document-card,
  .service-card,
  .stack-card,
  .metric-card,
  .rse-card {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }

  .scroll-top-button {
    right: calc(14px + env(safe-area-inset-right, 0px) + var(--scroll-top-offset-right, 0px));
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    width: 52px;
    height: 52px;
  }
}

.hero-card,
.panel-badge,
.report-tile,
.contact-card,
.service-card,
.metric-card,
.faq-card,
.document-card,
.governance-card,
.stack-card,
.rse-card,
.mini-doc,
.form-card,
.media-panel,
.mini-panel,
.report-cover,
.report-preview,
.stack-card-photo,
.glass-card {
  border-radius: 0 !important;
}
