/* ============================================================
   SOSTRAVAUX71 — Design system
   ============================================================ */
:root {
  /* Colors */
  --yellow: #FFD400;
  --yellow-deep: #F5B800;
  --yellow-soft: #FFF4B8;
  --cream: #FAF7EE;
  --cream-2: #F2EEDF;
  --ink: #0E0F12;
  --ink-2: #1B1D22;
  --slate: #4B5058;
  --mute: #8A8E96;
  --line: #E8E5DC;
  --line-2: #2A2C32;
  --white: #FFFFFF;
  --danger: #E03E3E;

  /* Type */
  --font-display: "Bricolage Grotesque", ui-sans-serif, sans-serif;
  --font-body: "Manrope", ui-sans-serif, sans-serif;

  /* Layout */
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(14,15,18,.06), 0 4px 12px rgba(14,15,18,.04);
  --shadow:    0 4px 12px rgba(14,15,18,.06), 0 18px 50px rgba(14,15,18,.08);
  --shadow-yellow: 0 14px 40px rgba(245,184,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(44px, 7vw, 96px); }
h2 { font-size: clamp(34px, 4.6vw, 60px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -0.01em; }
h4 { font-size: 18px; letter-spacing: -0.005em; }
p { margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--ink);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--yellow); }
.eyebrow.on-dark::before { background: var(--yellow); }

.container { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 9vw, 140px); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: var(--shadow-yellow);
}
.btn-primary:hover { background: var(--yellow-deep); }

.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: var(--ink-2); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.header.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.92); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0;
}
.logo-mark sup { font-size: 10px; }
.logo strong { color: var(--ink); }
.logo span.muted { color: var(--slate); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.phone-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.phone-cta .ring {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid; place-items: center;
  position: relative;
}
.phone-cta .ring::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  opacity: 0;
  animation: ring 2s ease-out infinite;
}
@keyframes ring {
  0% { opacity: .6; transform: scale(.9); }
  100% { opacity: 0; transform: scale(1.4); }
}

.menu-btn { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: var(--white); place-items: center; }
.menu-btn svg { width: 20px; height: 20px; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 80px 0 0 0;
  background: var(--white);
  z-index: 49;
  padding: 32px var(--gutter);
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.7,0,.2,1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu .mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(255,212,0,.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(255,212,0,.12), transparent 60%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-tag .pulse {
  width: 8px; height: 8px;
  background: #2bbd6a;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(43,189,106,.6);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(43,189,106,.5); }
  70% { box-shadow: 0 0 0 8px rgba(43,189,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,189,106,0); }
}
.hero-tag .chip {
  background: var(--yellow);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 .accent {
  display: inline-block;
  background: linear-gradient(180deg, transparent 62%, var(--yellow) 62%);
  padding: 0 4px;
}
.hero h1 .stroke {
  display: inline-block;
  position: relative;
}
.hero h1 .stroke::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 8%;
  height: 22%;
  background: var(--yellow);
  z-index: -1;
  transform: skewX(-6deg);
}
.hero-sub {
  margin-top: 28px;
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--slate);
  max-width: 540px;
}
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.hero-stat .n { font-family: var(--font-display); font-size: 36px; font-weight: 700; letter-spacing: -0.03em; }
.hero-stat .l { font-size: 13px; color: var(--slate); margin-top: 2px; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-visual:hover img { transform: scale(1.15); }

.hero-badge {
  position: absolute;
  left: -24px;
  bottom: 56px;
  background: var(--yellow);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}
.hero-badge .num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}
.hero-badge .lbl { font-size: 13px; font-weight: 600; max-width: 110px; line-height: 1.25; }

.hero-card {
  position: absolute;
  right: -20px;
  top: 32px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 2;
}
.hero-card .avs { display: flex; }
.hero-card .avs img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  object-fit: cover;
}
.hero-card .avs img + img { margin-left: -10px; }
.hero-card .stars { color: var(--yellow-deep); font-size: 13px; letter-spacing: 1px; }
.hero-card .txt { font-size: 12px; color: var(--slate); }
.hero-card .txt b { color: var(--ink); }

.hero-marquee {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-marquee .dot { width: 4px; height: 4px; background: var(--mute); border-radius: 50%; }

/* ============================================================
   Features strip
   ============================================================ */
.features {
  background: var(--white);
  padding-block: 72px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: all .3s ease;
}
.feature:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: var(--shadow); }
.feature .ico {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--yellow);
  display: grid;
  place-items: center;
}
.feature h4 { margin-bottom: 6px; }
.feature p { color: var(--slate); font-size: 14.5px; }

/* ============================================================
   Why us
   ============================================================ */
.why {
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.why-text h2 { margin-top: 16px; margin-bottom: 24px; }
.why-text h2 em { font-style: normal; background: var(--yellow); padding: 0 12px; box-decoration-break: clone; }
.why-text p { color: var(--slate); font-size: 17px; max-width: 480px; }
.why-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 32px 0 40px; }
.why-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
}
.why-pill .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  color: var(--ink);
}

.why-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
}
.why-info-card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.why-info-card .k { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate); margin-bottom: 8px; }
.why-info-card .v { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }

.why-visual {
  position: relative;
  aspect-ratio: 5/6;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-visual img { width: 100%; height: 100%; object-fit: cover; }
.why-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(14,15,18,.5));
}
.why-quote {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  z-index: 2;
}

/* ============================================================
   Services
   ============================================================ */
.services { background: var(--white); }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 60px;
}
.section-head h2 { max-width: 760px; }
.section-head h2 em { font-style: normal; background: var(--yellow); padding: 0 10px; }
.section-head p { color: var(--slate); font-size: 17px; max-width: 560px; }
.section-head .head-cta { padding-bottom: 8px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  transition: all .35s cubic-bezier(.6,.05,.3,1);
  border: 1px solid transparent;
  min-height: 460px;
}
.service-card.urgent { background: var(--ink); color: var(--white); }
.service-card.urgent .service-num { background: var(--yellow); color: var(--ink); }
.service-card.urgent .service-list { color: rgba(255,255,255,.7); }
.service-card.urgent .service-list li::before { background: var(--yellow); }
.service-card.urgent .service-more { color: var(--yellow); border-color: rgba(255,255,255,.2); }
.service-card.urgent .service-more:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card.urgent:hover { box-shadow: 0 30px 60px rgba(14,15,18,.4); }

.service-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.service-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--yellow);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.service-card h3 { font-size: 26px; }
.service-intro {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--slate);
}
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14.5px;
  color: var(--slate);
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-list li::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--ink);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-more {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
  transition: all .2s ease;
}
.service-more:hover { background: var(--ink); color: var(--white); }

.urgency-banner {
  margin-top: 56px;
  padding: 24px 32px;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.urgency-banner .ub-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.urgency-banner .ub-icon {
  width: 52px; height: 52px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.urgency-banner .ub-text h4 { font-size: 22px; margin-bottom: 4px; }
.urgency-banner .ub-text p { font-size: 14px; }

/* ============================================================
   Process
   ============================================================ */
.process {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,212,0,.15), transparent 65%);
  pointer-events: none;
}
.process .section-head h2 em { background: var(--yellow); color: var(--ink); }
.process .section-head p { color: rgba(255,255,255,.65); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all .3s ease;
}
.process-step:hover { background: #22252b; transform: translateY(-4px); }
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--yellow);
  margin-bottom: 24px;
}
.process-step h3 { margin-bottom: 12px; }
.process-step p { color: rgba(255,255,255,.65); font-size: 15px; }
.process-step .step-ico {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,212,0,.12);
  border: 1px solid rgba(255,212,0,.25);
  display: grid;
  place-items: center;
  color: var(--yellow);
}

/* ============================================================
   Stats / Numbers
   ============================================================ */
.numbers {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.numbers-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.numbers h2 { font-size: clamp(38px, 5vw, 72px); }
.numbers h2 em { font-style: normal; background: var(--yellow); padding: 0 10px; }
.big-num {
  font-family: var(--font-display);
  font-size: clamp(96px, 14vw, 200px);
  font-weight: 800;
  line-height: .85;
  letter-spacing: -0.04em;
  color: var(--ink);
  position: relative;
}
.big-num .plus { color: var(--yellow-deep); }
.big-num .sub {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-top: 16px;
}

/* ============================================================
   Sector / Geographic
   ============================================================ */
.sector { background: var(--white); }
.sector-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.sector-map {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
}
.sector-map svg { width: 100%; height: 100%; display: block; }
.sector-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -100%);
  font-size: 12px;
  font-weight: 600;
}
.sector-pin .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 8px rgba(255,212,0,.2);
  margin-bottom: 4px;
  animation: pin-pulse 2.4s ease-out infinite;
}
.sector-pin .lbl {
  background: var(--ink);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.sector-pin.main .dot { width: 18px; height: 18px; background: var(--yellow); }
.sector-pin.main .lbl { background: var(--yellow); color: var(--ink); }
@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,212,0,.5); }
  50% { box-shadow: 0 0 0 14px rgba(255,212,0,0); }
}

.sector-text h2 em { font-style: normal; background: var(--yellow); padding: 0 10px; }
.sector-text h2 { margin: 16px 0 24px; }
.sector-text p { color: var(--slate); font-size: 17px; max-width: 520px; margin-bottom: 32px; }
.sector-points { display: grid; gap: 24px; margin-top: 32px; }
.sector-point { display: flex; gap: 18px; align-items: flex-start; padding-top: 24px; border-top: 1px solid var(--line); }
.sector-point .pt-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--slate);
  flex-shrink: 0;
  width: 32px;
}
.sector-point h4 { margin-bottom: 6px; }
.sector-point p { font-size: 14.5px; color: var(--slate); margin: 0; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { background: var(--cream); }
.tm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tm-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid var(--line);
  transition: all .3s ease;
}
.tm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--yellow); }
.tm-stars { color: var(--yellow-deep); letter-spacing: 2px; font-size: 18px; }
.tm-quote {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex: 1;
}
.tm-quote::before { content: "“"; color: var(--yellow-deep); font-size: 56px; line-height: 0; vertical-align: -10px; margin-right: 4px; font-family: serif; }
.tm-user { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.tm-user img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.tm-user .name { font-weight: 700; font-size: 15px; }
.tm-user .city { color: var(--slate); font-size: 13px; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery {
  background: var(--white);
  padding-block: clamp(56px, 7vw, 100px);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--cream);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,15,18,.5));
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .tag {
  position: absolute;
  left: 16px; bottom: 16px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s ease;
  z-index: 2;
}
.gallery-item:hover .tag { opacity: 1; transform: translateY(0); }

.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.span-3 { grid-column: span 3; }
.gallery-item.row-2 { grid-row: span 2; }

/* ============================================================
   Contact
   ============================================================ */
.contact {
  background: var(--ink);
  color: var(--white);
}
.contact .section-head h2 { color: var(--white); }
.contact .section-head h2 em { background: var(--yellow); color: var(--ink); }
.contact .section-head p { color: rgba(255,255,255,.65); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
}
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.contact-card {
  padding: 24px;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  transition: all .25s ease;
}
.contact-card:hover { border-color: var(--yellow); background: #22252b; }
.contact-card .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--ink);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.contact-card .k { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.contact-card .v { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.contact-card a.v { display: block; }
.contact-card.full { grid-column: 1 / -1; }

.contact-hours {
  margin-top: 14px;
  padding: 24px;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 18px;
}
.contact-hours .h-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,212,0,.12);
  color: var(--yellow);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-hours .k { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,.5); }
.contact-hours .v { font-family: var(--font-display); font-weight: 700; font-size: 24px; }
.contact-hours .v small { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.55); font-family: var(--font-body); margin-left: 8px; }

/* Form */
.form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-card h3 { margin-bottom: 8px; }
.form-card .form-sub { color: var(--slate); margin-bottom: 28px; font-size: 15px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--slate); }
.field label .req { color: var(--danger); }
.field input,
.field select,
.field textarea {
  font: inherit;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  font-size: 15px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(255,212,0,.35);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5l5 5 5-5' stroke='%230E0F12' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-actions { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.form-note { font-size: 12px; color: var(--mute); }

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius);
  margin-top: 20px;
}
.form-success.show { display: block; }
.form-success .ico {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 60px 0 28px;
  border-top: 1px solid var(--line-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-2);
}
.footer-logo { color: var(--white); font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.footer-about p { font-size: 14.5px; max-width: 320px; }
.footer h5 { color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-bottom: 18px; letter-spacing: -0.005em; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { font-size: 14.5px; transition: color .15s ease; }
.footer a:hover { color: var(--yellow); }
.footer-contact a { display: block; color: var(--white); font-weight: 600; margin-bottom: 6px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-size: 13px;
}
.footer-bottom .legals { display: flex; gap: 24px; }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

.form-error {
  margin: 14px 0 0;
  padding: 12px 16px;
  background: rgba(224,62,62,.08);
  border: 1px solid rgba(224,62,62,.35);
  border-radius: var(--radius-sm);
  color: var(--danger);
  font-size: 14px;
  font-weight: 600;
}

/* ============================================================
   Legal pages (Mentions légales / Politique de confidentialité)
   ============================================================ */
.legal {
  padding-block: clamp(48px, 7vw, 96px);
}
.legal-head {
  max-width: 820px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}
.legal-head h1 {
  font-size: clamp(36px, 5.4vw, 64px);
  margin-top: 18px;
}
.legal-head .legal-updated {
  margin-top: 18px;
  font-size: 14px;
  color: var(--mute);
}
.legal-body {
  max-width: 820px;
  margin: 0 auto;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
}
.legal-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--ink);
  margin: 48px 0 14px;
}
.legal-body h3 {
  font-size: 19px;
  color: var(--ink);
  margin: 30px 0 8px;
}
.legal-body p { margin: 0 0 14px; }
.legal-body a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--yellow-deep); }
.legal-body ul {
  margin: 0 0 16px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-body ul li {
  position: relative;
  padding-left: 22px;
}
.legal-body ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 11px;
  width: 5px; height: 5px;
  background: var(--ink);
  border-radius: 50%;
}
.legal-body strong { color: var(--ink); font-weight: 700; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
  font-size: 15px;
}
.legal-table th, .legal-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.legal-table th {
  width: 38%;
  color: var(--ink);
  font-weight: 600;
  background: var(--cream);
}
.legal-todo {
  display: inline-block;
  background: var(--yellow-soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  padding: 1px 8px;
  border-radius: 6px;
  border: 1px dashed var(--yellow-deep);
}
.legal-note {
  margin: 32px 0;
  padding: 18px 22px;
  background: var(--cream);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  font-weight: 600;
  color: var(--ink);
}
.legal-back:hover { color: var(--yellow-deep); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-btn { display: grid; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 1; max-width: 100%; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .why-grid, .sector-grid, .contact-grid { grid-template-columns: 1fr; }
  .features-grid, .services-grid, .process-grid, .tm-grid { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; gap: 36px; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; }
  .gallery-item.span-3 { grid-column: span 2; }
}
@media (max-width: 720px) {
  h1 { font-size: 44px; }
  h2 { font-size: 32px; }
  .header-cta .phone-cta { display: none; }
  .header-cta .btn { display: none; }
  .features-grid, .services-grid, .process-grid, .tm-grid, .contact-cards, .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .gallery-item.span-2, .gallery-item.span-3 { grid-column: span 1; }
  .gallery-item.row-2 { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .urgency-banner { padding: 20px; }
  .hero-card { right: 10px; top: 16px; padding: 10px 12px; }
  .hero-badge { left: -8px; bottom: 24px; padding: 16px 18px; }
  .hero-badge .num { font-size: 32px; }
  .hero-stats { gap: 20px; }
  .hero-stat .n { font-size: 28px; }
}
