/* =========================================================
   INFODEVS — Design tokens
   Palette : Noir / Jaune / Blanc — identité "agence tech"
   ========================================================= */
:root{
  --black: #0A0A0B;
  --charcoal: #16161A;
  --charcoal-2: #1E1E23;
  --line: rgba(255,255,255,0.09);
  --line-soft: rgba(255,255,255,0.05);

  --orange: #FFC400;
  --orange-dark: #E0A800;
  --orange-glow: rgba(255,196,0,0.35);

  --white: #FFFFFF;
  --paper: #F6F4F0;
  --paper-2: #EDEAE3;

  --ink: #0A0A0B;
  --grey-700: #59595E;
  --grey-500: #8A8A90;
  --grey-300: #C7C6C2;

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 26px;

  --container: 1180px;
  --pad: 20px;

  --ease: cubic-bezier(.16,.84,.44,1);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body{
  margin:0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
input, select, textarea{ font-family:inherit; font-size:16px; }

:focus-visible{
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link{
  position:absolute; left:-999px; top:0; z-index:200;
  background:var(--orange); color:var(--black); padding:12px 18px;
  font-family:var(--font-mono); font-size:13px; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }

.container{
  width:100%;
  max-width: var(--container);
  margin:0 auto;
  padding: 0 var(--pad);
}

section{ position:relative; }

/* =========================================================
   Utility text styles
   ========================================================= */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width:7px; height:7px;
  background: var(--orange);
  border-radius:1px;
  transform: rotate(45deg);
  flex:none;
}
.eyebrow.on-light{ color: var(--orange-dark); }

.h-section{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 16ch;
}
.section-lead{
  color: var(--grey-500);
  max-width: 52ch;
  margin-top: 16px;
  font-size: 16px;
}
.section-head{
  margin-bottom: 44px;
}
.section-head.split{
  display:flex; flex-direction:column; gap:20px;
}
@media(min-width: 860px){
  .section-head.split{
    flex-direction:row;
    justify-content:space-between;
    align-items:flex-end;
  }
  .section-head.split .section-lead{ margin-top:0; text-align:right; }
}

.on-dark{ color: var(--white); }
.on-light{ color: var(--ink); }

section.dark{ background: var(--black); }
section.charcoal-bg{ background: var(--charcoal); }
section.paper{ background: var(--paper); color: var(--ink); }
section.paper .section-lead{ color: var(--grey-700); }

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 26px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:active{ transform: scale(0.97); }
.btn-primary{
  background: var(--orange);
  color: var(--black);
}
.btn-primary:hover{ background: var(--white); }
.btn-ghost-dark{
  border-color: var(--line);
  color: var(--white);
}
.btn-ghost-dark:hover{ border-color: var(--orange); color: var(--orange); }
.btn-ghost-light{
  border-color: rgba(10,10,11,0.18);
  color: var(--ink);
}
.btn-ghost-light:hover{ border-color: var(--orange-dark); color: var(--orange-dark); }
.btn-block{ width:100%; }
.btn svg{ width:16px; height:16px; flex:none; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index:100;
  padding: 16px 0;
  background: rgba(10,10,11,0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled{
  border-bottom-color: var(--line);
  background: rgba(10,10,11,0.92);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
}
.logo{
  display:flex; align-items:center; gap:10px;
  font-family: var(--font-display);
  font-weight:700;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.logo .mark{
  width:34px; height:34px;
  background: var(--orange);
  border-radius: 9px;
  display:flex; align-items:center; justify-content:center;
  color:var(--black);
  font-family: var(--font-mono);
  font-weight:700;
  font-size: 13px;
  flex:none;
}
.logo .word b{ color: var(--orange); font-weight:700; }

.nav-desktop{
  display:none;
}
.nav-desktop ul{ display:flex; align-items:center; gap:34px; }
.nav-desktop a{
  font-size: 14px; font-weight:500; color: var(--grey-300);
  position:relative; padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav-desktop a:hover, .nav-desktop a.active{ color: var(--white); }
.nav-desktop a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px;
  background: var(--orange); transition: right .25s var(--ease);
}
.nav-desktop a:hover::after, .nav-desktop a.active::after{ right:0; }

.header-actions{ display:flex; align-items:center; gap:10px; }
.header-actions .btn{ padding: 11px 20px; font-size:14px; }
.header-actions .btn-primary{ display:none; }

.burger{
  display:flex; align-items:center; justify-content:center;
  width:42px; height:42px;
  border-radius:10px;
  border:1px solid var(--line);
  background:transparent;
  flex-direction:column; gap:5px;
}
.burger span{ width:18px; height:2px; background:var(--white); transition: all .25s var(--ease); display:block; }
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.nav-mobile{
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99;
  padding: 88px 22px 32px;
  transform: translateY(-8px);
  opacity:0;
  pointer-events:none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  overflow-y:auto;
}
.nav-mobile.is-open{ opacity:1; pointer-events:auto; transform:none; }
.nav-mobile ul{ display:flex; flex-direction:column; }
.nav-mobile a{
  display:block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight:600;
  padding: 12px 2px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--white);
}
.nav-mobile .mobile-cta{ margin-top:22px; display:flex; flex-direction:column; gap:10px; }
.nav-mobile .mobile-cta .btn{ padding: 12px 22px; font-size:14px; }
.nav-mobile .mobile-meta{
  margin-top: 26px; font-family: var(--font-mono); font-size:11.5px; color: var(--grey-500);
  display:flex; flex-direction:column; gap:6px;
}

@media(min-width: 900px){
  .nav-desktop{ display:block; }
  .burger{ display:none; }
  .nav-mobile{ display:none; }
  .header-actions .btn-primary{ display:inline-flex; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero{
  padding: 150px 0 80px;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(255,196,0,0.18), transparent 60%),
    var(--black);
  overflow:hidden;
}
.hero-grid{
  display:grid; gap: 44px;
}
.hero-status{
  display:inline-flex; align-items:center; gap:9px;
  font-family: var(--font-mono); font-size:12.5px;
  color: var(--grey-300);
  border:1px solid var(--line); border-radius:100px;
  padding: 7px 14px 7px 10px;
  margin-bottom: 26px;
}
.dot-live{
  width:8px; height:8px; border-radius:50%; background:#3DDC7A; flex:none;
  box-shadow: 0 0 0 0 rgba(61,220,122,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(61,220,122,0.5); }
  70%{ box-shadow: 0 0 0 7px rgba(61,220,122,0); }
  100%{ box-shadow: 0 0 0 0 rgba(61,220,122,0); }
}
.hero h1{
  font-family: var(--font-display);
  font-weight:700;
  font-size: clamp(36px, 8.5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.hero h1 em{
  font-style:normal;
  color: var(--orange);
}
.hero-sub{
  margin-top: 22px;
  font-size: 17px;
  color: var(--grey-300);
  max-width: 46ch;
}
.hero-actions{
  display:flex; flex-wrap:wrap; gap:12px;
  margin-top: 34px;
}
.hero-tags{
  margin-top: 40px;
  display:flex; flex-wrap:wrap; gap:9px;
}
.tag{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--grey-300);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 7px 11px;
  white-space:nowrap;
}
.tag b{ color:var(--orange); font-weight:600; }

/* Hero slider */
.hero-slider{
  position:relative;
  border-radius: var(--radius-l);
  overflow:hidden;
  border: 1px solid var(--line);
  background: var(--charcoal);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7);
}
.hero-slider-track{ position:relative; aspect-ratio: 4/5; }
.hero-slide{
  position:absolute; inset:0;
  opacity:0; transition: opacity .5s var(--ease);
}
.hero-slide.is-active{ opacity:1; }
.hero-slide img{ width:100%; height:100%; object-fit:cover; }
.hero-slide .cap{
  position:absolute; left:16px; right:16px; bottom:16px;
  background: rgba(10,10,11,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12.5px;
  color: var(--grey-300);
}
.hero-slide .cap b{ color: var(--white); }
.hero-slider-dots{
  position:absolute; top:14px; left:50%; transform:translateX(-50%);
  display:flex; gap:6px; z-index:5;
}
.hero-slider-dots button{
  width:20px; height:3px; border:0; border-radius:3px;
  background: rgba(255,255,255,0.3);
  padding:0;
}
.hero-slider-dots button.is-active{ background: var(--orange); }
.hero-slider-nav{
  position:absolute; right:14px; bottom:14px; z-index:5;
  display:flex; gap:8px;
}
.hero-slider-nav button{
  width:34px; height:34px; border-radius:50%;
  background: rgba(10,10,11,0.72);
  border:1px solid var(--line);
  color: var(--white);
  display:flex; align-items:center; justify-content:center;
}
.hero-slider-nav button:hover{ border-color: var(--orange); color: var(--orange); }
.hero-slider-nav svg{ width:16px; height:16px; }

@media(min-width: 980px){
  .hero{ padding: 190px 0 110px; }
  .hero-grid{ grid-template-columns: 1.15fr 0.85fr; align-items:center; gap:60px; }
}

/* =========================================================
   Marquee ticker
   ========================================================= */
.ticker{
  background: var(--orange);
  color: var(--black);
  overflow:hidden;
  padding: 13px 0;
}
.ticker-track{
  display:flex; gap: 40px;
  width:max-content;
  animation: ticker 26s linear infinite;
}
@media (prefers-reduced-motion: reduce){ .ticker-track{ animation:none; } }
.ticker span{
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight:600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display:flex; align-items:center; gap:12px;
  white-space:nowrap;
}
.ticker span::before{ content:"◆"; font-size:9px; }
@keyframes ticker{ from{ transform:translateX(0); } to{ transform: translateX(-50%); } }

/* =========================================================
   About
   ========================================================= */
.about{ padding: 90px 0; }
.about-grid{ display:grid; gap: 40px; }
.about-text p + p{ margin-top:16px; }
.about-text{ color: var(--grey-300); font-size:16px; }
.about-points{
  margin-top: 30px;
  display:grid; gap:14px;
  grid-template-columns: 1fr;
}
.point{
  display:flex; gap:12px; align-items:flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
}
.point .ic{
  width:34px; height:34px; border-radius:9px; flex:none;
  background: rgba(255,196,0,0.12); color:var(--orange);
  display:flex; align-items:center; justify-content:center;
}
.point .ic svg{ width:17px; height:17px; }
.point h4{ font-size:14.5px; font-weight:600; margin-bottom:4px; }
.point p{ font-size: 13.5px; color: var(--grey-500); }

.promoter-card{
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 28px;
  background: var(--charcoal);
}
.promoter-photo{
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-m);
  background: linear-gradient(150deg, var(--orange), var(--orange-dark));
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-size:15vw; font-weight:700; color: rgba(10,10,11,0.85);
  overflow:hidden;
  margin-bottom: 20px;
}
.promoter-photo img{ width:100%; height:100%; object-fit:cover; }
.promoter-card .role{ font-family: var(--font-mono); font-size:11.5px; color: var(--orange); text-transform:uppercase; letter-spacing:.05em; margin-bottom:6px; }
.promoter-card h3{ font-family: var(--font-display); font-size: 22px; font-weight:700; }
.promoter-card .desc{ margin-top:10px; font-size:14px; color: var(--grey-500); }
.promoter-links{ margin-top:20px; display:flex; flex-direction:column; gap:9px; }
.promoter-links a{
  display:flex; align-items:center; gap:10px;
  font-size: 13.5px; color: var(--grey-300);
  padding: 10px 12px; border:1px solid var(--line); border-radius:10px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.promoter-links a:hover{ border-color: var(--orange); color: var(--orange); }
.promoter-links svg{ width:15px; height:15px; flex:none; color:var(--orange); }

@media(min-width: 980px){
  .about-grid{ grid-template-columns: 1fr 0.75fr; gap:60px; align-items:start; }
  .about-points{ grid-template-columns: 1fr 1fr; }
  .promoter-photo{ font-size:64px; }
}

/* =========================================================
   Stats strip
   ========================================================= */
.stats{
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid{
  display:grid; grid-template-columns: repeat(2,1fr); gap: 28px;
}
.stat b{
  display:block;
  font-family: var(--font-display); font-weight:700;
  font-size: clamp(28px,5vw,42px);
  color: var(--white);
}
.stat b .accent{ color: var(--orange); }
.stat span{
  display:block; margin-top:6px;
  font-family: var(--font-mono); font-size:11.5px;
  color: var(--grey-500); text-transform:uppercase; letter-spacing:.05em;
}
@media(min-width: 700px){ .stats-grid{ grid-template-columns: repeat(4,1fr); } }

/* =========================================================
   Services
   ========================================================= */
.services{ padding: 90px 0; }
.services-grid{
  display:grid; grid-template-columns: 1fr; gap: 16px;
}
@media(min-width: 700px){ .services-grid{ grid-template-columns: 1fr 1fr; } }
@media(min-width: 1080px){ .services-grid{ grid-template-columns: repeat(3,1fr); } }

.service-card{
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 26px;
  background: var(--charcoal);
  display:flex; flex-direction:column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.service-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,196,0,0.4);
  background: var(--charcoal-2);
}
.service-media{
  aspect-ratio: 16/10;
  border-radius: var(--radius-m);
  margin-bottom:20px;
  background: linear-gradient(135deg, var(--charcoal-2), var(--black));
  border: 1px solid var(--line-soft);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.service-media img{ width:100%; height:100%; object-fit:cover; }
.service-media svg{ width:34px; height:34px; color: var(--orange); opacity:.9; }
.service-card .num{
  font-family: var(--font-mono); font-size:11.5px; color: var(--grey-500);
  margin-bottom: 10px;
}
.service-card h3{ font-family: var(--font-display); font-size: 19px; font-weight:700; margin-bottom:10px; }
.service-card p{ font-size: 14px; color: var(--grey-500); flex:1; }
.service-card .tags{ margin-top:16px; display:flex; flex-wrap:wrap; gap:7px; }
.service-card .tags span{
  font-family: var(--font-mono); font-size:11px; color: var(--grey-300);
  border:1px solid var(--line); border-radius:6px; padding:4px 8px;
}

/* =========================================================
   Portfolio
   ========================================================= */
.portfolio{ padding: 90px 0; background: var(--charcoal); }
.portfolio-grid{
  display:grid; grid-template-columns: 1fr; gap: 18px;
}
@media(min-width:700px){ .portfolio-grid{ grid-template-columns: 1fr 1fr; } }
@media(min-width:1080px){ .portfolio-grid{ grid-template-columns: repeat(3,1fr); } }

.project-card{
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow:hidden;
  background: var(--black);
  display:flex; flex-direction:column;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.project-card:hover{ transform: translateY(-4px); border-color: rgba(255,196,0,0.4); }
.project-media{
  aspect-ratio: 16/10;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; font-size:28px;
  color: rgba(255,255,255,0.92);
  position:relative;
  overflow:hidden;
}
.project-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.project-body{ padding: 20px 22px 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.project-body .cat{ font-family: var(--font-mono); font-size:11px; color: var(--orange); text-transform:uppercase; letter-spacing:.05em; }
.project-body h3{ font-family: var(--font-display); font-size:18px; font-weight:700; }
.project-body p{ font-size:13.5px; color: var(--grey-500); flex:1; }
.project-link{
  margin-top:8px;
  display:inline-flex; align-items:center; gap:8px;
  font-size: 13.5px; font-weight:600; color: var(--white);
}
.project-link svg{ width:14px; height:14px; transition: transform .2s var(--ease); }
.project-card:hover .project-link svg{ transform: translate(3px,-3px); }

/* =========================================================
   Profils / candidature
   ========================================================= */
.profiles{ padding: 90px 0; }
.profiles-grid{ display:grid; grid-template-columns: 1fr; gap:14px; }
@media(min-width:700px){ .profiles-grid{ grid-template-columns: 1fr 1fr; } }
@media(min-width:1080px){ .profiles-grid{ grid-template-columns: repeat(3,1fr); } }
.profile-card{
  border:1px solid var(--line); border-radius: var(--radius-m);
  padding: 22px;
  display:flex; flex-direction:column; gap:10px;
}
.profile-card .ic{
  width:40px; height:40px; border-radius:10px;
  background: rgba(255,196,0,0.12); color:var(--orange);
  display:flex; align-items:center; justify-content:center;
}
.profile-card .ic svg{ width:20px; height:20px; }
.profile-card h4{ font-family:var(--font-display); font-size:16.5px; font-weight:700; }
.profile-card p{ font-size:13px; color:var(--grey-500); }
.profile-card .avail{
  margin-top:auto; padding-top:10px;
  font-family: var(--font-mono); font-size:11px; color:#3DDC7A;
  display:flex; align-items:center; gap:6px;
}
.profile-card .avail::before{ content:""; width:6px; height:6px; border-radius:50%; background:#3DDC7A; }

.profiles-cta{
  margin-top: 34px;
  border:1px solid var(--line); border-radius: var(--radius-l);
  padding: 26px;
  display:flex; flex-direction:column; gap:16px;
  background: var(--charcoal);
}
@media(min-width:700px){
  .profiles-cta{ flex-direction:row; align-items:center; justify-content:space-between; }
}
.profiles-cta h4{ font-family:var(--font-display); font-size:19px; font-weight:700; }
.profiles-cta p{ font-size:13.5px; color:var(--grey-500); margin-top:6px; max-width:44ch; }
.profiles-cta .actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* =========================================================
   Vision band
   ========================================================= */
.vision{
  padding: 90px 0;
  background: var(--paper);
  color: var(--ink);
}
.vision-grid{ display:grid; gap:36px; }
.vision h2{ font-family: var(--font-display); font-weight:700; font-size: clamp(26px,5vw,38px); line-height:1.15; }
.vision p.lead{ margin-top:16px; color: var(--grey-700); max-width:56ch; }
.vision-list{ margin-top:8px; display:grid; gap:14px; }
.vision-list li{
  display:flex; gap:12px; padding:16px 0; border-top:1px solid rgba(10,10,11,0.1);
  font-size:14.5px;
}
.vision-list li b{ font-family:var(--font-mono); color:var(--orange-dark); font-size:13px; flex:none; width:30px; }
@media(min-width:980px){ .vision-grid{ grid-template-columns: 1fr 1fr; gap:70px; } }

/* =========================================================
   Location / contact
   ========================================================= */
.location{ padding:90px 0; }
.location-grid{ display:grid; gap:24px; }
.location-card{
  border:1px solid var(--line); border-radius: var(--radius-l);
  overflow:hidden;
}
.location-map{ width:100%; aspect-ratio: 4/3; border:0; filter: grayscale(0.4) invert(0.92) contrast(0.9); }
.location-info{ padding: 26px; }
.location-info h3{ font-family: var(--font-display); font-size:20px; font-weight:700; margin-bottom:18px; }
.info-row{
  display:flex; gap:14px; padding: 14px 0; border-top:1px solid var(--line-soft);
}
.info-row:first-of-type{ border-top:0; }
.info-row .ic{
  width:36px; height:36px; border-radius:9px; flex:none;
  background: rgba(255,196,0,0.12); color:var(--orange);
  display:flex; align-items:center; justify-content:center;
}
.info-row .ic svg{ width:17px; height:17px; }
.info-row .k{ font-family:var(--font-mono); font-size:11px; color:var(--grey-500); text-transform:uppercase; letter-spacing:.04em; }
.info-row .v{ font-size:14.5px; color:var(--white); margin-top:3px; }
.info-row a.v:hover{ color: var(--orange); }
@media(min-width:980px){ .location-grid{ grid-template-columns: 1.2fr 1fr; } }

/* =========================================================
   CTA banner
   ========================================================= */
.cta-band{
  padding: 70px 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--black);
}
.cta-band-inner{
  display:flex; flex-direction:column; gap:26px;
}
.cta-band h2{ font-family:var(--font-display); font-weight:700; font-size:clamp(26px,5.5vw,40px); line-height:1.1; max-width:16ch; }
.cta-band p{ margin-top:12px; max-width:44ch; color: rgba(10,10,11,0.75); }
.cta-band .actions{ display:flex; flex-wrap:wrap; gap:12px; }
.cta-band .btn-primary{ background: var(--black); color: var(--white); }
.cta-band .btn-primary:hover{ background: var(--charcoal); }
.cta-band .btn-ghost-light{ border-color: rgba(10,10,11,0.35); }
@media(min-width:980px){
  .cta-band-inner{ flex-direction:row; align-items:center; justify-content:space-between; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer{ background: var(--charcoal); padding: 60px 0 26px; }
.footer-grid{ display:grid; gap:36px; }
.footer-brand .logo{ margin-bottom:14px; }
.footer-brand p{ font-size:13.5px; color:var(--grey-500); max-width:36ch; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{
  width:36px; height:36px; border-radius:9px; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.footer-social a:hover{ border-color:var(--orange); color:var(--orange); }
.footer-social svg{ width:16px; height:16px; }
.footer-col h5{
  font-family:var(--font-mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.06em;
  color:var(--grey-500); margin-bottom:16px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:14px; color:var(--grey-300); }
.footer-col a:hover{ color:var(--orange); }
.footer-bottom{
  margin-top:50px; padding-top:22px; border-top:1px solid var(--line);
  display:flex; flex-direction:column; gap:10px;
  font-family: var(--font-mono); font-size:11.5px; color:var(--grey-500);
}
@media(min-width:700px){
  .footer-grid{ grid-template-columns: 1.3fr repeat(3,1fr); gap:24px; }
  .footer-bottom{ flex-direction:row; justify-content:space-between; }
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
[data-reveal]{
  opacity:0; transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible{ opacity:1; transform:none; }

/* =========================================================
   Back to top
   ========================================================= */
.to-top{
  position: fixed; right:18px; bottom:18px; z-index:80;
  width:44px; height:44px; border-radius:50%;
  background: var(--orange); color: var(--black);
  display:flex; align-items:center; justify-content:center;
  border:0; opacity:0; pointer-events:none; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  box-shadow: 0 10px 26px -8px rgba(255,196,0,0.6);
}
.to-top.is-visible{ opacity:1; pointer-events:auto; transform:none; }
.to-top svg{ width:18px; height:18px; }

/* =========================================================
   Formulaire (page devis)
   ========================================================= */
.quote{ padding: 150px 0 90px; }
.quote-head{ max-width: 62ch; margin-bottom: 44px; }
.quote-head p{ margin-top:14px; color: var(--grey-300); font-size:16px; }
.quote-layout{ display:grid; gap: 30px; }
.quote-form{
  border:1px solid var(--line); border-radius: var(--radius-l);
  background: var(--charcoal);
  padding: 28px;
  display:flex; flex-direction:column; gap:20px;
}
.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-family: var(--font-mono); font-size:12px; color:var(--grey-300); text-transform:uppercase; letter-spacing:.04em; }
.field .req{ color: var(--orange); }
.field input,
.field select,
.field textarea{
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 13px 14px;
  color: var(--white);
  transition: border-color .2s var(--ease);
  width:100%;
}
.field input::placeholder,
.field textarea::placeholder{ color: var(--grey-500); }
.field input:focus,
.field select:focus,
.field textarea:focus{ border-color: var(--orange); outline:none; }
.field textarea{ resize: vertical; min-height: 110px; }
.field-row{ display:grid; gap:20px; grid-template-columns: 1fr; }
@media(min-width:640px){ .field-row{ grid-template-columns: 1fr 1fr; } }

.checks{ display:flex; flex-direction:column; gap:10px; }
.check-item{
  display:flex; align-items:center; gap:10px;
  border:1px solid var(--line); border-radius: var(--radius-s);
  padding: 12px 14px; font-size:14px; color: var(--grey-300);
  cursor:pointer;
}
.check-item input{ accent-color: var(--orange); width:16px; height:16px; flex:none; }
.check-item:has(input:checked){ border-color: var(--orange); color: var(--white); }

.form-note{
  font-size: 12.5px; color: var(--grey-500);
  display:flex; align-items:flex-start; gap:8px;
}
.form-note svg{ width:15px; height:15px; flex:none; margin-top:1px; color: var(--orange); }

.quote-side{ display:flex; flex-direction:column; gap:18px; }
.side-card{
  border:1px solid var(--line); border-radius: var(--radius-m);
  padding: 22px;
}
.side-card h4{ font-family: var(--font-display); font-size:15.5px; font-weight:700; margin-bottom:10px; }
.side-card p, .side-card li{ font-size:13.5px; color: var(--grey-500); }
.side-card ul{ display:flex; flex-direction:column; gap:8px; }
.side-card li{ display:flex; gap:8px; align-items:flex-start; }
.side-card li svg{ width:15px; height:15px; color:#3DDC7A; flex:none; margin-top:2px; }

@media(min-width: 980px){
  .quote-layout{ grid-template-columns: 1.6fr 1fr; align-items:start; }
}