/* ==========================================================================
   CLENORA NETTOYAGE — Feuille de styles
   Thème CLAIR & lumineux · Navy + Or premium · Casablanca
   ========================================================================== */

/* ----------  Variables  ---------- */
:root {
  --navy: #0b2545;
  --navy-2: #13315c;
  --navy-3: #1c437a;
  --gold: #c8a24a;
  --gold-2: #b8860b;
  --gold-soft: #e9d9a8;
  --sky: #eaf2fb;
  --sky-2: #f5f9ff;

  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --text: #1f2a37;
  --muted: #5b6b7f;
  --line: #e6ecf3;

  --shadow-sm: 0 4px 14px rgba(11, 37, 69, 0.06);
  --shadow: 0 14px 40px rgba(11, 37, 69, 0.1);
  --shadow-lg: 0 30px 70px rgba(11, 37, 69, 0.16);
  --gold-grad: linear-gradient(135deg, #d9b968 0%, #c8a24a 50%, #a9822f 100%);

  --radius: 18px;
  --radius-lg: 26px;
  --container: 1200px;
  --header-h: 78px;

  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", system-ui, -apple-system, sans-serif;
}

/* ----------  Reset  ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
}
::selection {
  background: var(--gold-soft);
  color: var(--navy);
}

/* ----------  Utilitaires  ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.text-gold {
  color: var(--gold-2);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
}
.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left {
  margin-left: 0;
  text-align: left;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.section-head p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 1.05rem;
}

/* ----------  Boutons  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-gold {
  background: var(--gold-grad);
  color: #3a2c05;
  box-shadow: 0 10px 26px rgba(200, 162, 74, 0.4);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(200, 162, 74, 0.5);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  transform: translateY(-3px);
  background: var(--navy-2);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  transform: translateY(-3px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}
.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}
.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
  background: var(--navy);
  color: #cdd8e8;
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
}
.topbar a {
  color: #cdd8e8;
  transition: color 0.2s;
}
.topbar a:hover {
  color: var(--gold-soft);
}
.topbar-left {
  display: flex;
  gap: 22px;
}
.topbar-left span,
.topbar-left a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar-left svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
}
.topbar-right {
  display: flex;
  gap: 14px;
  align-items: center;
}
.topbar-right .sep {
  opacity: 0.35;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s, height 0.3s;
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand .mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.brand .mark svg {
  width: 30px;
  height: 30px;
}
.brand .name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand .sub {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 34px;
}
.nav-links a {
  position: relative;
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--navy-2);
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold-grad);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--gold-2);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 80px 0 90px;
  background: radial-gradient(
      1000px 500px at 85% -10%,
      var(--sky) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(200, 162, 74, 0.14), transparent 70%);
  border-radius: 50%;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy-2);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
}
.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.hero h1 .accent {
  position: relative;
  color: var(--gold-2);
  white-space: nowrap;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 10px;
  background: var(--gold-soft);
  opacity: 0.55;
  z-index: -1;
  border-radius: 4px;
}
.hero p.lead {
  color: var(--muted);
  font-size: 1.12rem;
  margin: 24px 0 32px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-trust {
  margin-top: 34px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust .item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-trust .item svg {
  width: 22px;
  height: 22px;
  color: var(--gold-2);
  flex-shrink: 0;
}
.hero-trust .item b {
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1.05rem;
}
.hero-trust .item small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Visuel hero */
.hero-visual {
  position: relative;
}
.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  border: 6px solid #fff;
}
.hero-float {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sky);
  color: var(--gold-2);
  display: grid;
  place-items: center;
}
.hero-float .ic svg {
  width: 24px;
  height: 24px;
}
.hero-float b {
  color: var(--navy);
  font-size: 1.05rem;
  display: block;
}
.hero-float small {
  color: var(--muted);
  font-size: 0.76rem;
}
.hero-float.one {
  bottom: 26px;
  left: -26px;
  animation: floaty 6s ease-in-out infinite;
}
.hero-float.two {
  top: 40px;
  right: -22px;
  animation: floaty 7s ease-in-out infinite reverse;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* ==========================================================================
   IMAGE PLACEHOLDER (à remplacer par vos photos)
   ========================================================================== */
.ph {
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: linear-gradient(135deg, var(--sky) 0%, #dbe7f5 100%);
  display: grid;
  place-items: center;
  color: var(--navy-3);
  position: relative;
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  bottom: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-3);
  opacity: 0.7;
  padding: 0 10px;
  text-align: center;
}
.ph svg {
  width: 46px;
  height: 46px;
  opacity: 0.4;
}

/* Image qui remplit son conteneur (ratio respecté, recadrage centré) */
.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   WHY / VALEURS
   ========================================================================== */
.why {
  background: var(--bg-soft);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.value-card .ic {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: var(--sky);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  transition: 0.3s;
}
.value-card:hover .ic {
  background: var(--gold-grad);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}
.value-card .ic svg {
  width: 34px;
  height: 34px;
}
.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.value-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(200, 162, 74, 0.08));
  opacity: 0;
  transition: 0.35s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card .num {
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--sky);
  transition: 0.3s;
}
.service-card:hover .num {
  color: var(--gold-soft);
}
.service-card .ic {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: 0.35s;
  position: relative;
  z-index: 1;
}
.service-card:hover .ic {
  background: var(--gold-grad);
  color: #fff;
  transform: translateY(-4px);
}
.service-card .ic svg {
  width: 32px;
  height: 32px;
}
.service-card h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.service-card p {
  color: var(--muted);
  font-size: 0.93rem;
  position: relative;
  z-index: 1;
}
.service-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}
.service-card .tags span {
  font-size: 0.76rem;
  color: var(--navy-2);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 4px 12px;
  border-radius: 999px;
}

/* petite grille de prestations complémentaires */
.subservices {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.subservice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-2);
  transition: 0.25s;
}
.subservice:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.subservice svg {
  width: 26px;
  height: 26px;
  color: var(--gold-2);
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 162, 74, 0.22), transparent 70%);
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}
.stat {
  text-align: center;
  padding: 10px;
}
.stat .num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat .lbl {
  margin-top: 10px;
  color: #b9c6da;
  font-size: 0.95rem;
}
.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   ABOUT + DIRECTION
   ========================================================================== */
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about-media .col {
  display: grid;
  gap: 18px;
}
.about-media .col.push {
  padding-top: 40px;
}
.about-media .frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  border: 5px solid #fff;
}
.about-media .badge {
  background: var(--gold-grad);
  color: #3a2c05;
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-media .badge b {
  font-family: var(--font-head);
  font-size: 2rem;
  display: block;
}
.about-media .badge small {
  font-size: 0.8rem;
  font-weight: 600;
}
.about-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 32px;
}
.about-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-list .ck {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--sky);
  color: var(--gold-2);
  display: grid;
  place-items: center;
}
.about-list .ck svg {
  width: 20px;
  height: 20px;
}
.about-list h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}
.about-list p {
  color: var(--muted);
  font-size: 0.9rem;
}
.direction {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.leader {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
}
.leader .av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
}
.leader b {
  color: var(--navy);
  display: block;
  font-size: 0.98rem;
}
.leader small {
  color: var(--gold-2);
  font-size: 0.8rem;
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process {
  background: var(--bg-soft);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}
.step {
  text-align: center;
  position: relative;
}
.step .circle {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-2);
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
.step:hover .circle {
  border-color: var(--gold);
  box-shadow: 0 10px 26px rgba(200, 162, 74, 0.28);
  transform: translateY(-4px);
}
.step h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.step p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 220px;
  margin: 0 auto;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.tst {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
  position: relative;
}
.tst:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.tst .stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}
.tst .stars svg {
  width: 18px;
  height: 18px;
}
.tst p {
  color: #3b4a5c;
  font-size: 0.98rem;
  font-style: italic;
}
.tst .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.tst .who .av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
}
.tst .who b {
  color: var(--navy);
  display: block;
  font-size: 0.95rem;
}
.tst .who small {
  color: var(--muted);
  font-size: 0.82rem;
}
.tst .qmark {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--font-head);
  font-size: 3.4rem;
  color: var(--sky);
  line-height: 1;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  background: var(--bg-soft);
}
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item.open {
  box-shadow: var(--shadow);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy);
}
.faq-q .plus {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sky);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  transition: 0.3s;
}
.faq-item.open .plus {
  background: var(--gold-grad);
  color: #fff;
  transform: rotate(135deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding: 0 26px 24px;
  color: var(--muted);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.contact-info > p {
  color: var(--muted);
  margin: 16px 0 30px;
}
.info-list {
  display: grid;
  gap: 20px;
}
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-item .ic {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--navy);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
}
.info-item .ic svg {
  width: 24px;
  height: 24px;
}
.info-item .lbl {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
}
.info-item a,
.info-item span {
  display: block;
  color: var(--navy);
  font-weight: 500;
  transition: color 0.2s;
}
.info-item a:hover {
  color: var(--gold-2);
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-2);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: #fcfdff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 162, 74, 0.14);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 12px;
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: #e9f9ef;
  border: 1px solid #b7e6c7;
  color: #1a7f42;
  padding: 13px 16px;
  border-radius: 12px;
  margin-top: 16px;
  font-size: 0.92rem;
  font-weight: 500;
}
.form-success.show {
  display: flex;
}
.form-success svg {
  width: 20px;
  height: 20px;
}
.form-error {
  display: none;
  align-items: center;
  gap: 10px;
  background: #fdecec;
  border: 1px solid #f3bcbc;
  color: #b42318;
  padding: 13px 16px;
  border-radius: 12px;
  margin-top: 16px;
  font-size: 0.92rem;
  font-weight: 500;
}
.form-error.show {
  display: flex;
}
.form-error svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(200, 162, 74, 0.25), transparent 70%);
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 64px;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}
.cta-band p {
  color: #c4d1e4;
  margin-top: 8px;
}
.cta-band .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #071a33;
  color: #a9b8cd;
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer .brand .name {
  color: #fff;
}
.footer p.desc {
  margin: 18px 0;
  font-size: 0.92rem;
  max-width: 300px;
}
.footer .slogan {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer ul {
  display: grid;
  gap: 12px;
}
.footer ul a {
  color: #a9b8cd;
  font-size: 0.92rem;
  transition: color 0.2s, padding-left 0.2s;
}
.footer ul a:hover {
  color: var(--gold-soft);
  padding-left: 5px;
}
.footer .fcontact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
}
.footer .fcontact svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}

/* ==========================================================================
   FLOATING WHATSAPP + BACK TO TOP
   ========================================================================== */
.fab-wa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform 0.3s;
  animation: pulse-wa 2.4s infinite;
}
.fab-wa:hover {
  transform: scale(1.08);
}
.fab-wa svg {
  width: 30px;
  height: 30px;
}
@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.to-top {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  z-index: 90;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s;
}
.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================================
   ANIMATIONS SCROLL (reveal)
   ========================================================================== */
/* Le masquage n'est appliqué que si JS est actif (.js) — sans JS, tout reste
   visible. Ainsi la page ne peut jamais rester blanche. */
.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 {
  transition-delay: 0.1s;
}
.reveal.d2 {
  transition-delay: 0.2s;
}
.reveal.d3 {
  transition-delay: 0.3s;
}
.reveal.d4 {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-float,
  .fab-wa {
    animation: none;
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .why-grid,
  .services-grid,
  .stats .container,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .subservices {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat + .stat {
    border-left: none;
  }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }
  .about .container,
  .contact .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tst-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 68px 0;
  }
  .topbar-left {
    gap: 14px;
  }
  .topbar-left .hide-sm {
    display: none;
  }
  .nav-links {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 24px;
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    transition: transform 0.4s ease;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }
  .nav-cta .btn:not(.burger) {
    display: none;
  }
  .burger {
    display: flex;
  }
  .why-grid,
  .services-grid,
  .stats .container,
  .process-grid,
  .subservices,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-float.one {
    left: 8px;
  }
  .hero-float.two {
    right: 8px;
  }
  .cta-band .container {
    flex-direction: column;
    text-align: center;
  }
  .cta-band .actions {
    justify-content: center;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
