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

:root {
  --bg: #060607;
  --panel-1: #0f0f12;
  --panel-2: #0b0b0d;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f5f5;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.52);
  --gold-1: #e0851e;
  --gold-2: #d5ab6f;
  --gold-3: #e3a74e;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  background:
    radial-gradient(1000px 560px at 12% 2%, rgba(214, 176, 122, 0.17), transparent 62%),
    radial-gradient(980px 520px at 92% 6%, rgba(127, 100, 65, 0.16), transparent 58%),
    linear-gradient(180deg, #080809 0%, #09090a 34%, #050505 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  opacity: 0.09;
  mix-blend-mode: overlay;
  z-index: 3;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

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

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.glow {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.25;
  animation: drift 24s ease-in-out infinite;
}

.glow-left {
  background: radial-gradient(circle, #d6b07a 0%, transparent 64%);
  left: -100px;
  top: -130px;
}

.glow-right {
  background: radial-gradient(circle, #7f6240 0%, transparent 64%);
  right: -140px;
  bottom: -160px;
  animation-delay: 7s;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-42px);
  }
}

.container {
  width: min(1240px, 100% - 10vw);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(5, 5, 5, 0.45);
  backdrop-filter: blur(11px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

.brand img {
  width: 80px;
  height: 40px;
  border-radius: 8px;
}

.menu {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.menu a {
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.84);
  transition: background 220ms ease, color 220ms ease;
}

.menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.btn {
  height: 44px;
  border-radius: var(--radius-pill);
  padding: 0 20px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition: transform 220ms ease, opacity 220ms ease, border-color 220ms ease;
}

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

.btn-gold {
  color: #101010;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-1));
  box-shadow: 0 14px 35px rgba(214, 176, 122, 0.35);
}

.btn-light {
  color: #111;
  background: #f4f4f4;
}

.btn-outline {
  color: #f4f4f4;
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.58);
}

.hero {
  padding-top: 128px;
  padding-bottom: 78px;
}

.hero-content {
  max-width: 780px;
}

.kicker {
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

h1 {
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.lead {
  margin-top: 22px;
  max-width: 670px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.lead.small {
  max-width: 580px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-jump {
  position: sticky;
  top: 76px;
  z-index: 19;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  background: rgba(6, 6, 7, 0.7);
}

.jump-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jump-pills a {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 15px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
  transition: border-color 220ms ease, background 220ms ease;
}

.jump-pills a:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.service-band {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.service-band.is-light {
  background:
    radial-gradient(120% 180% at 12% 0%, rgba(214, 176, 122, 0.12), transparent 40%),
    #0b0b0d;
}

.service-band.is-dark {
  background:
    radial-gradient(120% 180% at 88% 0%, rgba(214, 176, 122, 0.12), transparent 40%),
    #09090a;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.service-copy {
  position: sticky;
  top: 134px;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(17, 17, 19, 0.96), rgba(10, 10, 12, 0.98));
}

.service-index {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(227, 167, 78, 0.95);
}

.service-copy h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.service-copy > p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.service-copy h3 {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
}

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

.service-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.55;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold-3);
}

.capture-hint {
  margin-top: 12px;
  padding: 8px 10px;
  border-left: 2px solid rgba(243, 201, 130, 0.52);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 10px 10px 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
}

.text-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 201, 130, 0.95);
}

.text-link::after {
  content: "→";
}

.service-rail {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(15, 15, 18, 0.98), rgba(9, 9, 11, 0.99));
  overflow: hidden;
}

.rail-viewport {
  overflow: hidden;
}

.rail-track {
  display: flex;
  width: 100%;
  transition: transform 320ms ease;
}

.rail-slide {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
}

.rail-slide img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.rail-slide:hover img,
.rail-slide:focus-visible img {
  transform: scale(1.03);
  filter: saturate(1.08);
}

.rail-slide h4 {
  margin: 18px 18px 6px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.capture-chip {
  margin: 16px 18px 0;
  width: fit-content;
  height: 24px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: border-color 220ms ease, background 220ms ease;
}

.rail-slide:hover .capture-chip,
.rail-slide:focus-visible .capture-chip {
  border-color: rgba(243, 201, 130, 0.5);
  background: rgba(243, 201, 130, 0.14);
}

.rail-slide p {
  margin: 0 18px 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.rail-slide p::after {
  content: "Voir la capture ↗";
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 201, 130, 0.92);
}

.rail-slide:focus-visible {
  outline: 2px solid rgba(243, 201, 130, 0.55);
  outline-offset: -2px;
}

.rail-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px 14px;
}

.rail-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 19px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.rail-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
}

.rail-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.rail-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
}

.rail-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}

.rail-dot.is-active {
  width: 24px;
  background: #fff;
}

.results {
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(214, 176, 122, 0.14), transparent 42%),
    #0b0b0d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.results h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.stats {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.stat-pill strong {
  font-size: 21px;
  color: #f6c982;
}

.stat-pill span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.final-cta {
  padding-top: 24px;
  padding-bottom: 92px;
}

.final-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(140% 200% at 0% 0%, rgba(214, 176, 122, 0.18), transparent 44%),
    #0d0d0f;
  border: 1px solid rgba(214, 176, 122, 0.2);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.final-card img {
  width: 100%;
  min-height: 300px;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.agency-contact {
  padding-top: 16px;
  padding-bottom: 96px;
}

.agency-separator {
  width: 100%;
  height: 2px;
  margin: 0 auto 30px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  opacity: 0.85;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: end;
  padding: 32px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(214, 176, 122, 0.15), transparent 45%),
    linear-gradient(180deg, rgba(14, 14, 16, 0.98), rgba(8, 8, 10, 0.99));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
}

.contact-main {
  display: grid;
  gap: 10px;
}

.contact-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(227, 167, 78, 0.95);
}

.contact-title {
  font-size: clamp(26px, 3.2vw, 22px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.contact-mail {
  margin-top: 12px;
  display: inline-flex;
  width: fit-content;
  font-size: clamp(20px, 3vw, 18px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #f4f4f4;
  transition: color 200ms ease;
}

.contact-phones {
  margin-top: 2px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #f4f4f4;
  font-size: clamp(14px, 2.6vw, 14px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.contact-phones a,
.contact-mail {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
}

.contact-phones a:hover,
.contact-mail:hover {
  color: #f8cd8a;
  text-decoration-color: rgba(248, 205, 138, 0.8);
}

.newsletter-side {
  display: grid;
  justify-items: start;
  text-align: center;
  gap: 16px;
}

.newsletter-input {
  width: 100%;
  max-width: 480px;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f5;
}

.newsletter-button {
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.newsletter-button:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 176, 122, 0.5);
  color: #0c0c0e;
  background: linear-gradient(135deg, #e0851e, #d5ab6f, #e0851e);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c0c0e;
  color: #f5f5f5;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.social-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0);
  background: linear-gradient(135deg, #e0851e, #d5ab6f, #e0851e);
  color: #0b0b0c;
  box-shadow: 0 12px 30px rgba(214, 176, 122, 0.35);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #060607;
}

.footer-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted-2);
  font-size: 13px;
}

.footer a {
  color: #f2cf98;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .container {
    width: min(1240px, 100% - 8vw);
  }

  .service-layout {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .service-copy {
    position: static;
    grid-column: 1 / -1;
  }

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

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .menu {
    display: none;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 70px 0;
  }

  .container {
    width: min(1240px, 100% - 6vw);
  }

  .navbar {
    position: static;
  }

  .nav-inner {
    min-height: 68px;
  }

  .service-jump {
    position: static;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 62px;
  }

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

  .btn {
    height: 42px;
    font-size: 12px;
  }

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

  .service-layout {
    grid-template-columns: 1fr;
  }

  .rail-slide {
    grid-template-rows: minmax(250px, 1fr) auto;
  }

  .rail-slide img {
    min-height: 250px;
  }

  .agency-contact {
    padding-top: 0;
    padding-bottom: 72px;
  }

  .agency-separator {
    margin-bottom: 20px;
  }

  .contact-shell {
    max-width: 100%;
    padding: 22px 20px;
  }

  .contact-eyebrow {
    font-size: 11px;
  }

  .contact-title {
    font-size: clamp(24px, 7vw, 30px);
  }

  .contact-mail,
  .contact-phones {
    font-size: clamp(20px, 6vw, 24px);
    line-height: 1.3;
  }

  .newsletter-side {
    gap: 12px;
  }

  .social-btn {
    width: 42px;
    height: 42px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 14px 0;
  }
}
