/*
 * ══════════════════════════════════════════════════════════════════
 *  BOVARD ÉLECTRICITÉ — Feuille de styles
 *  Site vitrine one-page — Abondance, Haut-Chablais
 * ══════════════════════════════════════════════════════════════════
 *
 *  Aucune référence design fournie dans le brief — design original.
 *
 *  DIRECTION ESTHÉTIQUE
 *  ─────────────────────
 *  Univers : technique, précis, alpin. L'électricité évoque la
 *  rigueur, la haute tension, la nuit éclairée. La montagne apporte
 *  la minéralité et la sobriété.
 *  Registre : sobre, professionnel, rassurant — jamais froid.
 *
 *  PALETTE
 *  ─────────────────────
 *  --color-primary   : #1B3A6B  → bleu marine profond (confiance)
 *  --color-accent    : #2F7FE8  → bleu électrique vif (énergie)
 *  --color-dark      : #1C2330  → anthracite quasi-noir
 *  --color-mid       : #374151  → gris anthracite (texte secondaire)
 *  --color-light     : #F4F6FA  → gris très clair (fonds alternés)
 *  --color-white     : #FFFFFF
 *  --color-accent-muted : rgba(47,127,232,.12) (fond icônes)
 *
 *  TYPOGRAPHIE
 *  ─────────────────────
 *  Titres   : Barlow Condensed 700/800 — géométrique, technique,
 *             condensé → évoque les repères de tableaux électriques
 *  Sous-titres / UI : Barlow 600/700
 *  Corps    : Source Sans 3 400/600 — lisibilité maximale
 *
 *  ÉLÉMENT NON-CONVENTIONNEL
 *  ─────────────────────
 *  Le bas du Hero et le haut de la section Services utilisent un
 *  découpage diagonal (clip-path polygon) créant une rupture
 *  dynamique entre les sections — signature visuelle du site.
 *
 * ══════════════════════════════════════════════════════════════════
 */

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--color-mid);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* ─────────────────────────────────────────
   VARIABLES CSS
───────────────────────────────────────── */
:root {
  --color-primary:      #1B3A6B;
  --color-accent:       #2F7FE8;
  --color-dark:         #1C2330;
  --color-mid:          #374151;
  --color-light:        #F4F6FA;
  --color-white:        #FFFFFF;
  --color-accent-muted: rgba(47, 127, 232, 0.12);
  --color-accent-hover: #1A60C4;

  --font-heading: 'Barlow Condensed', sans-serif;
  --font-ui:      'Barlow', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 4px 20px rgba(28, 35, 48, .10);
  --shadow-lg: 0 8px 40px rgba(28, 35, 48, .18);

  --max-width: 1160px;
  --section-gap: 96px;
  --header-h: 68px;
}

/* ─────────────────────────────────────────
   UTILITAIRES
───────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-gap) 0;
}

.section-label {
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 24px;
}

h3 {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

p {
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

/* ─────────────────────────────────────────
   BOUTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  box-shadow: 0 6px 24px rgba(47,127,232,.4);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,.6);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--color-white);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-light);
  border-color: var(--color-light);
}

.btn-sm {
  padding: 10px 20px;
  font-size: .9rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
.fade-in {
  animation: fadeIn .9s ease both;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s ease, transform .7s ease;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.slide-in-left.visible,
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background .3s, box-shadow .3s;
}

.site-header.scrolled {
  background: var(--color-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--color-white);
  text-transform: uppercase;
}

.logo-text strong {
  color: var(--color-accent);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}

.main-nav a:hover {
  color: var(--color-white);
  background: rgba(255,255,255,.1);
}

.main-nav .nav-cta {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 9px 18px;
  border-radius: var(--radius);
}

.main-nav .nav-cta:hover {
  background: var(--color-accent-hover);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────
   HERO
   ─ Élément non-conventionnel : découpage
     diagonal en bas via clip-path
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  /*
   * IMAGE À AJOUTER : décommenter la ligne ci-dessous et remplacer
   * images/hero-bg.jpg par le chemin réel une fois la photo déposée
   background-image: url('images/hero-bg.jpg');
   */
  background-image: url('images/hero-bg.jpg');
  background-color: var(--color-primary);
  /*background-image:
    radial-gradient(ellipse at 70% 40%, rgba(47,127,232,.35) 0%, transparent 60%),
    linear-gradient(160deg, var(--color-dark) 0%, var(--color-primary) 100%);*/
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  padding-top: var(--header-h);
  margin-bottom: -80px;
  padding-bottom: 120px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 35, 48, .7) 0%,
    rgba(28, 35, 48, .3) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-label {
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 800;
  line-height: .95;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 24px;
}

.hero h1 strong {
  color: var(--color-accent);
  display: block;
}

.hero-tagline {
  font-family: var(--font-ui);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  margin-bottom: 36px;
}

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

.hero-chevron {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-chevron a {
  font-size: 1.5rem;
  color: rgba(255,255,255,.5);
  animation: bounce 1.8s ease-in-out infinite;
  display: block;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ─────────────────────────────────────────
   USP BAR
───────────────────────────────────────── */
.usp-bar {
  background: var(--color-accent);
  padding: 18px 0;
  position: relative;
  z-index: 1;
}

.usp-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 40px;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 700;
  white-space: nowrap;
}

.usp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--color-white);
  fill: none;
}

/* ─────────────────────────────────────────
   À PROPOS
───────────────────────────────────────── */
.apropos {
  background: var(--color-white);
  padding-top: calc(var(--section-gap) + 60px);
}

.apropos-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}

.apropos-visual {
  position: relative;
}

.apropos-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--color-light) 0%, rgba(47,127,232,.08) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(47,127,232,.25);
}

.apropos-placeholder span {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(47,127,232,.2);
  letter-spacing: .05em;
}

.apropos-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-accent);
  color: var(--color-white);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  border: 4px solid var(--color-white);
}

.apropos-badge strong {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}

.apropos-badge span {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.2;
}

.apropos-text p {
  color: var(--color-mid);
  font-size: 1.05rem;
}

.apropos-text em {
  font-style: italic;
  color: var(--color-primary);
}

.apropos-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(47,127,232,.15);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.stat span {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-mid);
}

/* ─────────────────────────────────────────
   SERVICES
   ─ Deuxième élément diagonal (haut de section)
───────────────────────────────────────── */
.services {
  background: var(--color-light);
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(var(--section-gap) + 48px);
  margin-top: -48px;
}

.services h2,
.services .section-label {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-accent);
}

.service-card p {
  font-size: .95rem;
  color: var(--color-mid);
  flex: 1;
}

/* Carte CTA */
.service-card--cta {
  background: var(--color-primary);
  color: var(--color-white);
}

.service-card--cta h3 {
  color: var(--color-white);
}

.service-card--cta p {
  color: rgba(255,255,255,.78);
}

.service-card--cta .btn {
  margin-top: 20px;
}

.service-icon--light {
  background: rgba(255,255,255,.12);
}

.service-icon--light svg {
  stroke: var(--color-white);
}

/* ─────────────────────────────────────────
   RÉALISATIONS
───────────────────────────────────────── */
.realisations {
  background: var(--color-white);
}

.realisations h2 {
  text-align: center;
}

.realisations .section-label {
  text-align: center;
}

.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.real-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  background: var(--color-light);
}

.real-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.real-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-light) 0%, rgba(47,127,232,.06) 100%);
  border-bottom: 1px dashed rgba(47,127,232,.2);
}

.real-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.real-item figcaption {
  padding: 14px 16px;
  font-size: .88rem;
  font-weight: 600;
  font-family: var(--font-ui);
  color: var(--color-primary);
  line-height: 1.4;
}

/* ─────────────────────────────────────────
   TÉMOIGNAGES
───────────────────────────────────────── */
.temoignages {
  background: var(--color-dark);
  color: var(--color-white);
}

.temoignages .section-label {
  color: var(--color-accent);
  text-align: center;
}

.temoignages h2 {
  color: var(--color-white);
  text-align: center;
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.temoignage {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  transition: background .25s;
}

.temoignage:hover {
  background: rgba(255,255,255,.1);
}

.quote-mark {
  width: 32px;
  height: 24px;
  fill: var(--color-accent);
  stroke: none;
  opacity: .5;
  margin-bottom: 18px;
}

.temoignage p {
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
  margin-bottom: 20px;
}

.temoignage footer {
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: .04em;
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact {
  background: var(--color-light);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-label,
.contact-info h2 {
  /* left-aligned, default */
}

.contact-zone {
  color: var(--color-mid);
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.contact-details li a {
  color: var(--color-primary);
  transition: color .2s;
}

.contact-details li a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--color-accent);
}

.urgence-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(47,127,232,.1);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 16px;
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0;
}

.urgence-note svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent);
  flex-shrink: 0;
}

/* Formulaire */
.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group:last-of-type {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: .02em;
}

label span {
  color: var(--color-accent);
  margin-left: 2px;
}

input,
textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--color-dark);
  background: var(--color-light);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  padding: 12px 14px;
  width: 100%;
  transition: border-color .2s, background .2s;
  outline: none;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(55,65,81,.4);
}

input:focus,
textarea:focus {
  border-color: var(--color-accent);
  background: var(--color-white);
}

.form-note {
  text-align: center;
  font-size: .8rem;
  color: rgba(55,65,81,.6);
  margin-top: 12px;
  margin-bottom: 0;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding: 56px 24px 40px;
  align-items: start;
}

.footer-brand .logo-text {
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin: 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a {
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}

.footer-contact a:hover {
  color: var(--color-accent);
}

.footer-contact span {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .9rem;
  font-family: var(--font-ui);
  color: rgba(255,255,255,.6);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: .8rem;
  font-family: var(--font-ui);
  color: rgba(255,255,255,.4);
  transition: color .2s;
}

.footer-legal a:hover {
  color: rgba(255,255,255,.8);
  text-decoration: underline;
}

/* ─────────────────────────────────────────
   RESPONSIVE — 1024px
───────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-gap: 72px;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ─────────────────────────────────────────
   RESPONSIVE — 768px
───────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-gap: 56px;
    --header-h: 60px;
  }

  /* Header mobile */
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 105;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .main-nav a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 14px 24px;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
    text-align: center;
    padding-bottom: 100px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-chevron {
    bottom: 60px;
  }

  /* USP */
  .usp-inner {
    gap: 16px 24px;
  }

  .usp-item span {
    font-size: .85rem;
  }

  /* À propos */
  .apropos-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .apropos-visual {
    max-width: 320px;
    margin: 0 auto;
  }

  .apropos-badge {
    right: -10px;
    bottom: -10px;
  }

  .apropos-stats {
    gap: 20px;
  }

  /* Services */
  .services {
    clip-path: polygon(0 28px, 100% 0, 100% 100%, 0 100%);
    padding-top: calc(var(--section-gap) + 28px);
  }

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

  /* Réalisations */
  .realisations-grid {
    grid-template-columns: 1fr;
  }

  /* Témoignages */
  .temoignages-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 28px 24px;
  }

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

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 24px 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ─────────────────────────────────────────
   RESPONSIVE — 480px
───────────────────────────────────────── */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: .9rem;
  }

  .apropos-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .usp-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
