/* ============================================
   AZORIA — REFONTE ULTIME v3
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #4475AA;
  --blue-deep:  #1E4D7B;
  --blue-light: #D0E2F4;
  --blue-pale:  #EBF3FC;
  --black:      #1A1A2E;
  --grey:       #6B7280;
  --grey-light: #F4F7FB;
  --bg:         #FFFFFF;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
  --radius:     28px;
  --radius-sm:  18px;
  --shadow:     0 4px 32px rgba(68,117,170,.08);
  --shadow-lg:  0 16px 64px rgba(68,117,170,.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--black);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ---- TYPOGRAPHIE ---- */
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.9vw, 4.35rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--black);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .82rem 1.6rem;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(68,117,170,.12);
  box-shadow: 0 10px 28px rgba(68,117,170,.08);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.works-header .section-label,
.method-header .section-label,
.section-offres > .section-label,
.temo-header .section-label,
.section-contact > .section-label {
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

/* ---- BOUTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  background: var(--blue);
  color: white;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(68,117,170,.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  background: transparent;
  color: white;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: white;
}

/* ============================================
   NAVIGATION — style Grovia
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1220px, calc(100% - 128px));
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 1.4rem;
  padding: 1.25rem 2.4rem;
  transition:
    width .42s cubic-bezier(.4,0,.2,1),
    padding .38s cubic-bezier(.4,0,.2,1),
    top .38s cubic-bezier(.4,0,.2,1),
    background .32s ease,
    border-color .32s ease,
    box-shadow .32s ease,
    border-radius .38s cubic-bezier(.4,0,.2,1);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: none;
}

/* État scrollé : pill flottante centrée */
#navbar.scrolled {
  top: 14px;
  width: min(1020px, calc(100% - 160px));
  padding: .72rem 1.8rem;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 60px;
  box-shadow: 0 4px 40px rgba(68,117,170,.14), 0 1px 0 rgba(255,255,255,.6) inset;
  border: 1px solid rgba(68,117,170,.1);
}

.nav-logo {
  position: relative;
  display: block;
  width: 210px;
  height: 50px;
}
.nav-logo img {
  position: absolute;
  left: 0;
  top: 50%;
  object-fit: contain;
  object-position: left center;
  transition: opacity .28s ease, transform .28s ease;
}
.logo-light {
  width: 208px;
  height: auto;
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.logo-dark  {
  width: 182px;
  height: auto;
  opacity: 0;
  transform: translateY(calc(-50% + 3px)) scale(.985);
}
#navbar.scrolled .logo-light {
  opacity: 0;
  transform: translateY(calc(-50% - 3px)) scale(.985);
}
#navbar.scrolled .logo-dark  {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  justify-self: center;
}
.nav-links a {
  font-size: .96rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  letter-spacing: .02em;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: .7; }
#navbar.scrolled .nav-links a { color: var(--black); }
#navbar.scrolled .nav-links a:hover { color: var(--blue); opacity: 1; }

.btn-devis {
  justify-self: end;
  padding: .6rem 1.5rem;
  border-radius: 50px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.4);
  color: white;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
  backdrop-filter: blur(8px);
}
.btn-devis:hover { background: rgba(255,255,255,.3); }
#navbar.scrolled .btn-devis {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
#navbar.scrolled .btn-devis:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px; transition: background .3s;
}
#navbar.scrolled .nav-burger span { background: var(--black); }

/* ============================================
   HERO
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #1E4D7B 0%,
    #2D6499 20%,
    #4475AA 45%,
    #7AAED4 68%,
    #C2DCF0 85%,
    #FFFFFF 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 960px;
  transform: translateY(-32px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.4rem;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50px;
  font-size: .86rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .34em;
  color: white;
  margin-bottom: 2.55rem;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.3vw, 4.55rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: white;
  margin-bottom: 1.9rem;

}
@media (max-width: 700px) {
  .hero-title { white-space: normal; font-size: clamp(2.2rem, 8.5vw, 3.45rem); }
  .hero-content { transform: translateY(-14px); }
}
.hero-title em {
  font-style: normal;
  font-weight: 700;
  color: white;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  letter-spacing: .05em;
  margin-bottom: 3.1rem;
  font-weight: 300;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-ctas .btn-primary {
  background: white;
  color: var(--blue-deep);
  box-shadow: 0 8px 32px rgba(30,77,123,.25);
}
.hero-ctas .btn-primary:hover {
  background: var(--blue-light);
  box-shadow: 0 12px 40px rgba(30,77,123,.35);
}

/* Bulles flottantes */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(30,77,123,.18), inset 0 1px 0 rgba(255,255,255,.3);
  z-index: 1;
}
.bubble svg { opacity: .9; }
.bubble-1 { width: 90px; height: 90px; top: 20%; left: 14%; animation: float1 7s ease-in-out infinite; }
.bubble-1 svg { width: 40px; height: 40px; }
.bubble-2 { width: 68px; height: 68px; top: 38%; left: 8%; animation: float2 9s ease-in-out infinite; }
.bubble-2 svg { width: 30px; height: 30px; }
.bubble-3 { width: 80px; height: 80px; top: 16%; right: 13%; animation: float3 8s ease-in-out infinite; }
.bubble-3 svg { width: 36px; height: 36px; }
.bubble-4 { width: 60px; height: 60px; top: 58%; right: 10%; animation: float1 10s ease-in-out infinite .5s; }
.bubble-4 svg { width: 26px; height: 26px; }
.bubble-5 { width: 96px; height: 96px; top: 62%; left: 10%; animation: float2 11s ease-in-out infinite 1s; }
.bubble-5 svg { width: 44px; height: 44px; }

@keyframes float1 {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%  { transform: translateY(-18px) rotate(3deg); }
  66%  { transform: translateY(-9px) rotate(-2deg); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0) rotate(0deg); }
  40%  { transform: translateY(-22px) rotate(-4deg); }
  70%  { transform: translateY(-11px) rotate(2deg); }
}
@keyframes float3 {
  0%,100% { transform: translateY(0) translateX(0); }
  30%  { transform: translateY(-14px) translateX(7px); }
  60%  { transform: translateY(-22px) translateX(-5px); }
}

/* ============================================
   OUTILS — marquee centré avec fondu
   ============================================ */
.tools-bar {
  padding: 2.8rem 0 4rem;
  overflow: hidden;
  position: relative;
}
.tools-label {
  text-align: center;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.4rem;
}
.marquee-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: marquee 20s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tool-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--grey);
  white-space: nowrap;
  padding: .5rem 1.2rem;
  background: var(--grey-light);
  border-radius: 50px;
  border: 1px solid rgba(68,117,170,.1);
}
.tool-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,255,255,.72);
}
.tool-dot-navy { background: #7fa6cf; }
.tool-dot-gold { background: #efb2ab; }
.tool-dot-sky { background: #86c8ea; }
.tool-dot-blue { background: #95b5e5; }
.tool-dot-mint { background: #88d3bf; }
.tool-dot-rose { background: #e3a6b7; }
.tool-dot-soft { background: #b8c7e6; }
.tool-dot-steel { background: #9fb8d8; }

/* ============================================
   HIGHLIGHTS
   ============================================ */
.section-highlights {
  padding: 2.2rem 3rem 6.4rem;
  max-width: 1140px;
  margin: 0 auto;
}
.highlights-header {
  max-width: 720px;
  margin: 0 auto 2.8rem;
  text-align: center;
}
.highlights-header p {
  margin-top: .9rem;
  font-size: .96rem;
  line-height: 1.75;
  color: var(--grey);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.highlight-card {
  background: white;
  border: 1px solid rgba(68,117,170,.12);
  border-radius: 24px;
  padding: 1.7rem 1.5rem 1.55rem;
  box-shadow: 0 16px 44px rgba(68,117,170,.08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(68,117,170,.12);
  border-color: rgba(68,117,170,.18);
}
.highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  background: var(--blue);
  color: white;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.highlight-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .75rem;
}
.highlight-card p {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--grey);
}

/* ============================================
   SERVICES — BENTO
   ============================================ */
.section-services {
  padding: 7rem 3rem 11rem;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
}
.services-header {
  text-align: center;
  margin-bottom: 4rem;
}
.services-header .section-title {
  margin-bottom: .75rem;
  font-size: clamp(2.9rem, 5vw, 4.9rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.045em;
}
.services-header p {
  font-size: 1rem;
  color: var(--grey);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.bento-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(68,117,170,.08);
  overflow: hidden;
  margin-bottom: 1.6rem;
  position: sticky;
  top: 116px;
  z-index: var(--stack-z, 1);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s;
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.bento-card.reverse { direction: rtl; }
.bento-card.reverse > * { direction: ltr; }

.bento-visual {
  background: linear-gradient(145deg, var(--blue-pale) 0%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  min-height: 340px;
}
.bento-content {
  padding: 3.2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-icon {
  width: 46px; height: 46px;
  background: var(--blue-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--blue);
}
.bento-icon svg { width: 24px; height: 24px; }
.bento-content h3 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .8rem;
  letter-spacing: -.02em;
}
.bento-content p {
  font-size: .9rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 1.6rem;
}
.bento-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .42rem .95rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  background: var(--blue-pale);
  color: var(--blue-deep);
  border: 1px solid rgba(68,117,170,.15);
}
.tag .check-dot {
  width: 16px; height: 16px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tag .check-dot svg { width: 9px; height: 9px; }

/* Mockups */
.bento-mockup {
  width: 100%;
  max-width: 360px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(68,117,170,.14);
  overflow: hidden;
}

/* Communication mockup */
.comm-mockup { padding: 0; }
.mock-header {
  display: flex; gap: 6px;
  padding: 10px 14px;
  background: #F8FAFD;
  border-bottom: 1px solid #EEF3F9;
}
.mock-header span { width: 10px; height: 10px; border-radius: 50%; background: #DCE8F5; }
.mock-body { padding: 14px; }
.mock-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.mock-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-deep)); flex-shrink: 0; }
.mock-lines { flex: 1; }
.mock-line { height: 8px; background: #EEF3F9; border-radius: 4px; margin-bottom: 4px; }
.mock-line.w80 { width: 80%; }
.mock-line.w50 { width: 50%; }
.mock-stats { display: flex; gap: 8px; margin-bottom: 12px; }
.mock-stat { flex: 1; background: #F4F8FC; border-radius: 10px; padding: 8px; text-align: center; }
.mock-stat-val { font-size: .85rem; font-weight: 700; }
.mock-stat-lbl { font-size: .6rem; color: var(--grey); margin-top: 2px; }
.mock-bar-chart { display: flex; align-items: flex-end; gap: 4px; height: 52px; padding: 0 4px; }
.mock-bar { flex: 1; background: var(--blue-light); border-radius: 3px 3px 0 0; }
.mock-bar.active { background: var(--blue); }

/* Identity mockup */
.id-mockup { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.id-logo-zone {
  display: flex; align-items: center; justify-content: center;
  padding: .95rem 1.1rem;
  background: var(--blue);
  border-radius: 12px;
}
.id-logo-zone img { width: 100%; max-width: 220px; height: auto; object-fit: contain; }
.id-palette { display: flex; gap: 6px; }
.id-swatch { flex: 1; height: 28px; border-radius: 6px; }
.id-typo { display: flex; flex-direction: column; gap: 4px; }

/* Web mockup */
.web-mockup { padding: 0; }
.mock-browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: #F8FAFD;
  border-bottom: 1px solid #EEF3F9;
}
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot.red { background: #FF6058; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28CA41; }
.mock-url {
  flex: 1; background: white; border: 1px solid #EEF3F9;
  border-radius: 4px; padding: 2px 8px;
  font-size: .65rem; color: var(--grey); margin-left: 4px;
}
.mock-browser-body { padding: 10px; }
.mock-nav-strip { height: 10px; background: #EEF3F9; border-radius: 4px; margin-bottom: 8px; }
.mock-hero-strip {
  height: 65px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  border-radius: 12px; padding: 14px; margin-bottom: 8px;
  display: flex; align-items: center;
}
.mock-h { height: 14px; background: rgba(255,255,255,.65); border-radius: 4px; }
.mock-cards-strip { display: flex; gap: 6px; }
.mock-card-s { flex: 1; height: 42px; background: #F0F6FC; border-radius: 8px; border: 1px solid #E5EFF9; }

/* Création Ponctuelle mockup (CSS only) */
.creation-mockup {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 340px;
}
.creation-col-main { flex: 1; }
.creation-col-side { display: flex; flex-direction: column; gap: .75rem; width: 115px; }

.creation-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(68,117,170,.12);
  position: relative;
}
.creation-flyer { height: 190px; }
.creation-card-header {
  height: 64px;
  background: var(--blue);
  display: flex;
  align-items: center;
  padding: 0 14px;
}
.creation-logo-row { display: flex; align-items: center; gap: 7px; }
.creation-logo-dot { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.35); }
.creation-logo-line { height: 8px; width: 55px; background: rgba(255,255,255,.45); border-radius: 4px; }
.creation-card-body { padding: 14px; }
.creation-line-big { height: 13px; background: var(--blue-light); border-radius: 4px; margin-bottom: 8px; width: 80%; }
.creation-line-med { height: 8px; background: #EEF3F9; border-radius: 4px; margin-bottom: 14px; width: 60%; }
.creation-cta-pill { height: 22px; width: 80px; background: var(--blue); border-radius: 50px; opacity: .85; }
.creation-badge {
  position: absolute; bottom: 8px; right: 8px;
  background: var(--blue-pale); color: var(--blue-deep);
  font-size: .58rem; font-weight: 700; letter-spacing: .04em;
  padding: .2rem .55rem; border-radius: 50px;
}
.creation-bcard { height: 90px; padding: 12px; display: flex; flex-direction: column; justify-content: space-between; }
.creation-bcard-top { display: flex; align-items: center; gap: 5px; }
.creation-bcard-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--blue); }
.creation-bcard-lines { display: flex; flex-direction: column; gap: 3px; }
.creation-bline { height: 6px; background: #EEF3F9; border-radius: 3px; }
.creation-bline.w70 { width: 70%; }
.creation-bline.w45 { width: 45%; }
.creation-post { height: 115px; overflow: hidden; }
.creation-post-img {
  height: 68px;
  background: linear-gradient(135deg, #4475AA 0%, #1E4D7B 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.creation-post-img::before {
  content: '';
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.2); position: absolute; left: 14px;
}
.creation-post-caption { padding: 8px; display: flex; flex-direction: column; gap: 4px; }
.creation-caption-line { height: 5px; background: #EEF3F9; border-radius: 3px; }
.creation-caption-line.w80 { width: 80%; }
.creation-caption-line.w50 { width: 50%; }

/* Photos & Videos mockup */
.photo-mockup {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 0;
  overflow: hidden;
}
.photo-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 14px;
  padding: 18px;
}
.photo-tile {
  background: #f7fbff;
  border: 1px solid #e5eef8;
  border-radius: 18px;
  padding: 10px;
}
.photo-thumb {
  height: 136px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 78% 24%, rgba(255,255,255,.9) 0 8px, transparent 9px),
    linear-gradient(180deg, #d5e8f7 0%, #ebf4fc 62%, #d9c7b3 62%, #c4a788 100%);
}
.video-thumb-clean {
  position: relative;
  height: 104px;
  border-radius: 14px;
  background: linear-gradient(135deg, #bfd8ee 0%, #7ea9cf 100%);
}
.video-play-clean {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,255,255,.93);
  box-shadow: 0 8px 18px rgba(30,77,123,.12);
}
.video-play-clean::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 13px;
  border-left: 10px solid var(--blue);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.photo-copy {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.photo-copy-line {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: #dfe9f4;
}
.photo-copy-line.long { width: 84%; }
.photo-copy-line.medium { width: 70%; }
.photo-copy-line.short { width: 58%; }
.photo-chip {
  position: absolute;
  left: 18px;
  bottom: 14px;
  padding: .38rem .78rem;
  border-radius: 50px;
  background: rgba(255,255,255,.86);
  color: var(--blue-deep);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.video-chip {
  left: auto;
  right: 18px;
  bottom: 14px;
}

/* Sur mesure mockup */
.surmesure-mockup {
  position: relative;
  width: 100%;
  max-width: 350px;
  padding: 0;
  overflow: hidden;
}
.surmesure-body {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 14px;
  padding: 18px;
}
.surmesure-panel {
  background: #f7fbff;
  border: 1px solid #e5eef8;
  border-radius: 18px;
}
.surmesure-panel-main {
  padding: 16px;
}
.surmesure-badge {
  display: inline-flex;
  align-items: center;
  padding: .42rem .78rem;
  border-radius: 999px;
  background: white;
  color: var(--blue-deep);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 1px solid rgba(68,117,170,.12);
  margin-bottom: 16px;
}
.surmesure-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.surmesure-item {
  display: block;
  height: 44px;
  border-radius: 14px;
  background: white;
  border: 1px solid #e5eef8;
  box-shadow: 0 6px 16px rgba(68,117,170,.08);
}
.surmesure-item.short {
  width: 72%;
}
.surmesure-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.surmesure-mini {
  flex: 1;
  border-radius: 18px;
  background: linear-gradient(145deg, white 0%, #eef5fb 100%);
  border: 1px solid #e5eef8;
  box-shadow: 0 6px 16px rgba(68,117,170,.08);
}
.surmesure-mini.soft {
  background: linear-gradient(145deg, #dbeaf7 0%, #f6fbff 100%);
}

/* ============================================
   RÉALISATIONS
   ============================================ */
.section-works {
  padding: 7rem 0;
  background: var(--bg);
  overflow: hidden;
}
.works-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.works-header p {
  margin-top: .85rem;
  font-size: .96rem;
  line-height: 1.75;
  color: var(--grey);
}
.works-columns {
  position: relative;
  height: 720px;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.4rem;
  padding: 0 3rem;
  overflow: hidden;
}
.works-col {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  will-change: transform;
}
.works-col.is-hovered {
  filter: saturate(1.02);
}
.works-col img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 4/3;
  flex-shrink: 0;
}
.works-fade-top, .works-fade-bottom {
  position: absolute; left: 0; right: 0;
  height: 160px; pointer-events: none; z-index: 2;
}
.works-fade-top    { top: 0; background: linear-gradient(to bottom, white 0%, transparent 100%); }
.works-fade-bottom { bottom: 0; background: linear-gradient(to top, white 0%, transparent 100%); }

/* ============================================
   MÉTHODOLOGIE
   ============================================ */
.section-method {
  padding: 7rem 3rem;
  max-width: 1140px;
  margin: 0 auto;
}
.method-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Connecteur numéroté avec flèches */
.method-steps-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 0 2rem;
}
.method-step-ball {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: white;
  border: 2px solid rgba(68,117,170,.22);
  box-shadow: 0 4px 18px rgba(68,117,170,.13);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 600;
  color: var(--blue);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.method-step-ball.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(68,117,170,.28);
}
.method-arrow-line {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 .5rem;
}
.method-arrow-line svg {
  width: 100%; height: 36px;
  overflow: visible;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.method-card {
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(68,117,170,.1);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.method-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.method-visual {
  background: linear-gradient(145deg, var(--blue-pale) 0%, #DDF0FA 100%);
  padding: 2.2rem;
  position: relative;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.method-body { padding: 1.6rem; flex: 1; }
.method-body h4 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .5rem;
}
.method-body p {
  font-size: .875rem;
  color: var(--grey);
  line-height: 1.75;
}

/* Checklist */
.method-checklist { display: flex; flex-direction: column; gap: .6rem; width: 100%; }
.method-check {
  display: flex; align-items: center; gap: .65rem;
  padding: .55rem .85rem;
  background: white;
  border-radius: 10px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--black);
  box-shadow: 0 1px 8px rgba(68,117,170,.07);
}
.method-check svg { width: 20px; height: 20px; flex-shrink: 0; }
.method-check svg path { fill: none; }

/* Board */
.method-board {
  background: white; border-radius: 14px;
  padding: 1rem; width: 100%;
  box-shadow: 0 2px 16px rgba(68,117,170,.09);
}
.board-row {
  display: flex; align-items: center;
  justify-content: space-between; padding: .55rem 0;
}
.board-task { font-size: .8rem; font-weight: 500; color: var(--black); }
.board-badge {
  font-size: .65rem; font-weight: 600;
  padding: .25rem .7rem; border-radius: 50px; letter-spacing: .02em;
}
.board-badge.todo   { background: rgba(255,193,7,.15);  color: #7A5A00; }
.board-badge.done   { background: rgba(40,167,69,.12);  color: #155724; }
.board-badge.review { background: rgba(68,117,170,.15); color: var(--blue-deep); }
.board-divider { height: 1px; background: rgba(68,117,170,.08); }

/* Folder */
.method-folder {
  display: flex; align-items: center; justify-content: center;
}
.folder-body { position: relative; width: 130px; }
.folder-tab {
  width: 55px; height: 15px;
  background: var(--blue);
  border-radius: 7px 7px 0 0;
  margin-left: 14px;
}
.folder-front {
  width: 150px; height: 112px;
  background: linear-gradient(145deg, var(--blue), var(--blue-deep));
  border-radius: 0 10px 10px 10px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0;
  box-shadow: 0 10px 28px rgba(68,117,170,.32);
}
.folder-logo {
  width: 116px;
  height: auto;
  object-fit: contain;
}

/* ============================================
   OFFRES — GLASSMORPHISM CENTRÉ
   ============================================ */
.section-offres {
  padding: 7rem 3rem;
  background: linear-gradient(180deg, #fff 0%, var(--blue-pale) 50%, #fff 100%);
}
.section-offres > .section-title {
  text-align: center;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}
.section-offres > .section-label {
  display: flex;
  text-align: center;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}
.section-offres > .section-title { margin-bottom: 4rem; }

.offres-bloc {
  max-width: 1140px;
  margin: 0 auto 5rem;
}
.offres-bloc-header {
  text-align: center; margin-bottom: 2.5rem;
}
.offres-bloc-title {
  font-family: var(--serif);
  font-size: 1.8rem; font-weight: 600; color: var(--black); margin-bottom: .5rem;
}
.offres-bloc-sub {
  font-size: .82rem; color: var(--grey);
  max-width: 520px; margin: 0 auto; line-height: 1.65;
}

.offres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}
.offre-card {
  position: relative;
  border-radius: var(--radius-sm);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.offre-card:hover { transform: translateY(-6px); }

.offre-card.glass {
  background: white;
  border: 1px solid rgba(68,117,170,.12);
  box-shadow: 0 18px 48px rgba(68,117,170,.09);
}
.offre-card.glass::before {
  display: none;
}
.offre-card.is-popular {
  box-shadow: 0 24px 56px rgba(68,117,170,.14);
  border-color: rgba(68,117,170,.18);
}
.offre-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: white;
  color: var(--blue-deep); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; padding: .35rem 1.2rem;
  border-radius: 50px; white-space: nowrap;
  font-family: var(--sans);
  border: 1px solid rgba(68,117,170,.12);
  box-shadow: 0 10px 28px rgba(68,117,170,.08);
}

.offre-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.offre-icon img { width: 56px; height: 56px; object-fit: contain; }

.offre-name {
  font-family: var(--serif);
  font-size: 1.8rem; font-weight: 700;
  color: var(--blue-deep); letter-spacing: -.01em; margin-bottom: .4rem;
}
.offre-desc {
  font-size: .83rem; color: var(--grey);
  line-height: 1.65; margin-bottom: 1.3rem;
}

.offre-price {
  font-family: var(--serif);
  font-size: 2.8rem; font-weight: 700;
  color: var(--blue); line-height: 1;
  margin-bottom: 1.4rem;
}
.offre-price-quote {
  font-size: 2.05rem;
  letter-spacing: -.02em;
}
.offre-price span { font-size: 1.1rem; font-weight: 400; margin-left: 2px; }
.offre-price small { font-family: var(--sans); font-size: .75rem; font-weight: 400; }

.offre-features {
  list-style: none;
  display: flex; flex-direction: column;
  gap: .6rem; margin-bottom: 1.8rem;
  flex: 1; text-align: left;
}
.offre-features li {
  display: flex; align-items: center;
  gap: .65rem; font-size: .85rem; color: var(--black);
}
.offre-features li svg { width: 17px; height: 17px; flex-shrink: 0; }

.offre-btn {
  display: block; text-align: center;
  padding: .85rem 1.6rem; border-radius: 50px;
  background: var(--blue); color: white;
  font-size: .88rem; font-weight: 500;
  transition: transform .2s, box-shadow .2s, background .2s;
  margin-top: auto;
}
.offre-btn:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(68,117,170,.28);
}

/* ============================================
   FAQ
   ============================================ */
.section-faq {
  padding: 7rem 3rem;
  max-width: 1040px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.faq-header p {
  margin-top: .95rem;
  font-size: .96rem;
  line-height: 1.75;
  color: var(--grey);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .95rem;
}
.faq-item {
  background: white;
  border: 1px solid rgba(68,117,170,.12);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(68,117,170,.07);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.4rem;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background .22s ease;
}
.faq-item summary:hover { background: rgba(235,243,252,.55); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: white;
  font-size: 1.1rem;
  font-weight: 400;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  padding: 0 1.4rem 1.35rem;
  font-size: .94rem;
  line-height: 1.8;
  color: var(--grey);
}

/* ============================================
   CONTACT / DEVIS
   ============================================ */
.section-contact {
  padding: 7.8rem 3rem 8.4rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.contact-sub {
  font-size: .95rem; color: var(--grey);
  margin-bottom: 3.35rem; margin-top: -.1rem;
}
.devis-form {
  text-align: left;
  background: white;
  border-radius: var(--radius);
  border: 1px solid rgba(68,117,170,.1);
  box-shadow: var(--shadow-lg);
  padding: 3.15rem;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1.15rem;
}
.form-field { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.1rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .8rem; font-weight: 600; color: var(--black); letter-spacing: .02em; }
.form-field input,
.form-field textarea {
  padding: .95rem 1.12rem;
  border-radius: 12px;
  border: 1.5px solid rgba(68,117,170,.18);
  background: var(--blue-pale);
  font-family: var(--sans); font-size: .9rem; color: var(--black);
  outline: none; transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(68,117,170,.12);
  background: white;
}
.project-pills { display: flex; flex-wrap: wrap; gap: .5rem; padding: .4rem 0; }
.pill-btn {
  padding: .5rem 1.1rem; border-radius: 50px;
  border: 1.5px solid rgba(68,117,170,.2);
  background: var(--blue-pale);
  font-family: var(--sans); font-size: .82rem; font-weight: 500;
  color: var(--grey); cursor: pointer; transition: all .2s;
}
.pill-btn:hover, .pill-btn.active {
  background: var(--blue); color: white; border-color: transparent;
}
.btn-submit {
  width: 100%; justify-content: center;
  font-size: .95rem; padding: 1rem 2rem; margin-top: 1rem;
}
.form-feedback {
  min-height: 1.35rem;
  margin-top: .85rem;
  font-size: .92rem;
  color: #7b8598;
}
.form-feedback.is-success { color: #2f8f57; }
.form-feedback.is-error { color: #bf4b4b; }
.form-feedback.is-info { color: var(--blue); }

/* ============================================
   FOOTER — plein bleu
   ============================================ */
.footer {
  background: var(--blue);
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 4.2rem 3rem 2.8rem;
  display: grid;
  grid-template-columns: 1.35fr .95fr .9fr .95fr;
  gap: 2.4rem;
  align-items: start;
}
.footer-logo {
  width: 188px;
  height: auto;
  margin-bottom: 1.1rem;
  object-fit: contain;
}
.footer-brand-note {
  font-size: .92rem;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  max-width: 320px;
}
.footer-contact-title {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.56); margin-bottom: 1rem;
}
.footer-contact a, .footer-links a {
  display: block; font-size: .9rem;
  color: rgba(255,255,255,.86); margin-bottom: .72rem;
  transition: color .2s;
}
.footer-contact-meta {
  margin-top: 1.1rem;
  font-size: .84rem;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
}
.footer-links-stack {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
}
.footer-links-group {
  display: flex;
  flex-direction: column;
}
.footer-contact a:hover, .footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.35rem 3rem;
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.58);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(-28px);
  transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .14s; }
.reveal-delay-2 { transition-delay: .28s; }
.reveal-delay-3 { transition-delay: .42s; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-body {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.legal-nav {
  position: sticky;
  top: 18px;
}

.legal-main {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 10rem 0 5rem;
}

.legal-hero {
  text-align: center;
  margin-bottom: 2.8rem;
}

.legal-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(68,117,170,.10);
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(68,117,170,.08);
  padding: 2rem 2.1rem;
  margin-bottom: 1.2rem;
}

.legal-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.legal-card p {
  margin: 0 0 .85rem;
  line-height: 1.8;
  color: #556176;
}

.legal-card a {
  color: var(--blue);
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  #navbar {
    width: calc(100% - 42px);
    grid-template-columns: auto auto;
    padding: .95rem 1.1rem .95rem 1rem;
  }
  #navbar.scrolled {
    padding: .7rem 1.2rem .7rem 1rem;
    width: calc(100% - 52px);
    border-radius: 40px;
  }
  .nav-links { display: none; }
  .btn-devis { display: none; }
  .legal-main {
    width: min(100% - 32px, 720px);
    padding-top: 8.5rem;
  }
  .legal-card {
    padding: 1.5rem 1.2rem;
    border-radius: 22px;
  }
  .nav-burger {
    display: flex;
    justify-self: end;
    margin-left: auto;
    align-items: flex-end;
    padding-right: .12rem;
  }
  .nav-burger span,
  #navbar.scrolled .nav-burger span { background: var(--blue); }
  .nav-logo {
    width: 178px;
    height: 42px;
  }
  .logo-light { width: 176px; }
  .logo-dark { width: 156px; }
  #hero {
    min-height: auto;
    padding: 8.5rem 0 5rem;
  }
  .hero-content {
    padding: 1.5rem;
    max-width: 760px;
    transform: translateY(0);
  }
  .hero-sub {
    font-size: .98rem;
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 2.5rem;
  }
  .hero-badge {
    letter-spacing: .22em;
    font-size: .76rem;
    padding: .52rem 1.1rem;
    margin-bottom: 1.9rem;
  }
  .bubble { display: none; }
  .tools-bar { padding: 2rem 0 1.2rem; }
  .marquee-wrap {
    max-width: calc(100% - 40px);
  }

  .bento-card, .bento-card.reverse { grid-template-columns: 1fr; direction: ltr; }
  .bento-card {
    position: sticky;
    top: 98px;
    margin-bottom: 1.2rem;
  }
  .bento-visual {
    min-height: 220px;
    padding: 2rem;
  }
  .bento-content {
    padding: 2.4rem 2rem 2.2rem;
  }
  .bento-content h3 {
    font-size: 1.85rem;
  }
  .services-header .section-title {
    font-size: clamp(2.55rem, 8vw, 3.7rem);
  }
  .services-header p,
  .works-header p,
  .method-body p,
  .offres-bloc-sub,
  .faq-header p,
  .highlights-header p,
  .contact-sub {
    font-size: .92rem;
  }
  .method-grid { grid-template-columns: 1fr; }
  .method-visual { height: 200px; }
  .method-steps-connector { display: none; }
  .offres-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .works-columns {
    height: 560px;
    max-width: 1040px;
    padding: 0 2.25rem;
    gap: .9rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .works-columns .works-col:nth-child(3) { display: flex; }
  .section-offres > .section-title {
    max-width: 700px;
  }
  .offres-bloc-title {
    font-size: 1.55rem;
  }
  .offre-card {
    padding: 2rem 1.5rem;
  }
  .offre-name {
    font-size: 1.6rem;
  }
  .offre-price {
    font-size: 2.45rem;
  }
  .project-pills {
    gap: .45rem;
  }
  .pill-btn {
    font-size: .78rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-inner,
  .footer-brand,
  .footer-contact,
  .footer-links {
    text-align: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand-note {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .section-services, .section-works, .section-method,
  .section-offres, .section-faq, .section-contact, .section-highlights {
    padding: 4.5rem 1.5rem;
  }
}

@media (min-width: 601px) and (max-width: 960px) {
  .section-offres,
  .section-method,
  .section-works,
  .section-faq,
  .section-contact,
  .section-highlights {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }

  .offres-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    margin: 0 auto;
    gap: .9rem;
  }
  .offre-card {
    max-width: none;
    margin: 0 auto;
    padding: 1.7rem 1rem;
  }
  .offre-desc,
  .offre-price,
  .offre-name {
    text-align: center;
  }
  .offre-features {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .offre-btn {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .offre-name {
    font-size: 1.45rem;
  }
  .offre-desc {
    font-size: .77rem;
  }
  .offre-price {
    font-size: 2.15rem;
  }
  .offre-features li {
    font-size: .79rem;
  }
  .offre-btn {
    padding: .78rem 1rem;
    font-size: .82rem;
  }

  .method-steps-connector {
    display: flex;
    padding: 0 1rem;
    margin-bottom: 1.4rem;
  }
  .method-step-ball {
    width: 52px;
    height: 52px;
    font-size: 1.28rem;
  }
  .method-arrow-line {
    padding: 0 .25rem;
  }
  .method-arrow-line svg {
    height: 28px;
  }
  .method-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .95rem;
  }
  .method-visual {
    height: 188px;
    padding: 1.25rem;
  }
  .method-card {
    min-height: 420px;
  }
  .method-body {
    padding: 1.2rem;
  }
  .method-body h4 {
    font-size: 1.35rem;
  }
  .method-body p {
    font-size: .8rem;
    line-height: 1.62;
  }
  .method-check {
    font-size: .72rem;
    padding: .45rem .72rem;
    gap: .5rem;
  }
  .method-check svg {
    width: 18px;
    height: 18px;
  }
  .method-board {
    padding: .82rem;
  }
  .board-row {
    padding: .42rem 0;
  }
  .board-task {
    font-size: .72rem;
  }
  .board-badge {
    font-size: .58rem;
    padding: .2rem .55rem;
  }
  .folder-body {
    width: 112px;
  }
  .folder-tab {
    width: 48px;
    height: 13px;
    margin-left: 12px;
  }
  .folder-front {
    width: 138px;
    height: 104px;
  }
  .folder-logo {
    width: 104px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  #navbar {
    width: calc(100% - 26px);
    padding: .92rem .95rem .92rem .92rem;
  }
  #navbar.scrolled {
    width: calc(100% - 28px);
    top: 10px;
    padding: .72rem .92rem .72rem .92rem;
  }
  .nav-logo {
    width: 156px;
    height: 36px;
  }
  .logo-light { width: 154px; }
  .logo-dark { width: 138px; }
  #hero {
    padding: 7.2rem 0 3.2rem;
  }
  .hero-bg {
    background: linear-gradient(
      180deg,
      #1E4D7B 0%,
      #2D6499 24%,
      #4475AA 54%,
      #7AAED4 78%,
      #C2DCF0 92%,
      #FFFFFF 100%
    );
  }
  .hero-content {
    transform: translateY(-22px);
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: .8rem;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: min(100%, 290px);
    justify-content: center;
  }
  .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    line-height: 1.04;
  }
  .hero-sub {
    font-size: .92rem;
    letter-spacing: .01em;
  }
  .hero-badge {
    letter-spacing: .14em;
    font-size: .72rem;
  }
  .bubble { display: none; }
  .marquee-inner {
    gap: .8rem;
  }
  .tool-item {
    padding: .46rem .95rem;
    font-size: .76rem;
  }
  .bento-visual,
  .method-visual {
    padding: 1.4rem;
  }
  .section-services {
    padding-bottom: 6.8rem;
  }
  .bento-card {
    position: sticky;
    top: 88px;
    margin-bottom: 1rem;
  }
  .bento-content,
  .devis-form {
    padding: 1.7rem 1.35rem;
  }
  .bento-content h3 {
    font-size: 1.6rem;
  }
  .tag {
    font-size: .75rem;
    padding: .4rem .78rem;
  }
  .works-columns {
    grid-template-columns: 1fr 1fr;
    height: 520px;
    max-width: 430px;
    padding: 0 1.15rem;
    gap: .8rem;
  }
  .works-columns .works-col:nth-child(1),
  .works-columns .works-col:nth-child(2) { display: flex; }
  .works-columns .works-col:nth-child(3) { display: none; }
  .works-col img {
    border-radius: 16px;
  }
  .method-body h4,
  .offres-bloc-title {
    font-size: 1.42rem;
  }
  .offre-card {
    padding: 1.8rem 1.25rem;
  }
  .offres-grid {
    grid-template-columns: 1fr;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .offre-features li {
    font-size: .81rem;
  }
  .faq-item summary {
    padding: 1.05rem 1.05rem;
    font-size: .93rem;
  }
  .faq-item p {
    padding: 0 1.05rem 1.1rem;
    font-size: .9rem;
  }
  .footer-logo {
    width: 160px;
  }
  .footer-inner,
  .footer-brand,
  .footer-contact,
  .footer-links {
    text-align: center;
  }
  .footer-brand-note {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
.footer-brand-note,
.footer-contact a,
.footer-links a,
.footer-contact-meta {
    font-size: .84rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  html, body {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26'%3E%3Ccircle cx='13' cy='13' r='9.5' fill='white' fill-opacity='0.94' stroke='%234475AA' stroke-width='2'/%3E%3Ccircle cx='13' cy='13' r='2.8' fill='%234475AA'/%3E%3C/svg%3E") 13 13, auto;
  }

  a,
  button,
  summary,
  .tool-item,
  .tag,
  .pill-btn,
  .works-col img,
  .offre-card,
  .highlight-card {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Ccircle cx='15' cy='15' r='11' fill='%234475AA' fill-opacity='0.18' stroke='%234475AA' stroke-width='1.6'/%3E%3Ccircle cx='15' cy='15' r='4.2' fill='%234475AA'/%3E%3C/svg%3E") 15 15, pointer;
  }
}

/* ============================================
   PHOTOS & VIDÉOS mockup
   ============================================ */
.media-mockup {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.media-hero-shot {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  background: linear-gradient(145deg, #1E4D7B 0%, #4475AA 60%, #7AAED4 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(68,117,170,.22);
}
/* Grille viseur photo */
.media-hero-shot::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 40px 40px;
}
.media-hero-shot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.55);
  box-shadow: 0 0 0 6px rgba(255,255,255,.12), 0 0 0 12px rgba(255,255,255,.06);
}
.media-label-badge {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  font-size: .62rem; font-weight: 600; letter-spacing: .06em;
  padding: .25rem .7rem; border-radius: 50px;
}
.media-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .6rem;
}
.media-thumb {
  height: 62px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-light));
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(68,117,170,.1);
}
.media-thumb.video {
  background: linear-gradient(135deg, #2D6499, #4475AA);
}
.media-thumb-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center;
}
.media-thumb-play::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent var(--blue);
  margin-left: 2px;
}
.media-thumb.photo1 {
  background: linear-gradient(135deg, #C2DCF0, #7AAED4);
}
.media-thumb.photo2 {
  background: linear-gradient(135deg, #EBF3FC, #D0E2F4);
}

/* ============================================
   SUR-MESURE mockup
   ============================================ */
.surmesure-mockup {
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.sm-brief-card {
  background: white;
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 6px 28px rgba(68,117,170,.12);
  border: 1px solid rgba(68,117,170,.1);
}
.sm-brief-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(68,117,170,.08);
}
.sm-brief-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  flex-shrink: 0;
}
.sm-brief-title { flex: 1; }
.sm-brief-title-line {
  height: 9px; width: 100px; background: var(--black);
  border-radius: 5px; opacity: .12; margin-bottom: 4px;
}
.sm-brief-sub-line { height: 7px; width: 70px; background: var(--grey-light); border-radius: 4px; }
.sm-brief-tag {
  font-size: .6rem; font-weight: 700; letter-spacing: .05em;
  background: var(--blue-pale); color: var(--blue-deep);
  padding: .2rem .6rem; border-radius: 50px;
}
.sm-items { display: flex; flex-direction: column; gap: .55rem; }
.sm-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem .75rem;
  background: var(--blue-pale);
  border-radius: 8px;
}
.sm-item-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sm-item-check::after {
  content: '';
  width: 6px; height: 4px;
  border-left: 1.5px solid white;
  border-bottom: 1.5px solid white;
  transform: rotate(-45deg) translateY(-1px);
}
.sm-item-line { height: 7px; flex: 1; background: rgba(68,117,170,.15); border-radius: 4px; }
.sm-item-line.w60 { width: 60%; }
.sm-item-line.w80 { width: 80%; }

.sm-tags-row {
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.sm-tag-pill {
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .04em;
  border: 1.5px solid rgba(68,117,170,.2);
  color: var(--blue-deep);
  background: white;
  white-space: nowrap;
}
.sm-tag-pill.filled {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
