:root {
  --black: #050505;
  --white: #ffffff;
  --soft-white: #f4f4f4;
  --yellow: #2bb8ff;
  --yellow-deep: #0b73d9;
  --navy: #062b4f;
  --blue-soft: #eaf7ff;
  --line: rgba(255, 255, 255, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero {
  color: var(--white);
  min-height: 700px;
  position: relative;
  overflow: hidden;
  background: #061f36;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 0;
  background-image: url("assets/hero-paris.png");
  background-size: cover;
  background-position: center center;
  filter: brightness(1.03) contrast(1.08) saturate(1.12) sepia(0.03);
  transform: scale(1.002);
}

.hero::after {
  z-index: 1;
  display: block;
  background:
    linear-gradient(90deg, rgba(2, 21, 38, 0.94) 0%, rgba(3, 28, 50, 0.86) 22%, rgba(3, 34, 61, 0.56) 43%, rgba(3, 34, 61, 0.18) 58%, rgba(3, 34, 61, 0) 73%),
    linear-gradient(180deg, rgba(2, 21, 38, 0.18) 0%, rgba(2, 21, 38, 0) 34%, rgba(2, 21, 38, 0.1) 100%);
}

.topbar {
  position: relative;
  z-index: 2;
  min-height: 82px;
  padding: 14px 6%;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 0;
}

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

.brand {
  position: relative;
}

.brand-logo {
  width: 290px;
  height: 82px;
  display: block;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
  padding: 0;
}

.brand-logo-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-logo-text img {
  width: 54px;
  height: 70px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
  transform: translateY(2px);
}

.brand-name {
  color: var(--white);
  font-size: 35px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-name span:first-child {
  color: #1fa2ff;
}

.brand-name span:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 850;
}

.brand-tagline {
  color: rgba(255, 255, 255, 0.82);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.nav-links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  opacity: 0.95;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover {
  color: var(--yellow);
  opacity: 1;
}

.top-call,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.top-call {
  display: none;
  padding: 0 22px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(43, 184, 255, 0.24);
}

.top-call svg,
.button svg,
.top-call .lucide,
.button .lucide {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 700px;
  padding: 132px 5% 86px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(650px, 100%);
}

.hero h1 {
  position: relative;
  margin: 0;
  font-size: clamp(54px, 5.2vw, 82px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.36);
}

.hero h1::after {
  content: "";
  width: 112px;
  height: 3px;
  display: block;
  margin-top: 24px;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(43, 184, 255, 0.5);
}

.hero h1 span {
  color: #19a9ff;
}

.hero p {
  max-width: 570px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 700;
}

.hero-note {
  display: none;
}

.hero-note span {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--yellow);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.button {
  min-width: 244px;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 6px;
  font-size: 20px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  box-shadow: 0 18px 38px rgba(43, 184, 255, 0.3);
}

.button-outline {
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.wa-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wa-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}

.trust-section {
  padding: 28px 5% 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.trust-row {
  position: static;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border: 1px solid rgba(165, 218, 249, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(6, 43, 79, 0.08);
}

.trust-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 13px;
  align-items: center;
  min-width: 0;
}

.trust-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-deep);
  border: 1px solid #bee7ff;
  border-radius: 50%;
  background: var(--blue-soft);
}

.trust-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.8;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  color: #10334f;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-item small {
  margin-top: 7px;
  color: #405a70;
  font-size: 14px;
  line-height: 1.34;
}

main {
  background: var(--white);
}

.services-section,
.mission-section,
.sectors-section,
.quote-section,
.privacy-section {
  padding: 76px 8%;
}

.services-section {
  color: var(--navy);
  background:
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow-deep);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
}

.section-head h2,
.mission-copy h2 {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.06;
  letter-spacing: 0;
}

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

.service-card {
  min-height: 310px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #d6eaf8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(6, 43, 79, 0.08);
}

.service-card-wide,
.service-card-action {
  grid-column: span 2;
  min-height: 230px;
}

.service-card-action {
  grid-column: span 4;
  min-height: 360px;
  padding: 34px 38px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(430px, 1.22fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(7, 71, 126, 0.16);
  border-radius: 8px;
  background-image:
    linear-gradient(90deg, rgba(4, 31, 58, 0.97) 0%, rgba(4, 43, 79, 0.88) 32%, rgba(4, 61, 111, 0.46) 56%, rgba(4, 61, 111, 0.08) 100%),
    url("assets/cabinet-paris.png");
  background-size: cover;
  background-position: center center;
  box-shadow: 0 26px 60px rgba(6, 43, 79, 0.18);
}

.action-copy {
  position: relative;
  z-index: 1;
  max-width: 390px;
}

.service-card-action .service-icon,
.action-copy h3,
.action-copy p {
  color: var(--white);
}

.action-copy .service-icon {
  width: 46px;
  height: 46px;
  color: var(--yellow);
}

.action-copy .service-icon svg {
  width: 42px;
  height: 42px;
}

.action-copy h3 {
  margin: 18px 0 0;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.08;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.action-copy p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.55;
}

.action-copy a {
  width: fit-content;
  min-height: 50px;
  margin-top: 24px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  border: 0;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  box-shadow: 0 16px 34px rgba(4, 31, 58, 0.28);
  font-size: 17px;
  font-weight: 950;
}

.action-copy a svg {
  width: 20px;
  height: 20px;
}

.action-panel {
  position: relative;
  z-index: 1;
  align-self: stretch;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 54px rgba(6, 43, 79, 0.2);
  backdrop-filter: blur(10px);
}

.action-panel-head {
  margin-bottom: 18px;
  padding-bottom: 16px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(6, 43, 79, 0.14);
}

.action-panel-head span {
  color: var(--yellow-deep);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.action-panel-head strong {
  color: #062b4f;
  font-size: 18px;
  line-height: 1;
}

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

.action-service-item {
  min-height: 68px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
}

.action-service-item i,
.action-service-item svg {
  width: 30px;
  height: 30px;
  color: var(--yellow-deep);
  stroke-width: 1.85;
}

.action-service-item span,
.action-service-item strong,
.action-service-item small {
  display: block;
}

.action-service-item strong {
  color: #062b4f;
  font-size: 16px;
  line-height: 1.18;
}

.action-service-item small {
  margin-top: 5px;
  color: #24435f;
  font-size: 13px;
  line-height: 1.34;
}

.service-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-deep);
  border: 0;
  border-radius: 0;
  background: transparent;
}

.service-icon svg {
  width: 56px;
  height: 56px;
  stroke-width: 1.75;
}

.service-card h3 {
  margin: 26px 0 0;
  color: #041f3a;
  font-size: 20px;
  line-height: 1.15;
}

.service-card p {
  margin: 14px 0 0;
  color: #425669;
  font-size: 15px;
  line-height: 1.58;
}

.service-card-action .action-copy h3 {
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(31px, 3.2vw, 48px);
  line-height: 1.08;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.service-card-action .action-copy p {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.6;
}

.service-strip {
  margin-top: 28px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  border: 1px solid #d6eaf8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.service-strip span {
  padding: 10px 14px;
  color: #123552;
  border-radius: 999px;
  background: #f4fbff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

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

.situations-grid article {
  min-height: 132px;
  padding: 20px;
  border: 1px solid #d6eaf8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(6, 43, 79, 0.06);
}

.situations-grid svg {
  width: 30px;
  height: 30px;
  color: var(--yellow-deep);
  stroke-width: 1.75;
}

.situations-grid strong,
.situations-grid span {
  display: block;
}

.situations-grid strong {
  margin-top: 16px;
  color: #123552;
  font-size: 17px;
  line-height: 1.15;
}

.situations-grid span {
  margin-top: 8px;
  color: #425669;
  font-size: 14px;
  line-height: 1.4;
}

.mission-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: 56px;
  align-items: start;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 15%, rgba(43, 184, 255, 0.2) 0%, rgba(43, 184, 255, 0) 38%),
    linear-gradient(135deg, #062b4f 0%, #041a31 100%);
}

.mission-section .eyebrow,
.mission-section .mission-copy h2 {
  color: var(--white);
}

.mission-text {
  display: grid;
  gap: 18px;
}

.mission-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.58;
}

.sectors-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(380px, 1.18fr);
  gap: 58px;
  align-items: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4fbff 72%, #ffffff 100%);
}

.sectors-copy h2 {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--navy);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.06;
}

.sectors-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: #425669;
  font-size: 18px;
  line-height: 1.58;
}

.sectors-panel {
  padding: 18px;
  border: 1px solid #d6eaf8;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 251, 255, 0.88));
  box-shadow: 0 28px 70px rgba(6, 43, 79, 0.12);
}

.sector-photo {
  height: 330px;
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid #cfe4f2;
  border-radius: 8px;
  background: #062b4f;
  box-shadow: 0 20px 48px rgba(6, 43, 79, 0.14);
}

.sector-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.sector-local-note {
  margin-top: 16px;
  padding: 16px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid #d6eaf8;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.sector-local-note svg {
  width: 34px;
  height: 34px;
  color: var(--yellow-deep);
  stroke-width: 1.75;
}

.sector-local-note strong,
.sector-local-note span {
  display: block;
}

.sector-local-note strong {
  color: #123552;
  font-size: 16px;
  line-height: 1.15;
}

.sector-local-note span {
  margin-top: 5px;
  color: #425669;
  font-size: 14px;
  line-height: 1.35;
}

.sector-area-list {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sector-area-list span {
  min-height: 40px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #123552;
  border: 1px solid #d6eaf8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(6, 43, 79, 0.04);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.sector-area-list span:hover {
  border-color: #9fdcff;
  background: #ffffff;
  transform: translateY(-2px);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(420px, 1.16fr);
  gap: 52px;
  align-items: start;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 20%, rgba(43, 184, 255, 0.22) 0%, rgba(43, 184, 255, 0) 36%),
    linear-gradient(135deg, #062b4f 0%, #041a31 100%);
}

.quote-section .eyebrow,
.quote-intro h2 {
  color: var(--white);
}

.quote-intro h2 {
  margin: 14px 0 0;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.04;
}

.quote-intro p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.58;
}

.photo-whatsapp-note {
  max-width: 560px;
  margin-top: 22px;
  padding: 16px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.photo-whatsapp-note svg {
  width: 30px;
  height: 30px;
  color: var(--yellow);
  stroke-width: 1.75;
}

.photo-whatsapp-note span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.4;
}

.quote-contact-card {
  margin-top: 28px;
  padding: 24px 0 0;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: transparent;
}

.quote-contact-card h3 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.1;
}

.quote-contact-card h3 svg {
  width: 24px;
  height: 24px;
  color: var(--yellow);
  stroke-width: 1.75;
}

.contact-name,
.contact-location {
  margin: 0;
}

.contact-name {
  margin-top: 22px;
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}

.contact-location {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.contact-address {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-style: normal;
  line-height: 1.45;
}

.contact-links {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.contact-links a {
  width: fit-content;
  padding: 0;
  display: inline-block;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid rgba(43, 184, 255, 0.6);
  border-radius: 0;
  background: transparent;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.2;
}

.contact-links a:hover {
  color: var(--yellow);
}

.quote-form {
  padding: 28px;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

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

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

.quote-form label > span {
  color: #123552;
  font-size: 13px;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: #102f4a;
  border: 1px solid #cfe4f2;
  border-radius: 6px;
  background: #ffffff;
  font: inherit;
  font-size: 15px;
  outline: none;
}

.quote-form textarea {
  min-height: 132px;
  padding-top: 14px;
  resize: vertical;
}

.file-field input[type="file"] {
  padding: 12px;
  color: #425669;
  background: #ffffff;
}

.file-field input[type="file"]::file-selector-button {
  min-height: 36px;
  margin-right: 12px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  font-weight: 800;
  background: var(--blue);
  cursor: pointer;
}

.file-field small {
  color: #607487;
  font-size: 13px;
  line-height: 1.45;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 3px rgba(43, 184, 255, 0.16);
}

.consent-line {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.consent-line input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--yellow-deep);
}

.consent-line span {
  color: #425669;
  font-size: 13px;
  line-height: 1.4;
}

.consent-line a {
  color: var(--yellow-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.quote-form .button {
  border: 0;
  cursor: pointer;
}

.form-whatsapp {
  color: var(--yellow-deep);
  border: 1px solid #bee7ff;
  background: var(--blue-soft);
}

.privacy-section {
  background:
    linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
  color: var(--navy);
}

.privacy-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.privacy-intro h2 {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.privacy-intro p {
  margin: 18px 0 0;
  color: #425669;
  font-size: 17px;
  line-height: 1.65;
}

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

.privacy-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid #d6eaf8;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(6, 43, 79, 0.08);
}

.privacy-grid h3 {
  margin: 0;
  color: #123552;
  font-size: 18px;
  line-height: 1.25;
}

.privacy-grid p {
  margin: 12px 0 0;
  color: #425669;
  font-size: 15px;
  line-height: 1.6;
}

.privacy-grid a {
  color: var(--yellow-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-note {
  max-width: 980px;
  margin: 24px auto 0;
  padding: 20px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid #bee7ff;
  border-radius: 8px;
  background: var(--blue-soft);
}

.privacy-note svg {
  width: 34px;
  height: 34px;
  color: var(--yellow-deep);
}

.privacy-note p {
  margin: 0;
  color: #123552;
  font-size: 15px;
  line-height: 1.6;
}

.privacy-note a {
  color: var(--yellow-deep);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-teaser {
  padding: 20px 8%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: center;
  color: #425669;
  background: #f8fcff;
  border-top: 1px solid #d6eaf8;
  font-size: 14px;
}

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

.simple-header {
  padding: 18px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--white);
  border-bottom: 1px solid #d6eaf8;
}

.simple-header .brand {
  min-width: 300px;
}

.simple-header .brand-logo {
  width: 300px;
  height: 76px;
}

.simple-back {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 20px 8%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.82);
  background: #041f3a;
  font-size: 14px;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  width: min(560px, calc(100% - 44px));
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid #bee7ff;
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(4, 31, 58, 0.22);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  color: #123552;
  font-size: 17px;
}

.cookie-banner p {
  margin: 8px 0 0;
  color: #425669;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner a {
  display: inline-block;
  margin-top: 10px;
  color: var(--yellow-deep);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.cookie-primary {
  border: 1px solid var(--yellow-deep);
  color: var(--white);
  background: var(--yellow-deep);
}

.cookie-secondary {
  border: 1px solid #bee7ff;
  color: var(--yellow-deep);
  background: var(--blue-soft);
}

@media (max-width: 980px) {
  .hero {
    min-height: 660px;
  }

  .hero::before {
    background-position: 62% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(2, 18, 32, 0.9) 0%, rgba(3, 27, 48, 0.76) 36%, rgba(4, 35, 63, 0.28) 66%, rgba(4, 35, 63, 0) 100%);
  }

  .topbar {
    padding: 16px 5%;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    min-height: 660px;
    padding: 118px 5% 76px;
  }

  .hero h1 {
    font-size: clamp(48px, 7vw, 70px);
  }

  .hero p {
    font-size: 21px;
  }

  .trust-section {
    padding: 24px 5% 30px;
  }

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

  .trust-item {
    grid-template-columns: 48px 1fr;
  }

  .trust-icon {
    width: 48px;
    height: 48px;
  }

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

  .services-section,
  .mission-section,
  .sectors-section,
  .quote-section,
  .privacy-section {
    padding: 64px 5%;
  }

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

  .service-card-action {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 30px;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 20px;
  }

  .action-panel {
    padding: 20px;
  }

  .action-service-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mission-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sectors-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .quote-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

@media (max-width: 760px) {
  .hero-actions {
    max-width: 420px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 0;
    padding: 20px;
    border-radius: 8px;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
  }

  .hero::before {
    background-position: 67% center;
    filter: brightness(0.94) contrast(1.04) saturate(1.08);
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(2, 18, 32, 0.92) 0%, rgba(3, 27, 48, 0.82) 52%, rgba(4, 35, 63, 0.38) 82%, rgba(4, 35, 63, 0.08) 100%);
  }

  .topbar {
    min-height: 74px;
    padding: 12px 5%;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 190px;
    height: 54px;
  }

  .nav-links {
    display: none;
  }

  .top-call {
    width: 44px;
    min-width: 44px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    gap: 0;
  }

  .top-call svg {
    color: var(--white);
    flex: 0 0 20px;
  }

  .hero-content {
    min-height: auto;
    padding: 96px 5% 56px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .hero p {
    font-size: 17px;
  }

  .hero h1::after {
    width: 72px;
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .button {
    min-height: 54px;
    font-size: 17px;
  }

  .trust-item {
    grid-template-columns: 46px 1fr;
  }

  .trust-icon {
    width: 46px;
    height: 46px;
  }

  .trust-icon svg {
    width: 23px;
    height: 23px;
  }

  .trust-item strong {
    font-size: 15px;
  }

  .trust-item small {
    font-size: 14px;
  }

  .hero-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
  }

  .hero-note span {
    display: none;
  }

  .services-section,
  .mission-section,
  .sectors-section,
  .quote-section,
  .privacy-section {
    padding: 52px 5%;
  }

  .section-head {
    text-align: left;
  }

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

  .service-card,
  .service-card-wide,
  .service-card-action {
    grid-column: auto;
    min-height: 0;
    padding: 26px 22px;
  }

  .service-card-action {
    grid-column: 1 / -1;
    padding: 24px 18px;
    grid-template-columns: 1fr;
    gap: 22px;
    background-image:
      linear-gradient(90deg, rgba(4, 31, 58, 0.96) 0%, rgba(4, 43, 79, 0.82) 54%, rgba(4, 61, 111, 0.2) 100%),
      url("assets/cabinet-paris.png");
    background-position: center center;
  }

  .action-copy {
    max-width: 100%;
  }

  .service-card-action .action-copy h3 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .service-card-action .action-copy p {
    max-width: 100%;
    font-size: 16px;
  }

  .action-copy a {
    width: 100%;
    justify-content: center;
  }

  .action-panel {
    padding: 18px;
  }

  .action-panel-head {
    display: block;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .action-panel-head strong {
    margin-top: 6px;
    display: block;
  }

  .action-service-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .action-service-item {
    min-height: 56px;
    grid-template-columns: 34px 1fr;
  }

  .action-service-item svg {
    width: 26px;
    height: 26px;
  }

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

  .sector-photo {
    height: 260px;
  }

  .quote-form {
    padding: 20px;
  }

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

  .form-actions .button {
    width: 100%;
  }

  .privacy-intro {
    text-align: left;
  }

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

  .privacy-grid article {
    min-height: 0;
  }

  .privacy-note {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 22px 5%;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

}


/* Correctif logo WebP */
.brand-logo-text {
  width: 290px;
  height: 82px;
  gap: 0;
}

.brand-logo-text img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand-wordmark {
  display: none;
}

@media (max-width: 680px) {
  .brand-logo-text {
    width: 210px;
    height: 60px;
  }
}


/* Correctif logo principal : utiliser assets/logo.webp */
.brand-logo-text {
  width: 340px;
  height: 96px;
  gap: 0;
}

.brand-logo-text img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
  flex: none;
}

.brand-wordmark {
  display: none;
}

@media (max-width: 680px) {
  .brand-logo-text {
    width: 230px;
    height: 66px;
  }
}


/* Correctif final : petit pin + texte IciPropre à côté */
.brand-logo-text {
  width: auto;
  height: 82px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-text img {
  width: 58px;
  height: 72px;
  display: block;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

.brand-wordmark {
  display: flex;
}

@media (max-width: 680px) {
  .brand-logo-text {
    height: 60px;
  }

  .brand-logo-text img {
    width: 44px;
    height: 54px;
  }
}
.simple-price-section{padding:72px 7%;background:#082f3d;color:#fff}.simple-price-section h2{font-size:clamp(38px,5vw,64px);margin:6px 0}.simple-price-section p{color:#d2e0e4;font-size:18px;max-width:850px}@media(max-width:760px){.simple-price-section{padding:58px 6%}}.offer-levels{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:34px}.offer-levels article{padding:25px;border:1px solid rgba(255,255,255,.2);border-radius:18px}.offer-levels span{color:#75e0c4;font-weight:800;font-size:13px;text-transform:uppercase}.offer-levels h3{font-size:27px;margin:10px 0}.offer-levels p{font-size:16px!important;color:#fff!important}.offer-levels small,.offer-area{color:#bdd0d6}.offer-area{margin-top:22px}@media(max-width:800px){.offer-levels{grid-template-columns:1fr}}.sector-placeholder{display:grid;place-content:center;text-align:center;gap:8px;color:#fff;background:linear-gradient(145deg,#063d64,#087f8c)}.sector-placeholder svg{width:45px;height:45px;margin:auto}.sector-placeholder strong{font-size:42px;letter-spacing:.16em}.sector-placeholder span{font-weight:700;opacity:.85}