/* ═══════════════════════════════════════════════
   SCROLLBAR PERSONNALISÉE
════════════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #fff700, rgba(255, 247, 0, 0.4));
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: #fff700;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #fff700 #0f0f0f;
}

/* ═══════════════════════════════════════════════
   VARIABLES
════════════════════════════════════════════════ */
:root {
  --y: #fff700;
  --y-dim: rgba(255, 247, 0, 0.12);
  --y-border: rgba(255, 247, 0, 0.24);
  --y-glow: rgba(255, 247, 0, 0.08);
  --bg0: #0a0a0a;
  --bg1: #111111;
  --bg2: #171717;
  --bg3: #1c1c1c;
  --text: #f0f0f0;
  --muted: rgba(255, 255, 255, 0.48);
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --r: 20px;
  --max: 1360px;
  --px: clamp(20px, 5vw, 100px);
}

/* ═══════════════════════════════════════════════
   RESET + BASE
════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg0);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.55;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

p {
  line-height: 1.65;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max), 94%);
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid var(--y-border);
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 3vw, 40px);
  gap: 20px;
  z-index: 1000;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 247, 0, 0.04) inset;
  transition: box-shadow 0.3s;
}

#navbar.scrolled {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 247, 0, 0.06) inset;
}

.brand {
  font-family: 'Bungee', sans-serif;
  color: var(--y);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  text-shadow: 0 0 30px rgba(255, 247, 0, 0.4);
}

a,
button,
div,
span {
  -webkit-tap-highlight-color: transparent;
}

/* PC nav */
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(2px, 0.8vw, 6px);
  list-style: none;
}

.nav-links a {
  display: block;
  padding: clamp(7px, 1vh, 10px) clamp(12px, 1.5vw, 20px);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: clamp(0.75rem, 1vw, 0.92rem);
  letter-spacing: 0.02em;
  transition: color 0.22s, background 0.22s;
  white-space: nowrap;
}

.nav-links a.active {
  color: var(--y);
  background: var(--y-dim);
  box-shadow: 0 0 0 1px var(--y-border);
}

/* CTA nav */
.nav-cta {
  background: var(--y);
  color: #111;
  font-weight: 900;
  font-family: 'Nunito', sans-serif;
  padding: clamp(8px, 1.2vh, 12px) clamp(18px, 2vw, 28px);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Mobile toggle */
.burger {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--y-border);
  color: var(--y);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
}

.burger.open {
  background: var(--y-dim);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: calc(var(--nav-h) + 24px);
  right: max(16px, 3%);
  background: rgba(12, 12, 12, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--y-border);
  border-radius: 18px;
  padding: 16px;
  gap: 6px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.65);
  z-index: 999;
  min-width: 220px;
  animation: menuIn 0.22s var(--ease) both;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 20px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════════ */
section {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 70px) var(--px) clamp(80px, 12vh, 130px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

section + section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--y-border), transparent);
}

.inner {
  width: 100%;
  max-width: var(--max);
}

/* Section titles */
.eyebrow {
  display: inline-block;
  padding: 5px 18px;
  border-radius: 999px;
  background: var(--y-dim);
  color: var(--y);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--y-border);
  margin-bottom: 20px;
}

.eyebrow2 {
  display: inline-block;
  width: fit-content;
  padding: 5px 18px;
  border-radius: 10px;
  background: var(--y-dim);
  color: var(--y);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--y-border);
  margin-bottom: 20px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(12px, 2vh, 16px) clamp(28px, 4vw, 44px);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  letter-spacing: 0.03em;
  transition: all 0.26s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--y);
  color: #111;
  box-shadow: 0 4px 18px rgba(255, 247, 0, 0.22);
}

.btn-ghost {
  color: var(--y);
  border: 2px solid var(--y-border);
  background: transparent;
}

/* ═══════════════════════════════════════════════
   SECTION 1 — HERO
════════════════════════════════════════════════ */
#hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url("Image/Image-13.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Orb décoratif */
.hero-orb {
  position: absolute;
  width: clamp(400px, 60vw, 900px);
  height: clamp(400px, 60vw, 900px);
  background: radial-gradient(circle, rgba(255, 247, 0, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: orbPulse 6s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vh, 40px);
}

.hero-title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--y);
  text-shadow: 0 0 40px rgba(255, 247, 0, 0.5);
}

.hero-desc {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: clamp(14px, 2vw, 22px);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: clamp(28px, 4vw, 48px);
  flex-wrap: wrap;
  margin-top: 10px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-n {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--y);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 247, 0, 0.35);
}

.stat-l {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Cards compétences droite */
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 22px);
}

.skill-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 247, 0, 0.1);
  border-radius: var(--r);
  padding: clamp(22px, 3vh, 34px) clamp(18px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--y), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.skill-icon {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  width: 48px;
  height: 48px;
  background: var(--y-dim);
  border: 1px solid var(--y-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-name {
  font-weight: 900;
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  color: #fff;
}

.skill-desc {
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   SECTION 2 — CRÉATIONS
════════════════════════════════════════════════ */
#creations {
  background: var(--bg1);
}

#creations .inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 7vh, 70px);
}

#creations h1 {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.project-card {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(255, 247, 0, 0.1);
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
  position: relative;
}

.project-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  height: auto;
}

.project-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s var(--ease), filter 0.55s;
  filter: brightness(0.7) saturate(0.65);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75));
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.35s;
}

.project-overlay .project-btn {
  background: var(--y);
  color: #111;
  font-weight: 900;
  font-size: 0.82rem;
  padding: 8px 20px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  transition: transform 0.2s;
  display: inline-block;
}

.project-info {
  padding: clamp(18px, 3vh, 28px) clamp(20px, 2.5vw, 30px);
  background: rgba(10, 10, 10, 0.65);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.project-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--y-dim);
  color: var(--y);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--y-border);
  width: fit-content;
}

.project-info h3 {
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  font-weight: 900;
  color: #fff;
}

.project-info p {
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  color: var(--muted);
  max-width: none;
  margin: 0;
}

/* ═══════════════════════════════════════════════
   SECTION 3 — SERVICES
════════════════════════════════════════════════ */
#services {
  background: var(--bg2);
}

#services .inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 7vh, 65px);
}

#services h1 {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vh, 28px);
}

.service-item {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  padding: clamp(24px, 4vh, 44px) clamp(28px, 4vw, 56px);
  border: 1px solid rgba(255, 247, 0, 0.08);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.32s var(--ease), border-color 0.32s, background 0.32s;
}

.service-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  background: var(--y);
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}

.service-num {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: rgba(255, 247, 0, 0.15);
  flex-shrink: 0;
  line-height: 1;
  min-width: clamp(50px, 6vw, 80px);
}

.service-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-body h2 {
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  font-weight: 900;
  color: #fff;
}

.service-body p {
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0;
}

.service-price {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.price-label {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-value {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  color: var(--y);
  text-shadow: 0 0 20px rgba(255, 247, 0, 0.3);
}

/* ═══════════════════════════════════════════════
   SECTION 4 — PROCESSUS
════════════════════════════════════════════════ */
#processus {
  background: var(--bg0);
}

#processus .inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 7vh, 65px);
}

#processus h1 {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.step-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 247, 0, 0.1);
  border-radius: var(--r);
  padding: clamp(28px, 4vh, 44px) clamp(22px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.step-num {
  font-family: 'Bungee', sans-serif;
  font-size: 3.5rem;
  color: rgba(255, 247, 0, 0.08);
  line-height: 1;
  position: absolute;
  top: 14px;
  right: 20px;
  pointer-events: none;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--y-dim);
  border: 1px solid var(--y-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.step-card h3 {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 900;
  color: #fff;
}

.step-card p {
  font-size: clamp(0.82rem, 1vw, 0.92rem);
  color: var(--muted);
  margin: 0;
  max-width: none;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   SECTION 5 — AVIS
════════════════════════════════════════════════ */
#avis {
  background: var(--bg1);
}

#avis .inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 7vh, 65px);
}

#avis h1 {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 247, 0, 0.1);
  border-radius: var(--r);
  padding: clamp(24px, 3.5vh, 40px) clamp(22px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.32s var(--ease), border-color 0.32s;
  position: relative;
}

.review-stars {
  display: flex;
  gap: 4px;
}

.star {
  color: var(--y);
  font-size: 1rem;
  text-shadow: 0 0 8px rgba(255, 247, 0, 0.5);
}

.review-text {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--y-dim);
  border: 1px solid var(--y-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.author-name {
  font-weight: 900;
  font-size: 0.95rem;
  color: #fff;
}

.author-role {
  font-size: 0.75rem;
  color: var(--muted);
}

.review-quote-mark {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 4rem;
  color: rgba(255, 247, 0, 0.06);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   SECTION 6 — CONTACT
════════════════════════════════════════════════ */
#contact {
  background: var(--bg2);
}

#contact .inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 7vh, 65px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vh, 44px);
}

.contact-left h1 {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.contact-left p {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  max-width: 520px;
}

.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(16px, 2.5vh, 22px) clamp(18px, 2.5vw, 26px);
  border: 1px solid rgba(255, 247, 0, 0.1);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s, background 0.25s;
  text-decoration: none;
}

.contact-row-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--y-dim);
  border: 1px solid var(--y-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-row-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-row-label {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-row-value {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  color: #fff;
  font-weight: 700;
}

/* Formulaire */
.contact-form {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 247, 0, 0.1);
  border-radius: var(--r);
  padding: clamp(28px, 4vh, 48px) clamp(24px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vh, 26px);
}

.contact-form h2 {
  font-family: 'Bungee', sans-serif;
  color: var(--y);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
  background: rgba(0, 0, 0, 0.4);
  color: var(--text);
  border: 1px solid rgba(255, 247, 0, 0.16);
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 0.95rem;
  font-family: 'Nunito', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--y);
  box-shadow: 0 0 0 3px rgba(255, 247, 0, 0.1);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

/* ═══════════════════════════════════════════════
   SECTION 7 — À PROPOS
════════════════════════════════════════════════ */
#propos {
  background: var(--bg0);
}

#propos .inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 7vh, 65px);
}

.propos-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.propos-left {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vh, 40px);
}

.propos-left h1 {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.propos-left p {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  max-width: 600px;
}

.propos-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.tag {
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--y-dim);
  border: 1px solid var(--y-border);
  color: var(--y);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.propos-right {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vh, 26px);
}

.info-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 247, 0, 0.1);
  border-radius: var(--r);
  padding: clamp(22px, 3vh, 34px) clamp(22px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s;
}

.info-block h3 {
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--y);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: clamp(0.82rem, 1vw, 0.9rem);
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-row span:first-child {
  color: var(--muted);
}

.info-row span:last-child {
  color: #fff;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
footer {
  background: var(--bg0);
  border-top: 1px solid #fff7001a;
  padding: clamp(28px, 5vh, 44px) var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  font-family: 'Bungee', sans-serif;
  color: var(--y);
  font-size: 1.4rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-inner {
  max-width: 1000px;
  margin: auto;
}

.footer-brand {
  font-size: 1.4rem;
  color: #fff700;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #aaa;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  margin-bottom: 15px;
  font-size: 0.85rem;
}

.footer-contact a {
  color: #aaa;
  text-decoration: none;
}

.footer-bottom {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════
   ANIMATIONS SCROLL
════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.08s;
}

.reveal-d2 {
  transition-delay: 0.16s;
}

.reveal-d3 {
  transition-delay: 0.24s;
}

.reveal-d4 {
  transition-delay: 0.32s;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-right {
    grid-template-columns: 1fr 1fr;
  }

  .propos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-links,
  .nav-cta {
    display: none !important;
  }

  .burger {
    display: flex !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    display: none;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .service-price {
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .propos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  section {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ═══════════════════════════════════════════════
   TOUS LES HOVER (uniquement sur desktop ≥ 770px)
════════════════════════════════════════════════ */
@media (min-width: 770px) {
  /* Navbar hover */
  .nav-links a:hover {
    color: var(--y);
    background: var(--y-dim);
  }

  .nav-cta:hover {
    background: #ffe800;
    box-shadow: 0 6px 28px rgba(255, 247, 0, 0.38);
    transform: translateY(-2px);
  }

  .burger:hover {
    background: var(--y-dim);
  }

  .mobile-menu a:hover {
    background: var(--y-dim);
    color: var(--y);
  }

  /* Buttons hover */
  .btn-primary:hover {
    background: #ffe800;
    box-shadow: 0 10px 36px rgba(255, 247, 0, 0.42);
    transform: translateY(-3px);
  }

  .btn-ghost:hover {
    background: var(--y-dim);
    border-color: var(--y);
    transform: translateY(-3px);
  }

  /* Skill cards hover */
  .skill-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 247, 0, 0.28);
    background: rgba(255, 247, 0, 0.04);
  }

  .skill-card:hover::before {
    opacity: 1;
  }

  /* Project cards hover */
  .project-card:hover {
    transform: translateY(-14px) scale(1.01);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 247, 0, 0.3);
    border-color: rgba(255, 247, 0, 0.3);
  }

  .project-card:hover .project-thumb img {
    transform: scale(1.05);
    filter: brightness(0.92) saturate(1);
  }

  .project-card:hover .project-overlay {
    opacity: 1;
  }

  .project-overlay .project-btn:hover {
    transform: scale(1.05);
    cursor: pointer;
  }

  /* Service items hover */
  .service-item:hover {
    border-color: rgba(255, 247, 0, 0.22);
    background: rgba(255, 247, 0, 0.03);
    transform: translateX(10px);
  }

  .service-item:hover::after {
    transform: scaleY(1);
  }

  /* Step cards hover */
  .step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 247, 0, 0.26);
  }

  /* Review cards hover */
  .review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 247, 0, 0.24);
  }

  /* Contact row hover */
  .contact-row:hover {
    border-color: rgba(255, 247, 0, 0.28);
    background: rgba(255, 247, 0, 0.04);
  }

  /* Info block hover */
  .info-block:hover {
    border-color: rgba(255, 247, 0, 0.26);
  }
}

