

:root {
  --navy-950: #081630;
  --navy-900: #0B1E3D;
  --navy-800: #122A52;
  --navy-700: #1B3868;
  --gold: #D98E3B;
  --gold-light: #E8B36A;
  --rouge: #C80F2E;
  --cream: #F7F5F0;
  --white: #FFFFFF;
  --ink: #0B1E3D;
  --ink-soft: #4C5A76;
  --line: rgba(255, 255, 255, .10);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius: 14px;
  --maxw: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px
}

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold)
}

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin: 10px 0 14px
}

.sec {
  padding: 88px 0
}

.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px
}

.sec-head p {
  color: var(--ink-soft)
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .04em;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
  border: none
}

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

.btn-gold,
.btn-ghost {
  position: relative;
  overflow: hidden;
  isolation: isolate
}

.btn-gold::after,
.btn-ghost::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .5) 48%, rgba(255, 255, 255, .5) 52%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .6s ease;
  pointer-events: none;
  z-index: 1
}

.btn-gold:hover::after,
.btn-ghost:hover::after {
  transform: translateX(120%)
}

.btn-gold:active,
.btn-ghost:active {
  transform: scale(.97)
}

.btn-gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  color: var(--navy-950);
  box-shadow: 0 8px 28px rgba(217, 142, 59, .35)
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .35)
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light)
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s
}

.nav.scrolled {
  background: rgba(8, 22, 48, .92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, .35)
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  transition: height .3s ease
}

.nav.compact .nav-in {
  height: 78px
}

.nav-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width .1s linear
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white)
}

.brand img {
  height: 58px;
  width: 58px;
  object-fit: contain;
  background: var(--white);
  border-radius: 10px;
  padding: 4px
}

.brand-txt b {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: .06em;
  display: block;
  line-height: 1
}

.brand-txt span {
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-light)
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none
}

.nav-links a {
  color: rgba(255, 255, 255, .85);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  border-color: var(--gold)
}

.mnav a.active {
  color: var(--gold-light)
}

.nav-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 142, 59, .14);
  border: 1px solid rgba(217, 142, 59, .5);
  color: var(--gold-light);
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 17px;
  transition: background .2s
}

.nav-tel:hover {
  background: rgba(217, 142, 59, .28)
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px
}

.burger span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 6px 8px;
  border-radius: 2px;
  transition: .3s
}

.mnav {
  display: none;
  position: fixed;
  inset: 78px 0 auto 0;
  z-index: 99;
  background: rgba(8, 22, 48, .98);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 18px 24px 28px;
  flex-direction: column;
  gap: 4px
}

.mnav.open {
  display: flex
}

.mnav a {
  color: var(--white);
  padding: 13px 6px;
  border-bottom: 1px solid var(--line);
  font-weight: 500
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(8, 22, 48, .62) 0%, rgba(8, 22, 48, .2) 55%, transparent 100%), var(--navy-950);
  overflow: hidden
}

.hero-parallax {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform
}

@media(min-width:768px) {
  .hero-parallax {
    top: -150px;
    bottom: -150px
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('logos/hero-cdpf.jpg') center right/cover no-repeat;
  transform-origin: center right;
  animation: heroZoom 9s ease-in-out infinite alternate;
  will-change: transform
}

@keyframes heroZoom {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.07)
  }
}

.hero-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(232, 179, 106, .16) 45%, rgba(255, 255, 255, .10) 50%, rgba(232, 179, 106, .16) 55%, transparent 70%);
  background-size: 260% 260%;
  background-position: 0% 50%;
  animation: heroShine 7s ease-in-out infinite
}

@keyframes heroShine {

  0%,
  100% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(8, 22, 48, .55))
}

.blueprint {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .16;
  mix-blend-mode: screen;
  background-image:
    repeating-linear-gradient(0deg, rgba(232, 179, 106, .35) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(90deg, rgba(232, 179, 106, .35) 0 1px, transparent 1px 88px);
  -webkit-mask-image: radial-gradient(1100px 700px at 20% 30%, #000 0%, transparent 72%);
  mask-image: radial-gradient(1100px 700px at 20% 30%, #000 0%, transparent 72%);
}

.phero .blueprint {
  opacity: .12
}

.hero-in {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 20px;
  max-width: var(--maxw);
  padding: 150px 24px 100px;
  width: 100%
}

.hero-in>div:first-child {
  max-width: 600px
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
  color: var(--white)
}

.hero h1 .gold {
  color: var(--gold-light)
}

.hero-sub {
  color: rgba(255, 255, 255, .78);
  max-width: 520px;
  margin: 20px 0 30px;
  font-size: 17px;
  font-weight: 300
}

.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin: 0 0 34px
}

.hstat b {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--gold-light);
  display: block;
  line-height: 1
}

.hstat span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .04em
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 420px;
  transition: transform .3s ease-out
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  animation: breathe 7s ease-in-out infinite
}

.glow-orange {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(232, 179, 106, .55), transparent 70%);
  top: 8%;
  right: 6%
}

.glow-white {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, .30), transparent 70%);
  bottom: 4%;
  right: 34%;
  animation-delay: 3.5s
}

@keyframes breathe {

  0%,
  100% {
    transform: scale(1);
    opacity: .45
  }

  50% {
    transform: scale(1.12);
    opacity: .7
  }
}

@media (prefers-reduced-motion: reduce) {

  .glow,
  .aurora-halo,
  .hero-bg,
  .hero-shine,
  .hero-visual,
  [data-reveal],
  .tsm-track,
  .nav-in,
  .steps-line,
  .step-num,
  .gallery-card img {
    animation: none !important;
    transition: none !important
  }

  .hero-bg {
    transform: scale(1)
  }

  .steps-grid--wired .steps-line {
    transform: scaleX(1)
  }

  .hero-shine {
    display: none
  }
}

.sec--aurora,
.sec--aurora-deep {
  position: relative
}

.sec--aurora {
  background: #EEF3FA !important
}

.sec--aurora-deep {
  background: var(--white) !important
}

.sec--aurora>.wrap,
.sec--aurora-deep>.wrap {
  position: relative;
  z-index: 1
}

.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none
}

.aurora-halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate
}

.aurora-halo--1 {
  width: 480px;
  height: 480px;
  top: -140px;
  left: -100px;
  animation-name: auroraDrift1;
  animation-duration: 24s
}

.aurora-halo--2 {
  width: 420px;
  height: 420px;
  bottom: -160px;
  right: -80px;
  animation-name: auroraDrift2;
  animation-duration: 19s;
  animation-delay: -4s
}

.aurora-halo--3 {
  width: 520px;
  height: 520px;
  top: 8%;
  right: 6%;
  animation-name: auroraDrift3;
  animation-duration: 29s;
  animation-delay: -9s
}

.aurora-halo--4 {
  width: 380px;
  height: 380px;
  bottom: 6%;
  left: 4%;
  animation-name: auroraDrift4;
  animation-duration: 21s;
  animation-delay: -2s
}

@keyframes auroraDrift1 {
  from {
    transform: translate(0, 0) scale(1)
  }

  to {
    transform: translate(4%, -5%) scale(1.06)
  }
}

@keyframes auroraDrift2 {
  from {
    transform: translate(0, 0) scale(1)
  }

  to {
    transform: translate(-5%, 4%) scale(1.05)
  }
}

@keyframes auroraDrift3 {
  from {
    transform: translate(0, 0) scale(1)
  }

  to {
    transform: translate(3%, 4%) scale(1.07)
  }
}

@keyframes auroraDrift4 {
  from {
    transform: translate(0, 0) scale(1)
  }

  to {
    transform: translate(-4%, -3%) scale(1.04)
  }
}

.sec--aurora .aurora-halo--1,
.sec--aurora .aurora-halo--2 {
  background: radial-gradient(circle, rgba(255, 255, 255, .85), transparent 70%)
}

.sec--aurora .aurora-halo--3 {
  background: radial-gradient(circle, rgba(220, 230, 245, .85), transparent 70%)
}

.sec--aurora .aurora-halo--4 {
  background: radial-gradient(circle, rgba(217, 142, 59, .06), transparent 70%)
}

.sec--aurora-deep .aurora-halo--1,
.sec--aurora-deep .aurora-halo--3 {
  background: radial-gradient(circle, rgba(238, 243, 250, .9), transparent 70%)
}

.sec--aurora-deep .aurora-halo--2 {
  background: radial-gradient(circle, rgba(220, 230, 245, .8), transparent 70%)
}

.sec--aurora-deep .aurora-halo--4 {
  background: radial-gradient(circle, rgba(217, 142, 59, .06), transparent 70%)
}

@media(max-width:767px) {
  .aurora-halo {
    filter: blur(50px)
  }

  .aurora-halo--3,
  .aurora-halo--4 {
    display: none
  }
}

.services {
  background: var(--cream)
}

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

.serv-card {
  background: var(--white);
  border: 1px solid #E9E4D8;
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s
}

.serv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(11, 30, 61, .12);
  border-color: var(--gold)
}

.serv-ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-950));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light)
}

.serv-card h3 {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 600;
  margin-bottom: 8px
}

.serv-card p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5
}

.devis {
  background: linear-gradient(160deg, rgba(11, 30, 61, .93), rgba(8, 22, 48, .96)), url('images/renovation-globale.webp') center/cover;
  position: relative;
  overflow: hidden
}

.devis::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 142, 59, .16), transparent 70%);
  top: -160px;
  left: -120px
}

.devis-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2
}

.devis-txt {
  color: var(--white)
}

.devis-txt blockquote {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.6vw, 27px);
  line-height: 1.4;
  font-weight: 400
}

.devis-txt blockquote .gold {
  color: var(--gold-light)
}

.devis-txt footer {
  margin-top: 18px;
  color: rgba(255, 255, 255, .6);
  font-size: 14px
}

.devis-card {
  background: var(--white);
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4)
}

.devis-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy-900)
}

.devis-card .sub {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 4px 0 20px
}

.f-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.f-grid .full {
  grid-column: 1/-1
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 5px
}

.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E4E0D6;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: #FBFAF7;
  transition: border-color .2s
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold)
}

.consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--ink-soft);
  margin: 14px 0
}

.consent input {
  margin-top: 3px;
  accent-color: var(--gold)
}

.devis-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 15px
}

.f-legal {
  text-align: center;
  font-size: 11.5px;
  color: #98A0B3;
  margin-top: 10px
}

.partners {
  background: var(--white)
}

.logo-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px
}

.logo-chip {
  background: var(--white);
  border: 1px solid #ECE7DC;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  width: 150px;
  text-align: center;
  transition: transform .2s, box-shadow .2s
}

.logo-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(11, 30, 61, .10)
}

.logo-chip img {
  max-height: 48px;
  max-width: 118px;
  object-fit: contain;
  filter: grayscale(60%) opacity(.85);
  transition: filter .3s ease, transform .3s ease
}

.logo-chip:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.08)
}

.logo-band.logo-marquee {
  display: block;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent)
}

.logo-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 14px;
  animation: logoMarquee 35s linear infinite;
  will-change: transform
}

.logo-band.logo-marquee:hover .logo-track {
  animation-play-state: paused
}

@keyframes logoMarquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.blocs {
  background: var(--cream)
}

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

.bloc {
  border-radius: var(--radius);
  padding: 34px 28px;
  background: linear-gradient(160deg, rgba(18, 42, 82, .90), rgba(8, 22, 48, .95)), var(--photo, linear-gradient(160deg, var(--navy-800), var(--navy-950))) center/cover;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease
}

.bloc:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 142, 59, .55);
  box-shadow: 0 26px 54px rgba(0, 0, 0, .35)
}

.bloc::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 142, 59, .20), transparent 70%);
  bottom: -90px;
  right: -70px;
  transition: transform .5s ease
}

.bloc:hover::after {
  transform: scale(1.3)
}

.bloc h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600
}

.bloc p {
  font-size: 17px;
  color: rgba(255, 255, 255, .75);
  flex: 1
}

.bloc a {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-block;
  transition: transform .25s ease, color .2s ease
}

.bloc a:hover {
  text-decoration: underline;
  transform: translateX(5px);
  color: var(--white)
}

.bloc-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(217, 142, 59, .16);
  border: 1px solid rgba(217, 142, 59, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: transform .3s ease, background .3s ease
}

.bloc:hover .bloc-ico {
  transform: scale(1.1) rotate(-6deg);
  background: rgba(217, 142, 59, .3)
}

.certifs {
  background: var(--white);
  padding: 56px 0;
  border-top: 1px solid #F0EBE0
}

.certifs .logo-chip {
  height: 78px;
  width: 130px
}

.zones {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  position: relative;
  overflow: hidden
}

.zones::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  border: 1px solid rgba(217, 142, 59, .25);
  top: 50%;
  right: -180px;
  transform: translateY(-50%)
}

.zones::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, .14);
  top: 50%;
  right: -70px;
  transform: translateY(-50%)
}

.zones-in {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 2
}

.zones h2 .gold {
  color: var(--gold-light)
}

.zones p {
  color: rgba(255, 255, 255, .75);
  max-width: 480px
}

.regions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 30px
}

.region {
  font-size: 12.5px;
  padding: 8px 15px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .05)
}

.region.gold {
  border-color: rgba(217, 142, 59, .55);
  color: var(--gold-light);
  background: rgba(217, 142, 59, .10)
}

.zone-badge {
  text-align: center
}

.zone-badge .ring {
  width: 230px;
  height: 230px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(217, 142, 59, .55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(217, 142, 59, .10), transparent 70%)
}

.zone-badge b {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--gold-light);
  line-height: 1
}

.zone-badge span {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  max-width: 150px
}

.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, .75);
  padding: 70px 0 0;
  font-size: 14px
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line)
}

.foot-brand img {
  height: 52px;
  width: 52px;
  background: var(--white);
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 14px
}

.foot-brand p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 260px
}

.footer h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer ul a {
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  transition: color .2s
}

.footer ul a:hover {
  color: var(--gold-light)
}

.foot-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start
}

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

.fsoc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .8);
  transition: .2s
}

.fsoc:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px)
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 22px 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .45)
}

.foot-bottom a:hover {
  color: var(--gold-light)
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease
}

[data-reveal].in {
  opacity: 1;
  transform: none
}

@media(max-width:1024px) {
  .serv-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .blocs-grid {
    grid-template-columns: 1fr
  }

  .hero-in {
    grid-template-columns: 1fr;
    padding-top: 120px
  }

  .hero-visual {
    display: none
  }

  .nav-links {
    display: none
  }

  .burger {
    display: block
  }
}

@media(max-width:680px) {
  .serv-grid {
    grid-template-columns: 1fr
  }

  .devis-in,
  .zones-in,
  .foot-grid {
    grid-template-columns: 1fr
  }

  .f-grid {
    grid-template-columns: 1fr
  }

  .nav-tel span {
    display: none
  }

  .sec {
    padding: 64px 0
  }
}

@media(max-width:420px) {
  .brand-txt span {
    display: none
  }

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

  .brand-txt b {
    font-size: 17px
  }
}

.page {
  display: none
}

.page.active {
  display: block;
  animation: pagein .4s ease
}

@keyframes pagein {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.nav-links .has-drop {
  position: relative
}

.drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  background: rgba(8, 22, 48, .97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 14px;
  padding: 10px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  z-index: 50
}

.has-drop:hover .drop,
.has-drop:focus-within .drop,
.has-drop.open .drop {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0)
}

.drop a {
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  padding: 10px 14px;
  border-radius: 9px;
  cursor: pointer;
  transition: background .15s, color .15s
}

.drop a:hover,
.drop a.active {
  background: rgba(217, 142, 59, .14);
  color: var(--gold-light)
}

.mnav {
  max-height: calc(100vh - 78px);
  overflow-y: auto
}

.mnav-group {
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 16px 6px 6px;
  border-bottom: 1px solid var(--line)
}

.mnav a {
  cursor: pointer
}

.phero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 66px;
  background: radial-gradient(900px 420px at 80% 0%, #1E3E78 0%, transparent 55%), linear-gradient(160deg, var(--navy-900), var(--navy-950))
}

.phero .glow {
  top: -60px;
  right: 4%
}

.phero .eyebrow {
  margin-bottom: 10px
}

.phero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.14;
  color: var(--white);
  max-width: 820px
}

.phero h1 em,
.phero h1 span {
  font-style: normal;
  color: var(--gold-light)
}

.phero-sub {
  color: rgba(255, 255, 255, .75);
  max-width: 640px;
  margin-top: 14px;
  font-weight: 300;
  font-size: 16.5px
}

.pbody {
  background: var(--cream);
  padding: 64px 0 80px
}

.prose {
  max-width: 980px
}

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(23px, 3vw, 31px);
  color: var(--navy-900);
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold)
}

.prose h2:first-child {
  margin-top: 0
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--navy-900);
  margin: 26px 0 8px
}

.prose h4 {
  font-size: 15px;
  color: var(--navy-800);
  margin: 18px 0 6px;
  letter-spacing: .02em
}

.prose p {
  color: var(--ink-soft);
  margin: 0 0 14px;
  max-width: 760px
}

.prose strong,
.prose b {
  color: var(--navy-900)
}

.prose ul.check {
  list-style: none;
  margin: 14px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.prose ul.check li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft)
}

.prose ul.check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(217, 142, 59, .15);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center
}

.prose .pimg {
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(8, 22, 48, .18);
  margin: 22px 0
}

.prose .plink {
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 14.5px;
  text-align: left
}

.prose .plink:hover {
  text-decoration: underline
}

.prose .btn {
  margin: 8px 8px 8px 0
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(8, 22, 48, .08)
}

.prose th {
  background: var(--navy-900);
  color: var(--white);
  text-align: left;
  padding: 12px 16px;
  font-size: 13px;
  letter-spacing: .05em
}

.prose td {
  padding: 12px 16px;
  border-bottom: 1px solid #EFEAE0;
  color: var(--ink-soft);
  font-size: 14px
}

.prose .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0
}

.prose .card {
  background: var(--white);
  border: 1px solid #E9E4D8;
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform .2s, box-shadow .2s
}

.prose .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(8, 22, 48, .12)
}

.prose .card h3,
.prose .card h4 {
  margin-top: 0
}

.prose .card p {
  font-size: 16px;
  margin-bottom: 0
}

.prose .v2form {
  background: var(--white);
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: 0 24px 60px rgba(8, 22, 48, .14);
  border: 1px solid #EDE8DC;
  margin: 26px 0;
  max-width: 720px
}

.prose .form-title {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--navy-900);
  margin: 18px 0 12px
}

.prose .form-title:first-child {
  margin-top: 0
}

.v2form .field {
  margin-bottom: 12px
}

.v2form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 5px
}

.v2form input:not([type=checkbox]):not([type=radio]),
.v2form select,
.v2form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E4E0D6;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: #FBFAF7;
  transition: border-color .2s
}

.v2form input:focus,
.v2form select:focus,
.v2form textarea:focus {
  outline: none;
  border-color: var(--gold)
}

.file-row {
  display: flex;
  align-items: center;
  gap: 8px
}

.v2form input[type=file] {
  flex: 1;
  min-width: 0;
  padding: 8px;
  cursor: pointer;
  font-size: 13px;
  color: var(--ink-soft)
}

.file-clear {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #E4E0D6;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s
}

.file-clear:hover {
  border-color: var(--rouge);
  color: var(--rouge);
  background: rgba(200, 15, 46, .06)
}

.file-clear[hidden] {
  display: none
}

.v2form input[type=file]::file-selector-button {
  margin-right: 12px;
  padding: 9px 18px;
  border: none;
  border-radius: 100px;
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  color: var(--navy-950);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  cursor: pointer;
  transition: opacity .2s
}

.v2form input[type=file]::file-selector-button:hover {
  opacity: .85
}

.v2form .file-hint {
  display: block;
  font-size: 11px;
  color: #98A0B3;
  margin-top: 6px
}

.field-highlight {
  animation: fieldPulse 1.6s ease
}

@keyframes fieldPulse {
  0% {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(217, 142, 59, .22)
  }

  100% {
    border-color: #E4E0D6;
    box-shadow: 0 0 0 0 rgba(217, 142, 59, 0)
  }
}

@media (prefers-reduced-motion: reduce) {
  .field-highlight {
    animation: none;
    border-color: var(--gold)
  }
}

.v2form .f-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.v2form .consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin: 14px 0
}

.v2form .consent input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--gold)
}

.v2form .radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 6px 0 16px
}

.v2form .radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  border: 1.5px solid #E4E0D6;
  border-radius: 100px;
  padding: 9px 16px;
  cursor: pointer;
  transition: border-color .2s, background .2s
}

.v2form .radio-row label:has(input:checked) {
  border-color: var(--gold);
  background: rgba(217, 142, 59, .08)
}

.v2form .radio-row input {
  accent-color: var(--gold)
}

.v2form .btn {
  width: 100%;
  justify-content: center;
  margin: 6px 0 0
}

.v2form .f-legal {
  text-align: center;
  font-size: 11.5px;
  color: #98A0B3;
  margin-top: 10px
}

.cta-band {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  text-align: center;
  padding: 66px 24px;
  position: relative;
  overflow: hidden
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 142, 59, .16), transparent 70%);
  top: -160px;
  right: -100px
}

.cta-band h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(24px, 3.4vw, 34px);
  margin-bottom: 8px;
  position: relative
}

.cta-band p {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 24px;
  position: relative
}

.cta-band .btn {
  position: relative
}

@media(max-width:1200px) {
  .nav-links {
    display: none
  }

  .burger {
    display: block
  }
}

@media(max-width:900px) {
  .prose .cards {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:640px) {
  .prose .cards {
    grid-template-columns: 1fr
  }

  .v2form .f-grid {
    grid-template-columns: 1fr
  }

  .phero {
    padding: 120px 0 50px
  }
}

.zone-map img {
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
  border: 1px solid rgba(217, 142, 59, .30)
}

@media(max-width:1024px) {
  .hero-bg {
    background-size: contain;
    background-position: center right;
    background-color: var(--navy-950);
    animation: heroDrift 10s ease-in-out infinite alternate;
    transform: none
  }

  .hero-shine {
    background-size: 320% 320%
  }
}

@keyframes heroDrift {
  from {
    background-position: center right
  }

  to {
    background-position: 42% center
  }
}

@media(max-width:900px) {
  .hero-in>div:first-child {
    max-width: 100%
  }
}

.prose>section.pg-block {
  margin-top: 64px
}

.prose>section.pg-block:first-of-type {
  margin-top: 0
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: center
}

.two-col-media {
  position: relative;
  align-self: stretch
}

.two-col-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(8, 22, 48, .18);
  margin: 0
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px
}

.stat-box {
  background: var(--white);
  border: 1px solid #E9E4D8;
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  transition: border-color .2s, transform .2s
}

.stat-box:hover {
  border-color: var(--gold);
  transform: translateY(-3px)
}

.stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.1
}

.stat-label {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 5px;
  line-height: 1.4
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px
}

.icon-card {
  background: var(--white);
  border: 1px solid #E9E4D8;
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .25s, box-shadow .25s, border-color .25s
}

.icon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(8, 22, 48, .12);
  border-color: var(--gold)
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(217, 142, 59, .12);
  color: var(--gold);
  margin-bottom: 16px
}

.icon-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px
}

.icon-card p {
  font-size: 16px;
  margin: 0
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px
}

.step {
  background: var(--white);
  border: 1px solid #E9E4D8;
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
  overflow: hidden
}

.step-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: rgba(217, 142, 59, .35);
  margin-bottom: 6px;
  line-height: 1
}

.step h3 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px
}

.step p {
  font-size: 13px;
  margin: 0
}

.steps-grid--wired {
  position: relative
}

.steps-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s ease;
  pointer-events: none;
  z-index: 0
}

.steps-grid--wired.in .steps-line {
  transform: scaleX(1)
}

.steps-grid--wired .step {
  position: relative;
  z-index: 1
}

.steps-grid--wired.in .step-num {
  animation: stepNumPulse .9s ease var(--pulse-delay, 0ms) 1
}

@keyframes stepNumPulse {
  0% {
    text-shadow: 0 0 0 rgba(217, 142, 59, 0);
    transform: scale(1)
  }

  45% {
    text-shadow: 0 0 18px rgba(217, 142, 59, .85), 0 0 36px rgba(217, 142, 59, .45);
    transform: scale(1.15)
  }

  100% {
    text-shadow: 0 0 0 rgba(217, 142, 59, 0);
    transform: scale(1)
  }
}

@media (max-width: 900px) {
  .steps-line {
    display: none
  }
}

.pg-cta-inline {
  background: var(--white);
  border: 1px solid #EDE8DC;
  border-radius: 22px;
  padding: 40px 36px
}

.inline-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 22px
}

.tel-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy-900);
  border: 1.5px solid #E4E0D6;
  transition: border-color .2s, color .2s, background .2s
}

.tel-line:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(217, 142, 59, .06)
}

@media(max-width:900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .two-col-media {
    order: -1
  }

  .two-col-media img {
    min-height: 220px
  }

  .icon-grid {
    grid-template-columns: 1fr
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stat-row {
    grid-template-columns: 1fr
  }

  .pg-cta-inline {
    padding: 30px 22px
  }
}

@media(max-width:520px) {
  .steps-grid {
    grid-template-columns: 1fr
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px
}

@media(max-width:1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .card-grid {
    grid-template-columns: 1fr
  }
}

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

@media(max-width:900px) {
  .num-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .num-grid {
    grid-template-columns: 1fr
  }
}

.center-cta {
  text-align: center;
  margin-top: 8px
}

.aid-card {
  background: var(--white);
  border: 1px solid #E9E4D8;
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .2s, box-shadow .2s
}

.aid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(8, 22, 48, .12)
}

.aid-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-950));
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 6px
}

.aid-card h3 {
  font-family: var(--font-display);
  font-size: 16.5px;
  color: var(--navy-900)
}

.aid-card p {
  font-size: 16px;
  flex: 1
}

.aid-highlight {
  font-size: 13px;
  color: var(--navy-900);
  background: rgba(217, 142, 59, .10);
  border-radius: 8px;
  padding: 8px 10px;
  margin: 4px 0 2px
}

.aid-highlight strong {
  color: var(--gold)
}

.pro-card {
  background: var(--white);
  border: 1px solid #E9E4D8;
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .2s, box-shadow .2s
}

.pro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(8, 22, 48, .12)
}

.pro-ico {
  font-size: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(217, 142, 59, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px
}

.pro-card h3 {
  font-family: var(--font-display);
  font-size: 16.5px;
  color: var(--navy-900)
}

.pro-card p {
  font-size: 13.5px
}

.pro-card .check {
  margin-top: auto
}

.pro-card .plink {
  margin-top: 12px
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px
}

.benefit-card {
  background: var(--white);
  border: 1px solid #E9E4D8;
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: transform .2s, box-shadow .2s
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(8, 22, 48, .12)
}

.benefit-ico {
  font-size: 28px;
  display: block;
  margin-bottom: 10px
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 15.5px;
  color: var(--navy-900);
  margin-bottom: 6px
}

.benefit-card p {
  font-size: 13px;
  margin: 0
}

@media(max-width:900px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .benefit-grid {
    grid-template-columns: 1fr
  }
}

.jobs-layout {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 40px;
  align-items: start;
  margin-top: 26px
}

.jobs-form-col {
  position: sticky;
  top: 100px
}

.jobs-form-col .v2form {
  margin: 0
}

.job-category {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 30px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(217, 142, 59, .3)
}

.job-category:first-child {
  margin-top: 0
}

.job-card {
  background: var(--white);
  border: 1px solid #E9E4D8;
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  margin-bottom: 14px;
  transition: box-shadow .2s, border-color .2s
}

.job-card:hover {
  box-shadow: 0 16px 38px rgba(8, 22, 48, .1);
  border-color: var(--gold)
}

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

.job-title {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--navy-900)
}

.job-sub {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 3px
}

.job-tag {
  flex-shrink: 0;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  background: rgba(11, 30, 61, .08);
  color: var(--navy-800)
}

.job-tag-urgent {
  background: rgba(200, 15, 46, .10);
  color: var(--rouge)
}

.job-tag-new {
  background: rgba(217, 142, 59, .14);
  color: var(--gold)
}

.job-body p {
  font-size: 16px;
  margin-bottom: 8px
}

.job-body .check {
  margin-bottom: 0
}

.job-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #F0EBE0;
  flex-wrap: wrap
}

.job-salary {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy-900)
}

.job-apply {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: background .2s, color .2s
}

.job-apply:hover {
  background: var(--gold);
  color: var(--white)
}

@media(max-width:900px) {
  .jobs-layout {
    grid-template-columns: 1fr
  }

  .jobs-form-col {
    position: static
  }
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 26px
}

.split-card {
  background: var(--white);
  border: 1.5px solid #E9E4D8;
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease
}

.split-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 46px rgba(8, 22, 48, .12)
}

.split-card:nth-child(1) {
  background: linear-gradient(165deg, #FFFDF9, #FBF3E5)
}

.split-card:nth-child(1):hover {
  border-color: var(--gold)
}

.split-card:nth-child(2) {
  background: linear-gradient(165deg, #F8FAFD, #ECF1F8)
}

.split-card:nth-child(2):hover {
  border-color: var(--navy-700)
}

.split-ico {
  font-size: 30px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-950));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform .3s ease, box-shadow .3s ease
}

.split-card:nth-child(1) .split-ico {
  background: linear-gradient(140deg, var(--gold-light), var(--gold))
}

.split-card:hover .split-ico {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 26px rgba(8, 22, 48, .22)
}

.split-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--navy-900);
  margin-bottom: 8px
}

.split-card .plink {
  margin-top: 16px
}

.split-card .plink::after {
  content: "→";
  display: inline-block;
  margin-left: 6px;
  transition: transform .25s ease
}

.split-card:hover .plink::after {
  transform: translateX(5px)
}

@media(max-width:700px) {
  .split-grid {
    grid-template-columns: 1fr
  }
}

.info-table {
  margin-top: 22px;
  border-top: 1px solid #EFEAE0
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #EFEAE0;
  font-size: 13.5px
}

.info-label {
  color: var(--ink-soft)
}

.info-value {
  color: var(--navy-900);
  font-weight: 600;
  text-align: right
}

.mission-media {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.mission-media img {
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(8, 22, 48, .18)
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.value-item {
  background: var(--white);
  border: 1px solid #E9E4D8;
  border-radius: 12px;
  padding: 16px
}

.value-ico {
  font-size: 30px;
  display: block;
  margin-bottom: 6px
}

.value-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy-900);
  margin-bottom: 4px
}

.value-item p {
  font-size: 12px;
  margin: 0
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 26px
}

.brand-card {
  background: var(--white);
  border: 1px solid #ECE7DC;
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  transition: transform .2s, box-shadow .2s
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(11, 30, 61, .10)
}

.brand-logo {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px
}

.brand-logo img {
  max-height: 56px;
  max-width: 100%;
  object-fit: contain;
  margin: 0
}

.brand-badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.2;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--navy-900);
  overflow-wrap: break-word;
}

.brand-card:nth-child(3n+2) .brand-badge,
.logo-chip:nth-child(3n+2) .brand-badge {
  color: var(--gold)
}

.brand-card:nth-child(3n) .brand-badge,
.logo-chip:nth-child(3n) .brand-badge {
  color: var(--rouge)
}

.brand-cat {
  font-size: 11px;
  color: var(--ink-soft)
}

@media(max-width:1024px) {
  .brand-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:560px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.cert-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px
}

.cert-item {
  background: var(--white);
  border: 1px solid #E9E4D8;
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.cert-logo {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 10px;
  background: #FBFAF7;
  border: 1px solid #F0EBE0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px
}

.cert-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: 0
}

.cert-text h3 {
  font-family: var(--font-display);
  font-size: 15.5px;
  color: var(--navy-900);
  margin-bottom: 5px
}

.cert-text p {
  font-size: 13px;
  margin: 0
}

@media(max-width:700px) {
  .cert-list {
    grid-template-columns: 1fr
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.info-card {
  background: var(--white);
  border: 1px solid #E9E4D8;
  border-radius: var(--radius);
  padding: 20px 22px
}

.info-card-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px
}

.info-card a {
  color: var(--navy-900);
  font-weight: 600;
  font-size: 15px
}

.info-card p {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 6px
}

.tag-row .tag {
  font-size: 11.5px;
  padding: 5px 11px;
  border-radius: 100px;
  background: #F3EFE4;
  color: var(--navy-800)
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 26px
}

.article-card {
  background: var(--white);
  border: 1px solid #E9E4D8;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(8, 22, 48, .14)
}

.article-media {
  aspect-ratio: 16/10;
  overflow: hidden
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  margin: 0
}

.article-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.article-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px
}

.article-meta .tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(217, 142, 59, .12);
  color: var(--gold)
}

.article-date {
  font-size: 11.5px;
  color: var(--ink-soft)
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--navy-900);
  margin-bottom: 8px;
  line-height: 1.3
}

.article-body p {
  font-size: 13px;
  flex: 1
}

.article-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  margin-top: 12px
}

@media(max-width:1024px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:640px) {
  .article-grid {
    grid-template-columns: 1fr
  }
}

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

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 14px 34px rgba(8, 22, 48, .14)
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  transition: transform .4s
}

.gallery-card:hover img {
  transform: scale(1.06)
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(8, 22, 48, .92), transparent);
  color: var(--white)
}

.gallery-caption b {
  font-family: var(--font-display);
  font-size: 15px;
  display: block
}

.gallery-caption span {
  font-size: 12px;
  color: rgba(255, 255, 255, .75)
}

@media(max-width:900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .gallery-grid {
    grid-template-columns: 1fr
  }
}

.faq {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.faq-item {
  background: var(--white);
  border: 1px solid #E9E4D8;
  border-radius: 12px;
  overflow: hidden
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900)
}

.faq-q::after {
  content: "+";
  font-size: 30px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease
}

.faq-a p {
  padding: 0 20px 18px;
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0
}

.faq-item.open .faq-a {
  max-height: 240px
}

.simulator {
  background: var(--white);
  border: 1px solid #EDE8DC;
  border-radius: 22px;
  padding: 36px 34px;
  margin-top: 26px;
  box-shadow: 0 24px 60px rgba(8, 22, 48, .1)
}

.sim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 6px
}

.sim-result {
  margin-top: 24px;
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  display: none
}

.sim-result.show {
  display: block
}

.sim-result .sim-amount {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--gold-light);
  line-height: 1
}

.sim-result .sim-range {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  margin-top: 6px
}

.sim-note {
  font-size: 11.5px;
  color: #98A0B3;
  margin-top: 14px
}

@media(max-width:640px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .split-grid {
    grid-template-columns: 1fr
  }

  .value-grid {
    grid-template-columns: 1fr
  }

  .sim-grid {
    grid-template-columns: 1fr
  }
}

.about-cdpf {
  background: var(--white)
}

.about-in {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: center
}

.about-media img {
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(8, 22, 48, .16);
  border: 1px solid #F0EBE0
}

.about-text p {
  color: var(--ink-soft);
  margin: 16px 0 22px
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px
}

.about-point {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 22px;
  position: relative
}

.about-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold)
}

.about-point b {
  font-family: var(--font-display);
  font-size: 15.5px;
  color: var(--navy-900)
}

.about-point span {
  font-size: 13px;
  color: var(--ink-soft)
}

.btn-line {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid #DDD6C6
}

.btn-line:hover {
  border-color: var(--gold);
  color: var(--gold)
}

@media(max-width:900px) {
  .about-in {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .about-media {
    order: -1;
    max-width: 360px;
    margin: 0 auto
  }
}

.testimonials {
  background: var(--cream)
}

.tsm-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden
}

.tsm-track {
  display: flex;
  width: 100%;
  transition: transform .5s ease
}

.tsm-card {
  flex: 0 0 100%;
  min-width: 0;
  width: 100%;
  background: var(--white);
  border: 1px solid #E9E4D8;
  border-radius: 20px;
  padding: 40px 44px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(8, 22, 48, .08);
  box-sizing: border-box
}

.tsm-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px
}

.tsm-card p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  color: var(--navy-900);
  font-weight: 400
}

.tsm-author {
  margin-top: 20px
}

.tsm-author b {
  display: block;
  color: var(--navy-900);
  font-size: 14.5px
}

.tsm-author span {
  font-size: 12.5px;
  color: var(--ink-soft)
}

.tsm-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px
}

.tsm-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #E4E0D6;
  background: var(--white);
  color: var(--navy-900);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s
}

.tsm-btn:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.tsm-dots {
  display: flex;
  gap: 8px
}

.tsm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #DDD6C6;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s
}

.tsm-dot.active {
  background: var(--gold);
  transform: scale(1.3)
}

@media(max-width:640px) {
  .tsm-card {
    padding: 30px 24px
  }

  .tsm-card p {
    font-size: 16.5px
  }
}

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [role="button"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.brand-logo {
  background: var(--white);
  border-radius: 12px;
  padding: 14px 16px;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo img {
  max-height: 56px;
  max-width: 90%;
  width: auto;
  object-fit: contain;
  filter: grayscale(60%) opacity(.85);
  transition: filter .3s ease, transform .3s ease;
}
.brand-card:hover .brand-logo img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.08);
}

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

.grp-head { margin: 38px 0 18px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 16px }
.grp-head:first-of-type { margin-top: 6px }
.grp-title { font-family: var(--font-display); font-size: 24px; color: var(--navy-900); margin: 0 }
.grp-note { font-size: 17px; color: var(--slate, #4C5A76); margin: 0 }
.badge-soft { display: inline-block; background: rgba(217, 142, 59, .14); color: #8a5a1e; border: 1px solid rgba(217, 142, 59, .35); font-size: 12px; font-weight: 600; letter-spacing: .02em; padding: 3px 10px; border-radius: 999px; vertical-align: middle }
.grp-actions { text-align: center; margin: 22px 0 8px }
.btn-line { display: inline-block; padding: 11px 22px; border: 1.5px solid var(--navy-900); border-radius: 999px; color: var(--navy-900); font-weight: 600; font-size: 15px; transition: background .25s, color .25s }
.btn-line:hover { background: var(--navy-900); color: #fff }

.prod-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; margin: 26px 0 6px }
.prod-card { background: #fff; border: 1px solid rgba(11, 30, 61, .08); border-radius: 14px; padding: 18px; box-shadow: 0 10px 28px rgba(11, 30, 61, .07); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column }
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(11, 30, 61, .12) }
.prod-card .prod-img { height: 170px; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 10px; margin-bottom: 14px; overflow: hidden }
.prod-card .prod-img img { max-height: 160px; max-width: 100%; object-fit: contain; margin: 0 }
.prod-card h3 { font-size: 17px; margin: 0 0 6px; color: var(--navy-900) }
.prod-card p { font-size: 17px; line-height: 1.55; margin: 0; color: var(--slate, #4C5A76); flex: 1 }
.prod-brand { margin-top: 12px; font-size: 12px; color: #8a93a6; font-style: italic }

.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; margin: 26px 0 6px }
.hub-card { background: #fff; border: 1px solid rgba(11, 30, 61, .08); border-radius: 14px; overflow: hidden; box-shadow: 0 10px 28px rgba(11, 30, 61, .07); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; color: inherit }
.hub-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(11, 30, 61, .12) }
.hub-card .hub-img { height: 170px; overflow: hidden }
.hub-card .hub-img img { width: 100%; height: 100%; object-fit: cover; margin: 0; transition: transform .45s }
.hub-card:hover .hub-img img { transform: scale(1.05) }
.hub-card .hub-txt { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1 }
.hub-card h3 { font-size: 17px; margin: 0; color: var(--navy-900) }
.hub-card p { font-size: 17px; line-height: 1.55; margin: 0; color: var(--slate, #4C5A76); flex: 1 }
.hub-card .plink { margin-top: 8px }
.note-aides { background: rgba(217, 142, 59, .08); border-left: 3px solid var(--gold, #D98E3B); padding: 14px 18px; border-radius: 0 10px 10px 0; font-size: 14.5px; color: var(--navy-800, #14294f); margin: 22px 0 }

.nav {
  isolation: isolate;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(90deg, rgba(7,22,48,.84), rgba(18,43,82,.72));
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
  box-shadow: 0 10px 34px rgba(2,10,28,.14);
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(255,255,255,.045), transparent 35%, rgba(217,142,59,.035));
}
.nav.scrolled {
  background: linear-gradient(90deg, rgba(6,19,42,.96), rgba(14,36,72,.94));
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
  box-shadow: 0 14px 42px rgba(0,0,0,.30);
}
.nav-in {
  height: 104px;
  gap: 24px;
}
.nav.compact .nav-in { height: 82px; }
.brand {
  gap: 14px;
  flex: 0 0 auto;
  transition: transform .25s ease, filter .25s ease;
}
.brand:hover { transform: translateY(-1px); filter: brightness(1.05); }
.brand img {
  width: 64px;
  height: 64px;
  border-radius: 15px;
  padding: 5px;
  box-shadow: 0 8px 24px rgba(0,0,0,.20), inset 0 0 0 1px rgba(255,255,255,.7);
  transition: width .3s ease, height .3s ease, border-radius .3s ease;
}
.nav.compact .brand img { width: 54px; height: 54px; border-radius: 13px; }
.brand-txt b {
  font-size: 32px;
  text-shadow: 0 2px 12px rgba(0,0,0,.22);
}
.brand-txt span {
  display: block;
  margin-top: 7px;
  font-size: 11.5px;
  letter-spacing: .22em;
  white-space: nowrap;
}
.nav-links {
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 1.65vw, 32px);
  margin-left: auto;
}
.nav-links > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 0;
  border-bottom: 0;
  white-space: nowrap;
  font-size: clamp(14px, .86vw, 16px);
  font-weight: 600;
  letter-spacing: .01em;
  transition: color .22s ease, transform .22s ease;
}
.nav-links > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 12px rgba(217,142,59,.5);
  transition: left .24s ease, right .24s ease;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { transform: translateY(-1px); border-color: transparent; }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { left: 0; right: 0; }
.nav-in > div:last-child {
  flex: 0 0 auto;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.nav-tel {
  min-height: 54px;
  padding: 0 23px;
  border-color: rgba(231,167,89,.62);
  background: linear-gradient(135deg, rgba(217,142,59,.18), rgba(217,142,59,.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 8px 24px rgba(0,0,0,.15);
  white-space: nowrap;
  font-size: 17px;
  letter-spacing: .025em;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.nav-tel:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(217,142,59,.30), rgba(217,142,59,.15));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 12px 30px rgba(0,0,0,.22), 0 0 0 4px rgba(217,142,59,.08);
}

.nav-tel-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(232,179,106,.22));
}
.drop {
  top: calc(100% + 12px);
  min-width: 270px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(9,27,58,.98), rgba(13,39,77,.96));
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 24px 70px rgba(0,0,0,.46), inset 0 1px 0 rgba(255,255,255,.06);
}
.drop::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translateX(-50%) rotate(45deg);
  background: rgba(9,27,58,.98);
  border-left: 1px solid rgba(255,255,255,.12);
  border-top: 1px solid rgba(255,255,255,.12);
}
.drop a {
  position: relative;
  border-radius: 11px;
  padding: 11px 14px;
  font-size: 14.5px;
  border: 0;
}
.drop a:hover,
.drop a.active {
  transform: translateX(3px);
  background: linear-gradient(90deg, rgba(217,142,59,.18), rgba(217,142,59,.07));
}
.burger {
  border-radius: 12px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
}
.burger span { transform-origin: center; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(.4); }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-progress { height: 2px; box-shadow: 0 0 14px rgba(217,142,59,.65); }

@media (min-width: 981px) {
  .nav-links { display: flex !important; }
  .burger { display: none !important; }
  .mnav { display: none !important; }
}

@media (min-width: 981px) and (max-width: 1450px) {
  .nav-in { gap: 15px; }
  .brand { gap: 10px; }
  .brand img { width: 56px; height: 56px; }
  .brand-txt b { font-size: 27px; }
  .brand-txt span { font-size: 9.8px; letter-spacing: .18em; }
  .nav-links { gap: 16px; }
  .nav-links > li > a { font-size: 13.5px; }
  .nav-tel { min-height: 50px; padding: 0 17px; font-size: 15px; }
}

@media (max-width: 980px) {
  .nav-in { height: 84px; }
  .nav.compact .nav-in { height: 74px; }
  .nav-links { display: none !important; }
  .burger { display: block !important; }
  .brand img { width: 52px; height: 52px; border-radius: 12px; }
  .brand-txt b { font-size: 25px; }
  .brand-txt span { font-size: 9px; }
  .mnav { inset: 84px 0 auto 0; max-height: calc(100vh - 84px); }
  .nav.compact .mnav { inset: 74px 0 auto 0; max-height: calc(100vh - 74px); }
}

@media (max-width: 640px) {
  .brand-txt span { display: none; }
  .nav-tel {
    width: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }
  .nav-tel span { display: none; }
  .nav-tel-icon { width: 21px; height: 21px; flex-basis: 21px; }
}

.nav:not(.scrolled) {
  background: transparent !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border-bottom-color: rgba(255,255,255,.07) !important;
}
.nav:not(.scrolled)::before {
  opacity: 0 !important;
}
.nav.scrolled::before {
  opacity: 1;
}
.nav::before {
  transition: opacity .3s ease;
}

.home-trust {
  position: relative;
  z-index: 3;
  background: #fff;
  border-bottom: 1px solid rgba(11, 30, 61, .08);
  box-shadow: 0 16px 38px rgba(11, 30, 61, .06);
}
.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.trust-item {
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px 24px;
  border-right: 1px solid rgba(11, 30, 61, .08);
}
.trust-item:last-child { border-right: 0; }
.trust-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(217, 142, 59, .18), rgba(217, 142, 59, .06));
  border: 1px solid rgba(217, 142, 59, .32);
  color: #9b641f;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.trust-item b {
  display: block;
  color: var(--navy-900);
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 4px;
}
.trust-item span:last-child {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.4;
}

.home-products {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(217, 142, 59, .10), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.home-products-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .65fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 42px;
}
.home-products-head h2 { max-width: 760px; }
.home-products-head > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
  padding-bottom: 10px;
}
.home-product-grid {
  display: grid;
  grid-template-columns: 1.32fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.home-product-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(11, 30, 61, .09);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(11, 30, 61, .09);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.home-product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(217, 142, 59, .34);
  box-shadow: 0 26px 68px rgba(11, 30, 61, .15);
}
.home-product-media {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(145deg, #e9eef5, #fff);
}
.home-product-card--featured .home-product-media { height: 320px; }
.home-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.home-product-card:hover .home-product-media img { transform: scale(1.045); }
.home-product-media--contain { padding: 24px; }
.home-product-media--contain img { object-fit: contain; }
.product-tag {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(7, 22, 48, .88);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}
.home-product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 25px 26px 27px;
}
.product-kicker {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-product-body h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.15;
}
.home-product-body > p:not(.product-kicker) {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.product-benefits {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 18px 0 5px;
}
.product-benefits li {
  position: relative;
  padding-left: 22px;
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 500;
}
.product-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}
.product-link {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
}
.product-link span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(217, 142, 59, .14);
  color: #9b641f;
  transition: transform .25s ease, background .25s ease;
}
.home-product-card:hover .product-link span {
  transform: translateX(3px);
  background: rgba(217, 142, 59, .24);
}

.home-process {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(217, 142, 59, .15), transparent 30%),
    linear-gradient(135deg, #07162f 0%, #102c58 58%, #0a1d3d 100%);
}
.home-process .sec-head h2,
.home-process .sec-head p { color: #fff; }
.home-process .sec-head > p:last-child { color: rgba(255,255,255,.69); }
.home-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.home-process-grid::before {
  content: "";
  position: absolute;
  top: 37px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,179,106,.7), transparent);
}
.process-card {
  position: relative;
  z-index: 1;
  padding: 26px 22px 24px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.process-card > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), var(--gold-light));
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(217,142,59,.25);
}
.process-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
}
.process-card p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.6;
}
.process-action { margin-top: 34px; text-align: center; }

@media (max-width: 1100px) {
  .home-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(11,30,61,.08); }
  .home-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-product-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.05fr .95fr; }
  .home-product-card--featured .home-product-media { height: 100%; min-height: 390px; }
  .home-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-process-grid::before { display: none; }
}

@media (max-width: 720px) {
  .home-trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(11,30,61,.08); padding: 18px 20px; }
  .trust-item:last-child { border-bottom: 0; }
  .home-products-head { grid-template-columns: 1fr; gap: 8px; margin-bottom: 28px; }
  .home-products-head > p { font-size: 15px; }
  .home-product-grid { grid-template-columns: 1fr; }
  .home-product-card--featured { grid-column: auto; display: flex; }
  .home-product-card--featured .home-product-media,
  .home-product-media { height: 240px; min-height: 0; }
  .home-product-body { padding: 22px 21px 24px; }
  .home-product-body h3 { font-size: 24px; }
  .home-process-grid { grid-template-columns: 1fr; }
}

.service-page { background: var(--cream); }
.service-wide { max-width: 1180px; }
.service-body { padding-top: 82px; }
.service-hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: 170px 0 92px;
  isolation: isolate;
  background-position: center;
  background-size: cover;
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}
.phero--travaux::before { background-image: url('images/toiture.webp'); }
.phero--charpente::before { background-image: url('images/toiture.webp'); background-position: center 40%; }
.phero--humidite::before { background-image: url('images/residence.webp'); }
.phero--projects::before { background-image: url('images/ite.webp'); }
.service-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4,15,34,.96) 0%, rgba(7,24,52,.91) 45%, rgba(6,21,45,.58) 72%, rgba(6,21,45,.72) 100%),
    linear-gradient(180deg, rgba(4,14,31,.35), rgba(4,14,31,.84));
}
.service-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(4,15,34,.50));
}
.service-hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr);
  gap: 80px;
  align-items: center;
}
.service-hero-copy { max-width: 780px; }
.service-hero-copy h1 { max-width: 800px; font-size: clamp(42px, 5.5vw, 72px); line-height: 1.02; }
.service-hero-copy .phero-sub { max-width: 690px; font-size: 18px; line-height: 1.7; }
.service-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.service-ghost { color: #fff !important; border-color: rgba(255,255,255,.35) !important; background: rgba(255,255,255,.06) !important; }
.service-ghost:hover { background: rgba(255,255,255,.13) !important; border-color: rgba(255,255,255,.65) !important; }
.service-hero-panel {
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background: rgba(5,20,45,.55);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 30px 80px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.07);
}
.service-panel-label { margin: 0 !important; padding: 11px 13px 15px; color: rgba(255,255,255,.55) !important; font-size: 11px !important; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.service-hero-panel > a {
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 10px 12px;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.10);
  border-radius: 13px;
  transition: background .22s ease, transform .22s ease;
}
.service-hero-panel > a:hover { transform: translateX(3px); background: rgba(255,255,255,.08); }
.service-hero-panel > a span { color: var(--gold-light); font-family: var(--font-display); font-size: 13px; }
.service-hero-panel > a b { font-size: 15px; font-weight: 500; }
.service-hero-panel > a i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(217,142,59,.16); color: var(--gold-light); font-style: normal; }
.service-hero-panel--compact { padding: 22px; }
.hero-check { display: flex; gap: 12px; align-items: center; padding: 13px 6px; border-top: 1px solid rgba(255,255,255,.10); }
.hero-check span { flex: 0 0 29px; width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: rgba(217,142,59,.18); color: var(--gold-light); font-weight: 800; }
.hero-check p { margin: 0; color: rgba(255,255,255,.88); font-size: 15px; }

.service-intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .65fr);
  gap: 70px;
  align-items: end;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(11,30,61,.11);
}
.service-intro h2, .service-section-head h2, .detail-intro-copy h2, .treatment-stage-head h2, .solution-matrix-head h2, .project-documentation h2, .service-method h2, .service-split-callout h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: var(--font-display);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.13;
  color: var(--navy-900);
}
.service-intro h2 em, .service-section-head h2 em, .detail-intro-copy h2 em, .treatment-stage-head h2 em, .solution-matrix-head h2 em, .project-documentation h2 em, .service-method h2 em, .service-split-callout h2 em { color: #b2732d; font-style: normal; }
.service-intro > p { margin: 0; max-width: none; font-size: 17px; line-height: 1.75; }
.symptom-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin: 30px 0 92px; }
.symptom-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 25px 23px;
  color: inherit;
  border: 1px solid rgba(11,30,61,.09);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 42px rgba(11,30,61,.07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.symptom-card:hover { transform: translateY(-6px); border-color: rgba(217,142,59,.40); box-shadow: 0 24px 55px rgba(11,30,61,.13); }
.symptom-no { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 38px; border-radius: 50%; color: #a86822; background: rgba(217,142,59,.13); font-family: var(--font-display); font-weight: 700; }
.symptom-card h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.25; }
.symptom-card p { margin: 0 0 20px; font-size: 14px; line-height: 1.62; }
.symptom-card b { margin-top: auto; color: #9a621f; font-size: 13px; }
.service-section-head { max-width: 820px; margin: 0 0 34px; }
.service-section-head > p:last-child { max-width: 720px; margin-top: 14px; font-size: 17px; line-height: 1.7; }
.service-showcase-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-bottom: 96px; }
.service-showcase-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 360px;
  border: 1px solid rgba(11,30,61,.09);
  border-radius: 24px;
  background: #fff;
  color: inherit;
  box-shadow: 0 18px 52px rgba(11,30,61,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-showcase-card:hover { transform: translateY(-6px); box-shadow: 0 27px 66px rgba(11,30,61,.14); }
.service-showcase-card--wide { grid-column: 1 / -1; grid-template-columns: 1.15fr .85fr; min-height: 440px; }
.service-showcase-media { position: relative; min-height: 100%; overflow: hidden; background: #e9eef4; }
.service-showcase-media img { width: 100%; height: 100%; object-fit: cover; margin: 0; transition: transform .55s ease; }
.service-showcase-card:hover .service-showcase-media img { transform: scale(1.04); }
.service-showcase-media--contain { padding: 28px; background: linear-gradient(145deg, #edf1f6, #fff); }
.service-showcase-media--contain img { object-fit: contain; }
.service-showcase-media > span { position: absolute; top: 18px; left: 18px; padding: 7px 11px; border-radius: 999px; background: rgba(6,22,48,.86); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.service-showcase-copy { display: flex; flex-direction: column; justify-content: center; padding: 34px; }
.service-showcase-copy h3 { margin: 0 0 12px; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.12; }
.service-showcase-copy p:not(.product-kicker) { margin: 0 0 24px; font-size: 15px; line-height: 1.7; }
.service-showcase-copy b { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; color: var(--navy-900); font-size: 14px; }
.service-showcase-copy b i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: rgba(217,142,59,.14); color: #9a621f; font-style: normal; }
.service-method { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; padding: 56px; margin-bottom: 16px; border-radius: 30px; color: #fff; background: linear-gradient(135deg, #071730, #133663); box-shadow: 0 30px 76px rgba(7,23,48,.22); }
.service-method h2 { color: #fff; }
.service-method-copy > p:not(.eyebrow) { margin: 18px 0 26px; color: rgba(255,255,255,.68); line-height: 1.7; }
.service-method-steps { display: grid; gap: 10px; }
.service-method-steps article { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: center; padding: 17px 18px; border: 1px solid rgba(255,255,255,.10); border-radius: 16px; background: rgba(255,255,255,.055); }
.service-method-steps article > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(217,142,59,.17); color: var(--gold-light); font-family: var(--font-display); font-weight: 700; }
.service-method-steps h3 { margin: 0 0 4px; color: #fff; font-size: 17px; }
.service-method-steps p { margin: 0; color: rgba(255,255,255,.64); font-size: 13px; }

.detail-intro-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 70px; align-items: center; margin-bottom: 88px; }
.detail-intro-copy p:not(.eyebrow) { max-width: 720px; margin-top: 18px; font-size: 17px; line-height: 1.75; }
.detail-product-visual { overflow: hidden; position: relative; padding: 28px; border: 1px solid rgba(11,30,61,.09); border-radius: 26px; background: linear-gradient(145deg, #e9eef5, #fff); box-shadow: 0 24px 64px rgba(11,30,61,.12); }
.detail-product-visual > img { width: 100%; height: 290px; object-fit: contain; margin: 0; }
.detail-product-tag { position: absolute; top: 20px; left: 20px; z-index: 2; padding: 7px 11px; border-radius: 999px; background: #0a2348; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.detail-product-visual > div { padding: 18px 3px 3px; border-top: 1px solid rgba(11,30,61,.09); }
.detail-product-visual b { color: var(--navy-900); }
.detail-product-visual p { margin: 5px 0 0; font-size: 14px; }
.diagnostic-grid, .cause-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 88px; }
.diagnostic-card, .cause-card { padding: 25px 22px; border: 1px solid rgba(11,30,61,.09); border-radius: 20px; background: #fff; box-shadow: 0 15px 42px rgba(11,30,61,.065); }
.diagnostic-card > span, .cause-card > span { display: block; margin-bottom: 30px; color: #aa6d27; font-family: var(--font-display); font-size: 28px; }
.diagnostic-card h3, .cause-card h3 { margin: 0 0 9px; font-size: 19px; }
.diagnostic-card p, .cause-card p { margin: 0; font-size: 14px; line-height: 1.62; }
.cause-card small { display: block; margin-top: 18px; padding-top: 15px; border-top: 1px solid rgba(11,30,61,.08); color: #8c5a20; line-height: 1.45; }
.treatment-stage { padding: 55px; margin: 0 0 88px; border-radius: 30px; background: #fff; border: 1px solid rgba(11,30,61,.09); box-shadow: 0 24px 68px rgba(11,30,61,.08); }
.treatment-stage-head { max-width: 730px; margin-bottom: 35px; }
.treatment-stage-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.treatment-stage-grid article { position: relative; padding: 23px 20px; border-radius: 18px; background: #f5f7fa; }
.treatment-stage-grid article > span { display: block; margin-bottom: 29px; color: #ac6f28; font-family: var(--font-display); font-size: 24px; }
.treatment-stage-grid h3 { margin: 0 0 8px; font-size: 18px; }
.treatment-stage-grid p { margin: 0; font-size: 13px; line-height: 1.55; }
.service-split-callout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; padding: 50px 54px; margin-bottom: 88px; border-radius: 28px; background: linear-gradient(135deg, rgba(217,142,59,.14), rgba(255,255,255,.86)); border: 1px solid rgba(217,142,59,.25); }
.service-split-callout p:not(.eyebrow) { margin-top: 15px; line-height: 1.7; }
.service-split-links { display: grid; gap: 12px; }
.service-split-links a { display: flex; justify-content: space-between; gap: 14px; padding: 17px 18px; border-radius: 15px; background: #fff; color: var(--navy-900); font-weight: 700; box-shadow: 0 12px 28px rgba(11,30,61,.07); }
.service-split-links span { color: #a96b25; }
.service-faq { margin-bottom: 20px; }

.product-pocket-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-bottom: 90px; }
.product-pocket { overflow: hidden; display: grid; grid-template-columns: .82fr 1.18fr; min-height: 345px; border: 1px solid rgba(11,30,61,.09); border-radius: 24px; background: #fff; box-shadow: 0 18px 52px rgba(11,30,61,.08); }
.product-pocket--featured { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; min-height: 430px; }
.product-pocket-media { position: relative; padding: 25px; background: linear-gradient(145deg, #e9eef5, #fff); }
.product-pocket-media img { width: 100%; height: 100%; object-fit: contain; margin: 0; }
.product-pocket-media > span { position: absolute; top: 18px; left: 18px; padding: 7px 11px; border-radius: 999px; background: #0a2348; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-pocket-copy { display: flex; flex-direction: column; justify-content: center; padding: 31px; }
.product-pocket-copy h3 { margin: 0 0 12px; font-size: 29px; line-height: 1.12; }
.product-pocket-copy p:not(.product-kicker) { margin: 0 0 18px; font-size: 14px; line-height: 1.7; }
.product-pocket-copy ul { list-style: none; display: grid; gap: 8px; margin: 8px 0 0; }
.product-pocket-copy li { position: relative; padding-left: 20px; color: var(--navy-800); font-size: 14px; }
.product-pocket-copy li::before { content: "✓"; position: absolute; left: 0; color: #a96b25; font-weight: 800; }
.product-pocket-copy a { display: flex; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 16px; color: var(--navy-900); font-weight: 700; font-size: 13px; }
.solution-matrix { padding: 52px; margin-bottom: 88px; border-radius: 30px; color: #fff; background: linear-gradient(135deg, #07172f, #12345f); }
.solution-matrix h2 { color: #fff; }
.solution-matrix-grid { margin-top: 34px; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; overflow: hidden; }
.matrix-row { display: grid; grid-template-columns: 1fr 1fr 1.1fr; }
.matrix-row span { padding: 16px 18px; border-right: 1px solid rgba(255,255,255,.09); border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.76); font-size: 13px; }
.matrix-row span:last-child { border-right: 0; }
.matrix-row--head span { border-top: 0; color: var(--gold-light); font-weight: 700; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

.project-filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 34px; }
.project-filter { padding: 11px 17px; border: 1px solid rgba(11,30,61,.14); border-radius: 999px; background: #fff; color: var(--navy-800); font-family: var(--font-body); font-size: 13px; font-weight: 700; cursor: pointer; transition: .22s ease; }
.project-filter:hover, .project-filter.is-active { color: #fff; border-color: var(--navy-900); background: var(--navy-900); box-shadow: 0 9px 24px rgba(11,30,61,.15); }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-bottom: 90px; }
.project-card { overflow: hidden; display: flex; flex-direction: column; border: 1px solid rgba(11,30,61,.09); border-radius: 23px; background: #fff; box-shadow: 0 16px 48px rgba(11,30,61,.08); transition: transform .28s ease, box-shadow .28s ease, opacity .2s ease; }
.project-card:hover { transform: translateY(-6px); box-shadow: 0 25px 62px rgba(11,30,61,.14); }
.project-card.is-hidden { display: none; }
.project-media { position: relative; height: 250px; overflow: hidden; }
.project-media img { width: 100%; height: 100%; object-fit: cover; margin: 0; transition: transform .55s ease; }
.project-card:hover .project-media img { transform: scale(1.045); }
.project-media > span { position: absolute; top: 17px; left: 17px; padding: 7px 11px; border-radius: 999px; background: rgba(6,22,48,.86); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.project-copy { display: flex; flex-direction: column; flex: 1; padding: 23px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 13px; }
.project-meta span { padding: 5px 8px; border-radius: 999px; background: rgba(217,142,59,.12); color: #93601f; font-size: 10px; font-weight: 700; }
.project-copy h3 { margin: 0 0 9px; font-size: 21px; }
.project-copy p { margin: 0 0 18px; font-size: 14px; line-height: 1.62; }
.project-copy a { margin-top: auto; color: #97611f; font-size: 13px; font-weight: 700; }
.project-documentation { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; padding: 52px; border-radius: 30px; background: #fff; border: 1px solid rgba(11,30,61,.09); box-shadow: 0 24px 68px rgba(11,30,61,.08); }
.project-documentation > div:first-child > p:not(.eyebrow) { margin-top: 16px; line-height: 1.7; }
.documentation-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.documentation-flow article { padding: 20px 17px; border-radius: 17px; background: #f3f6f9; }
.documentation-flow article span { display: block; margin-bottom: 28px; color: #a86a24; font-family: var(--font-display); font-size: 24px; }
.documentation-flow b { display: block; color: var(--navy-900); }
.documentation-flow p { margin: 6px 0 0; font-size: 12px; line-height: 1.5; }

@media (max-width: 1050px) {
  .service-hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .service-hero { min-height: 760px; }
  .service-hero-panel { max-width: 650px; }
  .symptom-grid, .diagnostic-grid, .cause-grid, .treatment-stage-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-showcase-card, .service-showcase-card--wide { grid-column: auto; grid-template-columns: 1fr; min-height: auto; }
  .service-showcase-media { min-height: 285px; }
  .service-method, .detail-intro-grid, .service-split-callout, .project-documentation { grid-template-columns: 1fr; }
  .product-pocket, .product-pocket--featured { grid-column: auto; grid-template-columns: 1fr; }
  .product-pocket-media { min-height: 280px; }
  .project-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .service-hero { min-height: auto; padding: 138px 0 72px; }
  .service-hero-copy h1 { font-size: clamp(37px, 12vw, 52px); }
  .service-hero-copy .phero-sub { font-size: 16px; }
  .service-hero-panel { padding: 10px; }
  .service-body { padding-top: 58px; }
  .service-intro { grid-template-columns: 1fr; gap: 18px; }
  .symptom-grid, .diagnostic-grid, .cause-grid, .treatment-stage-grid, .project-grid { grid-template-columns: 1fr; }
  .symptom-grid { margin-bottom: 68px; }
  .service-showcase-grid, .product-pocket-grid { grid-template-columns: 1fr; }
  .service-showcase-media { min-height: 240px; }
  .service-showcase-copy { padding: 25px 22px; }
  .service-method, .treatment-stage, .solution-matrix, .service-split-callout, .project-documentation { padding: 31px 23px; }
  .detail-intro-grid { gap: 35px; margin-bottom: 65px; }
  .detail-product-visual > img { height: 240px; }
  .matrix-row { grid-template-columns: 1fr; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.09); }
  .matrix-row:first-child { border-top: 0; }
  .matrix-row span { padding: 7px 15px; border: 0; }
  .matrix-row--head { display: none; }
  .matrix-row span:nth-child(1) { color: var(--gold-light); font-weight: 700; }
  .documentation-flow { grid-template-columns: 1fr; }
  .project-media { height: 235px; }
}

.pochette {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  border: 1px solid rgba(11,30,61,.09);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(11,30,61,.08);
  margin-top: 24px;
}
.pochette + .pochette { margin-top: 22px; }
.pochette-img {
  background: linear-gradient(145deg, #edf2f8, #f7f9fc);
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 390px;
}
.pochette-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0;
}
.pochette-body { padding: 38px 42px; display: flex; flex-direction: column; justify-content: center; }
.pochette-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.pbadge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 16px; border-radius: 999px; border: 1px solid rgba(15,35,72,.12);
  background: #f4f6fb; color: #173564; font-size: 13px; font-weight: 700;
}
.pbadge--gold { color: #b46f22; background: rgba(217,142,59,.10); border-color: rgba(217,142,59,.28); }
.pochette-body h3 { margin: 0 0 10px; font-size: clamp(30px, 3vw, 48px); line-height: 1.05; }
.pochette-tag { margin: 0 0 22px; color: #3f5780; font-size: 17px; font-weight: 700; }
.pochette-body p:not(.pochette-tag):not(.eyebrow) { margin: 0 0 18px; line-height: 1.75; }
.pochette-points {
  list-style: none; padding: 0; margin: 6px 0 0; display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 22px;
}
.pochette-points li {
  position: relative; padding-left: 28px; font-size: 15px; line-height: 1.55; color: var(--navy-800);
}
.pochette-points li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: #cf8735; font-weight: 800; font-size: 20px;
}
.pochette-foot { display: flex; flex-wrap: wrap; gap: 14px 20px; align-items: center; margin-top: 28px; }
.pochette-foot .prod-brand { margin: 0; }
.photo-grid-3 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-bottom: 88px;
  max-width: 900px; margin-left: auto; margin-right: auto;
}
.photo-grid-3 figure, .before-after-grid figure {
  margin: 0; border-radius: 24px; overflow: hidden; background: #fff; border: 1px solid rgba(11,30,61,.08);
  box-shadow: 0 18px 54px rgba(11,30,61,.07);
}
.photo-grid-3 img, .before-after-grid img { width: 100%; height: 100%; object-fit: cover; margin: 0; }
.photo-grid-3 figcaption, .before-after-grid figcaption {
  padding: 16px 18px 18px; color: var(--navy-800); font-size: 14px; line-height: 1.55;
}
.before-after-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-bottom: 88px; }
.before-after-grid--electrical { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.illustration-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-bottom: 60px; }
.illustration-grid figure { position: relative; display: flex; flex-direction: column; margin: 0; border-radius: 24px; overflow: hidden; background: #fff; border: 1px solid rgba(11,30,61,.08); box-shadow: 0 18px 54px rgba(11,30,61,.07); }
.illustration-grid img { width: 100%; height: 220px; object-fit: cover; margin: 0; display: block; }
.illustration-grid figcaption { flex: 1; padding: 14px 16px 16px; color: var(--navy-800); font-size: 14px; line-height: 1.5; }
.illustration-tag { position: absolute; top: 14px; left: 14px; z-index: 2; max-width: calc(100% - 28px); padding: 6px 10px; border-radius: 999px; background: rgba(10,35,72,.88); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media(max-width:1100px){ .illustration-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media(max-width:820px){ .illustration-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media(max-width:600px){ .illustration-grid{ grid-template-columns: 1fr; } .illustration-grid img{ height: 250px; } }
.before-after-card { position: relative; min-height: 560px; }
.before-after-card img { height: 100%; }
.before-after-label {
  position: absolute; top: 16px; left: 16px; z-index: 2; padding: 10px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #fff;
}
.before-after-label--before { background: rgba(10,35,72,.92); }
.before-after-label--after { background: rgba(201, 121, 28, .95); }
.before-after-grid--new { margin-top: -50px; }
@media (max-width: 760px) {
  .before-after-grid--new { margin-top: -34px; }
  .before-after-grid--electrical { grid-template-columns: 1fr; }
}
.diag-benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px 18px; margin: 20px 0 4px; }
.diag-benefit {
  display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: var(--navy-800);
}
.diag-icon {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 42px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(217,142,59,.12); color: #c27b2b; font-size: 20px; font-weight: 800;
}
@media (max-width: 1100px) {
  .pochette, .pochette-points, .photo-grid-3 { grid-template-columns: 1fr; }
  .pochette-img { min-height: 300px; }
}
@media (max-width: 760px) {
  .pochette-body { padding: 26px 22px; }
  .pochette-img { padding: 25px; min-height: 240px; }
  .before-after-grid, .diag-benefits { grid-template-columns: 1fr; }
  .before-after-card { min-height: 400px; }
}

.diagbox { display: grid; grid-template-columns: 1.25fr 1fr; background: #fff; border: 1px solid rgba(11,30,61,.09); border-radius: 18px; overflow: hidden; box-shadow: 0 16px 42px rgba(11,30,61,.10); margin: 26px 0 }
.diagbox-body { padding: 32px 34px 28px }
.diagbox-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--navy-800,#14294f); margin: 0 0 8px }
.diagbox h3 { font-family: var(--font-display); font-size: 30px; line-height: 1.15; color: var(--navy-900,#0B1E3D); margin: 0 0 6px }
.diagbox h3 .free { display: inline-block; background: var(--gold,#D98E3B); color: #fff; padding: 2px 14px; border-radius: 8px; transform: rotate(-1.5deg); font-size: 24px; letter-spacing: .04em }
.diagbox-sub { font-size: 15px; color: var(--slate,#4C5A76); margin: 0 0 20px; line-height: 1.55 }
.diagbox-sub b { color: var(--navy-900,#0B1E3D) }
.diag-avantages { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 14px; margin: 0 0 22px }
.diag-av { text-align: center }
.diag-av .icon-circle { margin: 0 auto 8px }
.diag-av span { display: block; font-size: 12.5px; font-weight: 600; line-height: 1.35; color: var(--navy-800,#14294f) }
.diagbox-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; background: var(--navy-900,#0B1E3D); margin: 0 -34px -28px; padding: 16px 34px; }
.diagbox-cta p { margin: 0; color: #fff; font-size: 14px; font-weight: 600 }
.diagbox-cta p small { display: block; color: var(--gold-light,#E8B36B); font-weight: 600; font-size: 12.5px; letter-spacing: .04em }
.diagbox-media { position: relative; min-height: 320px }
.diagbox-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; margin: 0 }
@media (max-width: 860px) {
  .diagbox { grid-template-columns: 1fr }
  .diagbox-media { min-height: 220px; order: -1 }
  .diagbox-cta { margin: 0 -24px -24px; padding: 14px 24px }
  .diagbox-body { padding: 26px 24px 24px }
}

.phero--energie::before { background-image: url('images/renovation-globale.webp'); }
.phero--pac::before { background-image: url('images/pac.webp'); }
.phero--ite::before { background-image: url('images/ite.webp'); }
.phero--combles::before { background-image: url('images/isolation.webp'); }
.phero--vmc::before { background-image: url('images/vmc.webp'); }
.phero--velux::before { background-image: url('images/velux.webp'); }
.phero--pv::before { background-image: url('images/photovoltaique.webp'); }
.phero--rg::before { background-image: url('images/renovation-interieure.webp'); }

.phero--aidesbg::before { background-image: url('images/factures.webp'); }
.phero--calc::before { background-image: url('images/calcul.webp'); }
.phero--conseil::before { background-image: url('images/conseil.webp'); }
.phero--mairie::before { background-image: url('images/mairie.webp'); }
.phero--dpe::before { background-image: url('images/dpe.webp'); }
.phero--rdv::before { background-image: url('images/rendez-vous.webp'); }
.phero--tertiaire::before { background-image: url('images/tertiaire.webp'); }

.home-process, .devis {
  max-width: 1240px;
  width: calc(100% - 48px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 76px rgba(7, 23, 48, .22);
}
.sec-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.13;
}
.sec-head h2 .gold, .sec-head h2 em { color: #b2732d; font-style: normal }
@media (max-width: 760px) {
  .home-process, .devis { width: calc(100% - 24px); border-radius: 22px }
}

.service-showcase-card--wide { min-height: 320px; }
.service-showcase-card--wide .service-showcase-media { min-height: 320px; }
.service-showcase-copy { justify-content: center; }
.service-showcase-copy b { margin-top: 6px; }
.service-showcase-copy p:not(.product-kicker) { margin-bottom: 16px; }
.service-showcase-card--wide .service-showcase-copy { padding: 30px 38px; max-width: 560px; }

.service-showcase-media:not(.service-showcase-media--contain) img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-modern {
  position: relative;
  min-height: 100svh;
  padding: 112px 18px 30px;
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(900px 520px at 76% 2%, rgba(38, 78, 145, .34), transparent 68%),
    radial-gradient(520px 360px at 10% 90%, rgba(217, 142, 59, .13), transparent 72%),
    #06142d;
  overflow: hidden;
}

.home-hero-modern::before,
.home-hero-modern::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.home-hero-modern::before {
  width: 320px;
  height: 320px;
  right: -120px;
  top: 90px;
  border: 1px solid rgba(232, 179, 106, .14);
  box-shadow: 0 0 0 58px rgba(255,255,255,.018), 0 0 0 118px rgba(255,255,255,.012);
}

.home-hero-modern::after {
  width: 210px;
  height: 210px;
  left: -110px;
  bottom: 30px;
  background: rgba(217, 142, 59, .08);
}

.home-hero-shell {
  position: relative;
  z-index: 1;
  width: min(1500px, 100%);
  min-height: calc(100svh - 142px);
  margin: auto;
  display: grid;
  grid-template-rows: minmax(600px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 38px;
  background: #091b38;
  box-shadow: 0 38px 100px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.08);
}

.home-hero-stage {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.home-hero-logo {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #091a36;
}

.home-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  margin: 0;
  transform: scale(.96);
  transform-origin: right center;
  filter: saturate(.97) contrast(1.02);
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,16,36,.99) 0%, rgba(5,16,36,.96) 30%, rgba(5,16,36,.73) 48%, rgba(5,16,36,.14) 73%, rgba(5,16,36,.02) 100%),
    linear-gradient(180deg, rgba(5,16,36,.10), rgba(5,16,36,.22));
}

.home-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.55) 45%, transparent 76%);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.55) 45%, transparent 76%);
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  width: min(640px, 50%);
  padding: 72px clamp(34px, 5vw, 82px);
}

.home-hero-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.76);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.home-hero-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 5px rgba(232,179,106,.12);
}

.home-hero-kicker {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.home-hero-copy h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 600;
  line-height: .99;
  letter-spacing: -.035em;
  color: #fff;
}

.home-hero-copy h1 em {
  display: block;
  padding-top: 6px;
  color: var(--gold-light);
  font-style: italic;
  font-weight: 500;
}

.home-hero-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.home-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  font-weight: 600;
  transition: color .2s, transform .2s;
}

.home-hero-link span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--gold-light);
}

.home-hero-link:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.home-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 610px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.13);
}

.home-hero-metrics > div {
  min-width: 0;
  padding-right: 18px;
}

.home-hero-metrics > div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,.12);
}

.home-hero-metrics b {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.home-hero-metrics span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.54);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-hero-signature {
  position: absolute;
  z-index: 3;
  right: clamp(28px, 4vw, 62px);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(6,19,42,.60);
  color: #fff;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 35px rgba(0,0,0,.22);
}

.home-hero-signature > span {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 26px;
}

.home-hero-signature b,
.home-hero-signature small {
  display: block;
}

.home-hero-signature b {
  font-size: 13px;
  letter-spacing: .04em;
}

.home-hero-signature small {
  margin-top: 2px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
}

.home-hero-trust {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255,255,255,.98);
  border-top: 1px solid rgba(255,255,255,.15);
}

.home-hero-trust-item {
  min-height: 126px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 24px 28px;
  border-right: 1px solid rgba(11,30,61,.09);
}

.home-hero-trust-item:last-child {
  border-right: 0;
}

.home-trust-symbol {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217,142,59,.34);
  border-radius: 50%;
  background: rgba(217,142,59,.08);
  color: #a8651e;
  font-family: var(--font-display);
  font-size: 23px;
}

.home-trust-symbol--number {
  font-size: 17px;
  font-weight: 700;
}

.home-hero-trust-item b,
.home-hero-trust-item small {
  display: block;
}

.home-hero-trust-item b {
  color: var(--navy-950);
  font-size: 15px;
  line-height: 1.2;
}

.home-hero-trust-item small {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 12.5px;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .home-hero-shell {
    grid-template-rows: minmax(630px, auto) auto;
  }

  .home-hero-copy {
    width: 58%;
    padding-inline: 44px;
  }

  .home-hero-copy h1 {
    font-size: clamp(46px, 6vw, 66px);
  }

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

  .home-hero-trust-item:nth-child(2) {
    border-right: 0;
  }

  .home-hero-trust-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(11,30,61,.09);
  }
}

@media (max-width: 760px) {
  .home-hero-modern {
    min-height: auto;
    padding: 94px 10px 12px;
  }

  .home-hero-shell {
    min-height: auto;
    grid-template-rows: auto auto;
    border-radius: 24px;
  }

  .home-hero-stage {
    min-height: auto;
    display: grid;
    grid-template-rows: 265px auto;
    align-items: stretch;
  }

  .home-hero-logo {
    position: relative;
    inset: auto;
    grid-row: 1;
    z-index: 0;
    height: 265px;
    overflow: hidden;
  }

  .home-hero-logo img {
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .home-hero-overlay {
    z-index: 1;
    background: linear-gradient(180deg, rgba(5,16,36,.02) 0%, rgba(5,16,36,.32) 78%, #071730 100%);
  }

  .home-hero-grid {
    display: none;
  }

  .home-hero-copy {
    z-index: 2;
    grid-row: 2;
    width: 100%;
    padding: 34px 24px 38px;
    background: #071730;
  }

  .home-hero-pill {
    margin-bottom: 22px;
    font-size: 9px;
    letter-spacing: .1em;
  }

  .home-hero-copy h1 {
    font-size: clamp(41px, 13vw, 55px);
  }

  .home-hero-lead {
    margin-top: 22px;
    font-size: 15px;
  }

  .home-hero-actions {
    align-items: flex-start;
    gap: 18px;
  }

  .home-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .home-hero-metrics {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-hero-metrics > div,
  .home-hero-metrics > div + div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 0;
    border: 0;
  }

  .home-hero-metrics b {
    font-size: 24px;
  }

  .home-hero-metrics span {
    margin-top: 0;
    text-align: right;
  }

  .home-hero-signature {
    display: none;
  }

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

  .home-hero-trust-item,
  .home-hero-trust-item:nth-child(2) {
    min-height: auto;
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(11,30,61,.09);
  }

  .home-hero-trust-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .home-hero-copy h1 { line-height: 1.04; }
  .home-hero-copy h1 em { padding-top: 14px; }
}

.home-hero-logo img {
  animation: homeLogoBreath 10s ease-in-out infinite alternate;
  will-change: transform, filter;
}

@keyframes homeLogoBreath {
  0% {
    transform: scale(.94) translate3d(0, 0, 0);
    filter: saturate(.96) contrast(1.02) brightness(.98);
  }
  50% {
    transform: scale(.985) translate3d(-.35%, -.25%, 0);
    filter: saturate(1.02) contrast(1.04) brightness(1.015);
  }
  100% {
    transform: scale(1.025) translate3d(-.7%, -.45%, 0);
    filter: saturate(1.05) contrast(1.05) brightness(1.03);
  }
}

@media (max-width: 760px) {
  .home-hero-logo img {
    animation-duration: 12s;
  }

  @keyframes homeLogoBreath {
    0% {
      transform: scale(.98) translate3d(0, 0, 0);
      filter: saturate(.97) contrast(1.02) brightness(.99);
    }
    100% {
      transform: scale(1.04) translate3d(0, -.6%, 0);
      filter: saturate(1.03) contrast(1.04) brightness(1.02);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-logo img {
    animation: none;
    transform: scale(.96);
  }
}

.home-hero-logo {
  overflow: hidden;
}

.home-hero-logo::before,
.home-hero-logo::after {
  content: "";
  position: absolute;
  inset: -8% -12% -8% 32%;
  pointer-events: none;
  z-index: 1;
  opacity: .7;
  mix-blend-mode: screen;
  transform: translate3d(16%, 0, 0);
  will-change: transform, opacity;
  -webkit-mask-image: radial-gradient(circle at 74% 48%, rgba(0,0,0,1) 0%, rgba(0,0,0,.98) 22%, rgba(0,0,0,.78) 42%, rgba(0,0,0,.18) 68%, transparent 84%);
  mask-image: radial-gradient(circle at 74% 48%, rgba(0,0,0,1) 0%, rgba(0,0,0,.98) 22%, rgba(0,0,0,.78) 42%, rgba(0,0,0,.18) 68%, transparent 84%);
}

.home-hero-logo::before {
  background:
    linear-gradient(112deg,
      transparent 0%,
      transparent 44%,
      rgba(255, 204, 102, 0) 46%,
      rgba(255, 222, 149, .14) 48%,
      rgba(255, 244, 214, .75) 50%,
      rgba(255, 212, 121, .18) 52%,
      rgba(255, 204, 102, 0) 54%,
      transparent 58%),
    linear-gradient(112deg,
      transparent 0%,
      transparent 58%,
      rgba(255, 215, 130, 0) 62%,
      rgba(255, 230, 175, .16) 65%,
      rgba(255, 247, 226, .62) 67%,
      rgba(255, 218, 130, .15) 69%,
      rgba(255, 203, 115, 0) 71%,
      transparent 75%),
    linear-gradient(112deg,
      transparent 0%,
      transparent 70%,
      rgba(255, 220, 130, 0) 73%,
      rgba(255, 244, 210, .36) 75%,
      rgba(255, 218, 115, .10) 77%,
      transparent 81%);
  filter: blur(1px) drop-shadow(0 0 18px rgba(255, 207, 112, .18));
  animation: homeGoldSweep 6.8s linear infinite;
}

.home-hero-logo::after {
  inset: 4% -6% 4% 44%;
  background:
    linear-gradient(110deg,
      transparent 0%,
      transparent 52%,
      rgba(255, 214, 120, 0) 56%,
      rgba(255, 242, 190, .14) 60%,
      rgba(255, 253, 246, .35) 62%,
      rgba(255, 223, 138, .12) 64%,
      rgba(255, 214, 120, 0) 68%,
      transparent 74%);
  filter: blur(10px);
  opacity: .42;
  animation: homeGoldSweepSoft 8.5s ease-in-out infinite;
}

@keyframes homeGoldSweep {
  0% {
    transform: translate3d(22%, 0, 0);
    opacity: 0;
  }
  8% { opacity: .18; }
  18% { opacity: .62; }
  55% { opacity: .55; }
  88% { opacity: .12; }
  100% {
    transform: translate3d(-24%, 0, 0);
    opacity: 0;
  }
}

@keyframes homeGoldSweepSoft {
  0%, 12% {
    transform: translate3d(18%, 0, 0) scaleX(1);
    opacity: 0;
  }
  25% { opacity: .22; }
  50% { opacity: .42; }
  76% { opacity: .18; }
  100% {
    transform: translate3d(-16%, 0, 0) scaleX(1.06);
    opacity: 0;
  }
}

@media (max-width: 760px) {
  .home-hero-logo::before,
  .home-hero-logo::after {
    inset: -6% -8% -6% 10%;
    -webkit-mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,.95) 0%, rgba(0,0,0,.84) 38%, rgba(0,0,0,.18) 72%, transparent 88%);
    mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,.95) 0%, rgba(0,0,0,.84) 38%, rgba(0,0,0,.18) 72%, transparent 88%);
  }

  .home-hero-logo::after {
    inset: 4% -2% 4% 18%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-logo::before,
  .home-hero-logo::after {
    animation: none;
    opacity: 0;
  }
}

#services.sec--aurora {
  background:
    radial-gradient(680px 260px at 12% 10%, rgba(216, 176, 107, .16), transparent 72%),
    radial-gradient(760px 320px at 88% 18%, rgba(58, 108, 198, .14), transparent 74%),
    linear-gradient(180deg, #edf3fb 0%, #f5f7fb 52%, #f9f7f2 100%) !important;
}

#services .sec-head h2 {
  background: linear-gradient(90deg, #112b59 0%, #0f2955 48%, #305da7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#services .grp-head {
  position: relative;
  padding-left: 20px;
}

#services .grp-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e4a350, #1d4b92);
  box-shadow: 0 8px 20px rgba(217, 142, 59, .18);
}

#services .grp-title {
  font-size: clamp(28px, 3vw, 38px);
}

#services .grp-note {
  color: #516585;
}

#services .serv-grid {
  gap: 22px;
}

#services .serv-card {
  position: relative;
  overflow: hidden;
  text-align: left;
  padding: 28px 24px 24px;
  border: 1px solid rgba(225, 217, 201, .92);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.92)),
    linear-gradient(140deg, rgba(255,255,255,.9), rgba(238,243,250,.95));
  box-shadow: 0 18px 42px rgba(11, 30, 61, .07);
}

#services .serv-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--card-accent, linear-gradient(90deg, #d98e3b, #1d4b92));
}

#services .serv-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -52px;
  top: -52px;
  border-radius: 50%;
  background: var(--card-glow, radial-gradient(circle, rgba(217, 142, 59, .12), transparent 68%));
  pointer-events: none;
}

#services .serv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(11, 30, 61, .12);
  border-color: rgba(217, 142, 59, .45);
}

#services .serv-ico {
  margin: 0 0 18px;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  color: #fff;
  background: var(--ico-bg, linear-gradient(145deg, #173768, #0b244c));
  box-shadow: 0 16px 28px rgba(16, 45, 92, .18);
}

#services .serv-card h3 {
  color: #12274d;
  font-size: 18px;
  line-height: 1.3;
}

#services .serv-card p {
  color: #4b5f7e;
  font-size: 15.5px;
  line-height: 1.58;
}

#services .serv-grid .serv-card:nth-child(4n+1) {
  --card-accent: linear-gradient(90deg, #e3a24e, #f0c77f);
  --card-glow: radial-gradient(circle, rgba(227, 162, 78, .14), transparent 68%);
  --ico-bg: linear-gradient(145deg, #e3a24e, #b87422);
}

#services .serv-grid .serv-card:nth-child(4n+2) {
  --card-accent: linear-gradient(90deg, #1f4c93, #4c7fd0);
  --card-glow: radial-gradient(circle, rgba(76, 127, 208, .15), transparent 68%);
  --ico-bg: linear-gradient(145deg, #204c93, #102f65);
}

#services .serv-grid .serv-card:nth-child(4n+3) {
  --card-accent: linear-gradient(90deg, #d98e3b, #cc4c54);
  --card-glow: radial-gradient(circle, rgba(204, 76, 84, .12), transparent 68%);
  --ico-bg: linear-gradient(145deg, #d98e3b, #a95723);
}

#services .serv-grid .serv-card:nth-child(4n+4) {
  --card-accent: linear-gradient(90deg, #214d97, #d98e3b);
  --card-glow: radial-gradient(circle, rgba(33, 77, 151, .13), transparent 68%);
  --ico-bg: linear-gradient(145deg, #15396f, #1d4b92);
}

#services .grp-actions {
  margin-top: 26px;
}

#services .btn-line {
  border-color: rgba(18, 39, 77, .22);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 24px rgba(11, 30, 61, .06);
}

#services .btn-line:hover {
  background: linear-gradient(135deg, #15386f, #0c2348);
  border-color: transparent;
}

@media (max-width: 760px) {
  #services .grp-head {
    padding-left: 16px;
  }
  #services .grp-head::before {
    top: 8px;
    height: 28px;
  }
  #services .serv-card {
    text-align: center;
    padding: 24px 18px 20px;
  }
  #services .serv-ico {
    margin: 0 auto 16px;
  }
}

#page-certifications .cert-list {
  gap: 22px;
}

#page-certifications .cert-item {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  padding: 28px;
  align-items: center;
  border: 1px solid rgba(17, 43, 89, .10);
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,249,253,.96));
  box-shadow: 0 18px 46px rgba(11, 30, 61, .07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

#page-certifications .cert-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #163f7d, #e1a04b, #c63d4e);
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .3s ease;
}

#page-certifications .cert-item::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -72px;
  top: -72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 95, 172, .11), transparent 70%);
  pointer-events: none;
}

#page-certifications .cert-item:nth-child(3n+2)::after {
  background: radial-gradient(circle, rgba(217, 142, 59, .13), transparent 70%);
}

#page-certifications .cert-item:nth-child(3n)::after {
  background: radial-gradient(circle, rgba(198, 61, 78, .10), transparent 70%);
}

#page-certifications .cert-item:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 142, 59, .38);
  box-shadow: 0 28px 60px rgba(11, 30, 61, .12);
}

#page-certifications .cert-item:hover::before {
  transform: scaleX(1);
}

#page-certifications .cert-logo {
  width: 86px;
  height: 86px;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f5f7fb);
  border: 1px solid rgba(217, 142, 59, .20);
  box-shadow: 0 12px 24px rgba(11, 30, 61, .07);
  transition: transform .28s ease, box-shadow .28s ease;
}

#page-certifications .cert-item:hover .cert-logo {
  transform: scale(1.06) rotate(-1deg);
  box-shadow: 0 18px 34px rgba(11, 30, 61, .12);
}

#page-certifications .cert-text h3 {
  font-size: 19px;
  line-height: 1.35;
}

#page-certifications .cert-text p {
  font-size: 15px;
  line-height: 1.65;
}

#page-tva .card-grid {
  max-width: 1050px;
  margin: 30px auto 0;
  align-items: stretch;
}

#page-tva .aid-card {
  min-height: 430px;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 38px 30px;
  border: 1px solid rgba(17, 43, 89, .10);
  background: linear-gradient(180deg, #fff, #f8fafc);
  box-shadow: 0 18px 46px rgba(11, 30, 61, .07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

#page-tva .aid-card:nth-child(1) { border-top: 5px solid #d9953f; }
#page-tva .aid-card:nth-child(2) { border-top: 5px solid #1d4b92; }
#page-tva .aid-card:nth-child(3) { border-top: 5px solid #c43f4f; }

#page-tva .aid-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(11, 30, 61, .13);
  border-color: rgba(217, 142, 59, .34);
}

#page-tva .aid-badge {
  width: 82px;
  height: 48px;
  margin: 0 auto 34px;
  border-radius: 14px;
  font-size: 20px;
  background: linear-gradient(145deg, #173d78, #0b244c);
  box-shadow: 0 14px 28px rgba(11, 30, 61, .16);
}

#page-tva .aid-card:nth-child(1) .aid-badge { background: linear-gradient(145deg, #e2a04a, #b96f1c); color: #fff; }
#page-tva .aid-card:nth-child(3) .aid-badge { background: linear-gradient(145deg, #c94a58, #912a38); color: #fff; }

#page-tva .aid-card h3 {
  font-size: 25px;
  line-height: 1.35;
  margin-bottom: 18px;
}

#page-tva .aid-card p {
  max-width: 270px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.72;
}

.contact-page-modern .pbody {
  background: linear-gradient(180deg, #f3f6fb 0%, #fbfaf7 100%);
}

.contact-page-modern .contact-modern-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 34px;
  align-items: start;
}

.contact-page-modern .contact-modern-grid > div:first-child {
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(17, 43, 89, .09);
  box-shadow: 0 24px 68px rgba(11, 30, 61, .08);
}

.contact-page-modern .v2form {
  margin-top: 26px;
}

.contact-page-modern .contact-info {
  gap: 18px;
}

.contact-page-modern .info-card {
  position: relative;
  overflow: hidden;
  padding: 24px 26px;
  border-radius: 20px;
  border: 1px solid rgba(17, 43, 89, .09);
  background: linear-gradient(145deg, #fff, #f7f9fc);
  box-shadow: 0 16px 40px rgba(11, 30, 61, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.contact-page-modern .info-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #1d4b92, #d98e3b);
}

.contact-page-modern .info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 142, 59, .34);
  box-shadow: 0 24px 52px rgba(11, 30, 61, .10);
}

.contact-page-modern .info-card-label {
  color: #b87422;
  font-size: 12px;
}

.contact-page-modern .info-card a {
  color: #112b59;
  font-size: 17px;
}

.contact-page-modern .tag {
  background: rgba(29, 75, 146, .08);
  border-color: rgba(29, 75, 146, .16);
  color: #173d78;
}

@media (max-width: 900px) {
  .contact-page-modern .contact-modern-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  #page-certifications .cert-item {
    min-height: auto;
    padding: 22px;
    align-items: flex-start;
  }

  #page-tva .aid-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .contact-page-modern .contact-modern-grid > div:first-child {
    padding: 24px 20px;
  }
}

.mnav {
  gap: 0;
  padding: 14px 24px 28px;
}

.mnav-main-link,
.mnav-toggle {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 10px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font: inherit;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.mnav-main-link:hover,
.mnav-main-link.active,
.mnav-toggle:hover,
.mnav-toggle.has-active,
.mnav-toggle[aria-expanded="true"] {
  color: var(--gold-light);
  background: rgba(217, 142, 59, .07);
}

.mnav-section {
  border: 0;
}

.mnav-arrow {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s ease;
}

.mnav-toggle[aria-expanded="true"] .mnav-arrow {
  transform: rotate(225deg) translate(-2px, -2px);
}

.mnav-submenu {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition: grid-template-rows .3s ease, opacity .22s ease, visibility 0s linear .3s;
}

.mnav-submenu-inner {
  min-height: 0;
  overflow: hidden;
  padding-left: 10px;
}

.mnav-section.is-open .mnav-submenu {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition: grid-template-rows .3s ease, opacity .25s ease, visibility 0s;
}

.mnav-submenu a {
  position: relative;
  display: block;
  padding: 13px 12px 13px 25px;
  color: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 15.5px;
  font-weight: 500;
}

.mnav-submenu a::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
  opacity: .75;
}

.mnav-submenu a:hover,
.mnav-submenu a.active {
  color: var(--gold-light);
  background: rgba(217, 142, 59, .06);
}

@media (prefers-reduced-motion: reduce) {
  .mnav-submenu,
  .mnav-arrow {
    transition: none;
  }
}

.pochette-img--white {
  background: #fff;
}

.pochette-img--white img {
  max-width: 86%;
  max-height: 470px;
  object-fit: contain;
}

.chemcolor-process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 24px 0 34px;
}

.chemcolor-process-card {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(11, 30, 61, .09);
  background: #fff;
  box-shadow: 0 20px 54px rgba(11, 30, 61, .08);
}

.chemcolor-process-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin: 0;
}

.chemcolor-process-card figcaption {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 22px 23px;
}

.chemcolor-process-card figcaption > span {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(217, 142, 59, .13);
  color: #b46f22;
  font-family: var(--font-display);
  font-weight: 700;
}

.chemcolor-process-card b {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-950);
  font-size: 17px;
}

.chemcolor-process-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .chemcolor-process {
    grid-template-columns: 1fr;
  }

  .pochette-img--white img {
    max-width: 94%;
  }
}

.presentation-video {
  overflow: hidden;
}

.presentation-video .sec-head {
  max-width: 760px;
}

.presentation-video .sec-head > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

.video-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, .75fr);
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: var(--navy-950);
  border: 1px solid rgba(11, 30, 61, .1);
  box-shadow: 0 28px 70px rgba(8, 22, 48, .2);
}

.video-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  background: #020712;
}

.site-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #020712;
}

.video-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 52px);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 142, 59, .2), transparent 42%),
    linear-gradient(145deg, var(--navy-900), var(--navy-950));
}

.video-panel-kicker {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.video-panel h3 {
  margin: 12px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.6vw, 34px);
  line-height: 1.16;
  font-weight: 600;
}

.video-steps {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.video-step {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
}

.video-step > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 800;
}

.video-step p {
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.55;
}

.video-step b {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 15px;
}

.video-btn {
  align-self: flex-start;
}

@media (max-width: 900px) {
  .video-showcase {
    grid-template-columns: 1fr;
    max-width: 820px;
  }

  .video-panel {
    padding: 34px;
  }

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

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

@media (max-width: 640px) {
  .presentation-video {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .presentation-video .sec-head {
    margin-bottom: 30px;
  }

  .video-showcase {
    border-radius: 20px;
  }

  .video-panel {
    padding: 28px 22px 30px;
  }

  .video-panel h3 {
    margin-bottom: 22px;
  }

  .video-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .video-step {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .video-step > span {
    width: 34px;
    height: 34px;
  }

  .video-btn {
    width: 100%;
    justify-content: center;
  }
}


/* Google reviews call-to-action */
.google-review-section {
  position: relative;
  overflow: hidden;
  padding-top: 74px;
  padding-bottom: 74px;
  background:
    radial-gradient(circle at 10% 20%, rgba(232, 179, 106, .18), transparent 34%),
    radial-gradient(circle at 92% 78%, rgba(27, 56, 104, .18), transparent 36%),
    var(--cream);
}

.google-review-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, .55fr);
  gap: 48px;
  align-items: center;
  overflow: hidden;
  padding: 48px 54px;
  border: 1px solid rgba(11, 30, 61, .10);
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 65px rgba(8, 22, 48, .12);
}

.google-review-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -115px;
  top: -135px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(217, 142, 59, .24), rgba(18, 42, 82, .10));
  pointer-events: none;
}

.google-review-copy,
.google-review-action {
  position: relative;
  z-index: 1;
}

.google-review-eyebrow {
  margin-bottom: 8px;
}

.google-review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
  color: #f5a623;
  font-size: 21px;
  line-height: 1;
  letter-spacing: .04em;
}

.google-review-copy h2 {
  max-width: 690px;
  margin-top: 8px;
  margin-bottom: 14px;
  color: var(--navy-950);
  font-size: clamp(30px, 4vw, 46px);
}

.google-review-copy > p:not(.eyebrow):not(.google-review-note) {
  max-width: 710px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.google-review-note {
  margin-top: 14px;
  color: #6b7589;
  font-size: 13px;
}

.google-review-action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

.google-review-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 70px;
  padding: 16px 20px;
  border: 1px solid rgba(11, 30, 61, .10);
  border-radius: 18px;
  background: #fff;
  color: var(--navy-900);
  box-shadow: 0 12px 30px rgba(8, 22, 48, .08);
  font-weight: 700;
  font-size: 18px;
}

.google-review-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-950);
  box-shadow: 0 8px 18px rgba(217, 142, 59, .22);
}

.google-review-badge {
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.google-review-badge:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(8, 22, 48, .12);
}

.google-review-badge:focus-visible {
  outline: 3px solid rgba(217, 142, 59, .55);
  outline-offset: 4px;
}

.google-review-btn {
  justify-content: center;
  min-height: 58px;
  padding-inline: 24px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(11, 30, 61, .20);
}

.google-review-btn:hover {
  box-shadow: 0 18px 34px rgba(11, 30, 61, .28);
}

.google-review-btn:focus-visible {
  outline: 3px solid rgba(217, 142, 59, .55);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .google-review-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px;
  }

  .google-review-action {
    display: grid;
    grid-template-columns: minmax(0, .7fr) minmax(260px, 1.3fr);
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .google-review-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .google-review-card {
    gap: 26px;
    padding: 32px 22px;
    border-radius: 22px;
  }

  .google-review-stars {
    font-size: 19px;
  }

  .google-review-copy h2 {
    font-size: 31px;
  }

  .google-review-copy > p:not(.eyebrow):not(.google-review-note) {
    font-size: 16px;
  }

  .google-review-action {
    display: flex;
  }

  .google-review-badge {
    min-height: 62px;
    font-size: 16px;
  }

  .google-review-btn {
    width: 100%;
    padding: 15px 18px;
    font-size: 15px;
  }
}

/* Correctif v34 — cartes Réalisations avec photos verticales */
.photo-grid-3 figure,
.before-after-grid figure {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.photo-grid-3 img {
  width: 100%;
  height: 520px;
  flex: 0 0 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.before-after-card {
  min-height: 0;
}
.before-after-grid img,
.before-after-card img {
  width: 100%;
  height: 520px;
  flex: 0 0 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-grid-3 figcaption,
.before-after-grid figcaption {
  flex: 1 1 auto;
}
@media (max-width: 900px) {
  .photo-grid-3 img,
  .before-after-grid img,
  .before-after-card img {
    height: 430px;
    flex-basis: 430px;
  }
}
@media (max-width: 600px) {
  .photo-grid-3 img,
  .before-after-grid img,
  .before-after-card img {
    height: 390px;
    flex-basis: 390px;
  }
}

/* Optimisation v35 — défilement et animations plus fluides */
.nav-progress {
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: none;
  will-change: transform;
}

[data-reveal] {
  transform: translate3d(0, 14px, 0);
  transition: opacity .42s ease, transform .42s ease;
}

[data-reveal].in {
  transform: translate3d(0, 0, 0);
}

.nav,
.nav.scrolled,
.drop {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.nav {
  background: linear-gradient(90deg, rgba(7,22,48,.96), rgba(18,43,82,.94));
}

.nav.scrolled {
  background: linear-gradient(90deg, rgba(6,19,42,.99), rgba(14,36,72,.98));
}

.hero-bg,
.hero-shine,
.glow,
.home-hero-logo img,
.home-hero-logo::before,
.home-hero-logo::after {
  animation: none !important;
  will-change: auto !important;
}

.home-hero-logo img {
  transform: none;
  filter: none;
}

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

@media (max-width: 1024px) {
  .logo-track {
    animation-duration: 55s;
  }
}

@media (max-width: 760px) {
  [data-reveal] {
    transform: translate3d(0, 8px, 0);
    transition-duration: .3s;
  }

  .logo-track {
    animation: none;
    transform: none;
  }
}

/* Ajustement v36 — animations équilibrées sans ralentir le défilement */
[data-reveal] {
  transition-duration: .58s;
  transition-timing-function: cubic-bezier(.22, .7, .25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: no-preference) {
  /* Animation principale conservée : respiration douce du logo d'accueil */
  .home-hero-logo img {
    animation: homeLogoBreath 13s ease-in-out infinite alternate !important;
    will-change: transform !important;
  }

  /* Un seul reflet doré, plus lent et plus léger que la version initiale */
  .home-hero-logo::before {
    display: block;
    animation: homeGoldSweep 11s linear infinite !important;
    opacity: .48;
    will-change: transform, opacity !important;
  }

  .home-hero-logo::after {
    display: none;
  }
}

@media (min-width: 1025px) and (prefers-reduced-motion: no-preference) {
  /* Mouvement très lent des grandes images de couverture sur ordinateur */
  .hero-bg {
    animation: heroZoom 18s ease-in-out infinite alternate !important;
    will-change: transform !important;
  }
}

@media (max-width: 760px) {
  [data-reveal] {
    transition-duration: .42s;
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: no-preference) {
  /* Le logo reste animé sur mobile, mais plus lentement. */
  .home-hero-logo img {
    animation-duration: 16s !important;
  }

  .home-hero-logo::before {
    animation-duration: 14s !important;
    opacity: .34;
  }
}


/* Clarification marques / réseau */
.network-note{max-width:920px;margin:22px auto 0;padding:14px 18px;border:1px solid rgba(20,48,78,.14);border-radius:14px;background:rgba(255,255,255,.72);font-size:.9rem;line-height:1.55;color:#4b5d70;text-align:center}
@media(max-width:640px){.network-note{font-size:.84rem;text-align:left}}

/* ============================================
   AFFICHAGE DES AVIS GOOGLE (3 avis clients)
   ============================================ */
.reviews-display-section {
  padding-top: 74px;
  padding-bottom: 20px;
  background: var(--white);
}

.reviews-display-head {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-display-head h2 {
  margin-top: 8px;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
}

.reviews-display-rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 18px;
  border: 1px solid rgba(11, 30, 61, .10);
  border-radius: 999px;
  background: var(--cream);
  font-size: 15px;
}

.reviews-display-rating-stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: .04em;
}

.reviews-display-rating-score {
  font-weight: 700;
  color: var(--navy-900);
}

.reviews-display-rating-count {
  color: var(--ink-soft);
}

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

.review-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  border: 1px solid rgba(11, 30, 61, .10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 40px rgba(8, 22, 48, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(8, 22, 48, .13);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}

.review-card-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
}

.review-card-id {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin-right: auto;
}

.review-card-name {
  font-weight: 700;
  color: var(--navy-950);
  font-size: 15px;
}

.review-card-date {
  color: var(--ink-soft);
  font-size: 13px;
}

.review-card-glogo {
  flex: 0 0 auto;
}

.review-card-stars {
  color: #f5a623;
  font-size: 17px;
  letter-spacing: .04em;
  margin-bottom: 12px;
}

.review-card-text {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.reviews-display-more {
  text-align: center;
  margin-top: 34px;
}

.reviews-display-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid rgba(11, 30, 61, .16);
  border-radius: 999px;
  color: var(--navy-900);
  font-weight: 600;
  font-size: 15px;
  transition: background .2s ease, border-color .2s ease;
}

.reviews-display-more-link:hover {
  background: var(--cream);
  border-color: var(--gold);
}

.reviews-display-more-link svg {
  transition: transform .2s ease;
}

.reviews-display-more-link:hover svg {
  transform: translate(2px, -2px);
}

@media (max-width: 900px) {
  .reviews-display-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
}

/* =====================================================
   VERSION MOBILE COMPACTE — en-tete et accueil
   N'affecte pas l'affichage ordinateur.
   ===================================================== */
@media (max-width: 760px) {
  .nav-in,
  .nav.compact .nav-in {
    height: 70px;
    gap: 10px;
  }

  .brand {
    gap: 0;
  }

  /* Le petit logo detaille etait illisible sur telephone.
     Le monogramme texte CDPF devient la signature principale. */
  .brand img,
  .nav.compact .brand img {
    display: none;
  }

  .brand-txt b {
    font-size: 26px;
    letter-spacing: .08em;
  }

  .brand-txt span {
    display: none;
  }

  .nav-in > div:last-child {
    gap: 8px !important;
  }

  .nav-tel {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .burger {
    width: 42px;
    height: 42px;
  }

  .mnav,
  .nav.compact .mnav {
    inset: 70px 0 auto 0;
    max-height: calc(100svh - 70px);
  }

  .home-hero-modern {
    padding: 76px 7px 7px;
  }

  .home-hero-shell {
    border-radius: 20px;
  }

  /* L'image reste presente, mais devient un fond elegant au lieu
     d'occuper 265 px avant le texte. */
  .home-hero-stage {
    min-height: auto;
    display: block;
  }

  .home-hero-logo {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: auto;
  }

  .home-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% 34%;
    opacity: .72;
    mix-blend-mode: screen;
    filter: saturate(1.18) contrast(1.12);
    transform: scale(1.04);
    animation: none !important;
  }

  .home-hero-logo::before,
  .home-hero-logo::after {
    display: none !important;
  }

  .home-hero-overlay {
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(5,16,36,.95) 0%, rgba(5,16,36,.78) 53%, rgba(5,16,36,.40) 100%),
      linear-gradient(180deg, rgba(5,16,36,.10), rgba(7,23,48,.82) 100%);
  }

  .home-hero-copy {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 30px 22px 28px;
    background: transparent;
  }

  .home-hero-pill {
    display: none;
  }

  .home-hero-kicker {
    max-width: 290px;
    margin-bottom: 12px;
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: .14em;
  }

  .home-hero-copy h1 {
    max-width: 340px;
    font-size: clamp(37px, 10.5vw, 44px);
    line-height: 1.01;
    letter-spacing: -.025em;
  }

  .home-hero-copy h1 em {
    padding-top: 3px;
  }

  .home-hero-lead {
    max-width: 350px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.58;
    color: rgba(255,255,255,.79);
  }

  .home-hero-actions {
    gap: 14px;
    margin-top: 22px;
  }

  .home-hero-actions .btn {
    min-height: 48px;
  }

  .home-hero-link {
    font-size: 14px;
  }

  .home-hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 26px;
    padding-top: 18px;
  }

  .home-hero-metrics > div,
  .home-hero-metrics > div + div {
    display: block;
    padding: 0 10px;
    border-left: 1px solid rgba(255,255,255,.12);
  }

  .home-hero-metrics > div:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .home-hero-metrics > div:last-child {
    padding-right: 0;
  }

  .home-hero-metrics b {
    font-size: 21px;
  }

  .home-hero-metrics span {
    margin-top: 6px;
    font-size: 8px;
    line-height: 1.35;
    text-align: left;
    letter-spacing: .045em;
  }

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

  .home-hero-trust-item,
  .home-hero-trust-item:nth-child(2) {
    min-height: 104px;
    gap: 10px;
    padding: 15px 12px;
    border-right: 1px solid rgba(11,30,61,.09);
  }

  .home-hero-trust-item:nth-child(even) {
    border-right: 0;
  }

  .home-trust-symbol {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .home-hero-trust-item b {
    font-size: 12px;
  }

  .home-hero-trust-item small {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.35;
  }
}

@media (max-width: 370px) {
  .home-hero-copy {
    padding-inline: 18px;
  }

  .home-hero-copy h1 {
    font-size: 35px;
  }
}

/* Carrousel partenaires actif sur telephone */
@media (max-width: 760px) and (prefers-reduced-motion: no-preference) {
  .partners .logo-band.logo-marquee {
    overflow: hidden;
    touch-action: pan-y;
  }

  .partners .logo-track {
    animation: logoMarquee 42s linear infinite !important;
    transform: translateX(0);
    will-change: transform;
  }

  .partners .logo-band.logo-marquee:hover .logo-track {
    animation-play-state: running;
  }
}
