/* ==========================================================================
   7 SEC Pressing — style.css (luxury edition, no mobile rules)
   ========================================================================== */

:root {
  --color-primary: #0B0B0B;
  --color-primary-dark: #000000;
  --color-primary-light: #1C1C1C;
  --color-secondary: #C0C0C0;
  --color-secondary-light: #D9D9D9;
  --color-white: #FFFFFF;
  --color-bg: #0B0B0B;
  --color-bg-alt: #1C1C1C;
  --color-ink: #FFFFFF;
  --color-muted: #B0B0B0;
  --color-border: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.4);
  --shadow-md: 0 14px 34px rgba(0,0,0,0.6), 0 0 15px rgba(192,192,192,0.1);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.8), 0 0 30px rgba(192,192,192,0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-full: 999px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
  --gutter: 1.5rem;
  --section-pad: 6rem;
  --container-max: 1200px;
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --speed: 0.35s;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, address { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { color: var(--color-muted); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--color-secondary);
  color: var(--color-black);
  padding: 0.8rem 1.4rem;
  z-index: 999;
  border-radius: var(--radius-sm);
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { padding-block: var(--section-pad); }
.grid { display: grid; gap: var(--gutter); }

.crease {
  display: flex; flex-direction: column; gap: 4px;
  width: 64px; margin-block: 0.9rem 1.4rem;
}
.crease::before, .crease::after {
  content: ''; display: block; height: 2px; border-radius: 2px;
}
.crease::before { width: 100%; background: var(--color-secondary); }
.crease::after  { width: 60%;  background: var(--color-secondary-light); opacity: 0.7; }
.crease.center { align-items: center; }
.crease.center::after { align-self: center; }

.eyebrow {
  display: inline-block; font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--color-secondary);
  background: rgba(255,255,255,0.05); backdrop-filter: blur(4px);
  padding: 0.4rem 1rem; border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
}
.section-head { margin-bottom: 3rem; max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .crease { margin-inline: auto; }
.section-head p { font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.9rem; border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), background var(--speed) var(--ease);
  white-space: nowrap; letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #A0A0A0 100%);
  color: var(--color-black); box-shadow: 0 4px 15px rgba(192,192,192,0.3);
}
.btn-primary:hover { background: var(--color-white); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(192,192,192,0.5); }
.btn-outline {
  background: transparent; color: var(--color-secondary);
  border: 2px solid var(--color-secondary); box-shadow: 0 0 10px rgba(192,192,192,0.1);
}
.btn-outline:hover { background: var(--color-secondary); color: var(--color-black); transform: translateY(-3px); }
.btn-secondary { background: var(--color-white); color: var(--color-black); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { background: var(--color-secondary-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; justify-content: center; }

/* Photo treatment */
.photo {
  position: relative; overflow: hidden; background: var(--color-primary-dark);
}
.photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(30%) contrast(1.05); transition: transform 0.8s var(--ease);
}
.photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 45%, rgba(192,192,192,0.1) 100%);
  mix-blend-mode: multiply; pointer-events: none;
}

/* Topbar */
.topbar {
  background: var(--color-black); color: var(--color-silver); font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 0.55rem;
}
.topbar-logo img { height: 34px; width: auto; filter: brightness(1.2); }
.topbar-address { display: flex; align-items: center; gap: 0.5rem; text-align: center; font-style: normal; color: var(--color-muted); }
.topbar-phone { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--color-secondary); transition: color var(--speed); }
.topbar-phone:hover { color: var(--color-white); }
.topbar i { color: var(--color-secondary); }

/* Navigation */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,11,11,0.8); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--speed), padding var(--speed), background var(--speed);
}
.navbar.scrolled { background: rgba(11,11,11,0.95); box-shadow: var(--shadow-md); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.1rem; transition: padding var(--speed);
}
.navbar.scrolled .navbar-inner { padding-block: 0.7rem; }

.navbar-brand {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.6rem;
  color: var(--color-white); display: flex; flex-direction: column;
  line-height: 1.15; letter-spacing: 1px;
}
.navbar-brand span {
  font-family: var(--font-body); font-weight: 500; font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-secondary);
}

.nav-links {
  display: flex; align-items: center; gap: 2.1rem;
}
.nav-links a {
  position: relative; font-weight: 500; font-size: 0.95rem;
  color: var(--color-silver); padding-block: 0.3rem; transition: color var(--speed);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--color-secondary);
  transition: width var(--speed) var(--ease);
}
.nav-links a:hover { color: var(--color-white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--color-white); font-weight: 600; }
.nav-links a.active::after { width: 100%; background: var(--color-secondary); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 34px; height: 34px; z-index: 1100;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--color-white);
  border-radius: 2px; transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero slider */
.hero-slider {
  position: relative; height: 78vh; min-height: 460px; max-height: 760px;
  overflow: hidden; background: var(--color-black);
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 0.9s var(--ease);
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 42%, rgba(0,0,0,0.2) 75%);
}
.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 640px; padding-inline: var(--gutter); margin-inline: auto;
  max-width: var(--container-max); color: var(--color-white);
}
.hero-content > * { max-width: 560px; }
.hero-content .eyebrow { background: rgba(255,255,255,0.08); color: var(--color-secondary); backdrop-filter: blur(4px); }
.hero-content h1 { color: var(--color-white); margin-top: 1rem; }
.hero-content p { color: rgba(255,255,255,0.8); font-size: 1.08rem; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px);
  transition: background var(--speed);
}
.hero-arrow:hover { background: var(--color-secondary); color: var(--color-black); }
.hero-arrow.prev { left: 1.5rem; }
.hero-arrow.next { right: 1.5rem; }

.hero-dots {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 0.6rem;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.3); transition: background var(--speed), width var(--speed);
}
.hero-dot.active { background: var(--color-secondary); width: 28px; border-radius: var(--radius-full); }

/* Quick-link cards */
.quicklinks-grid { grid-template-columns: repeat(4, 1fr); }
.tag-card {
  background: rgba(28,28,28,0.7); backdrop-filter: blur(12px);
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed);
  display: flex; flex-direction: column; position: relative;
}
.tag-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(192,192,192,0.3); }
.tag-card::before {
  content: ''; position: absolute; top: 0; left: 1.4rem; right: 1.4rem; height: 1px;
  background-image: linear-gradient(90deg, var(--color-secondary) 50%, transparent 50%);
  background-size: 10px 1px; z-index: 2; opacity: 0.6;
}
.tag-card .photo { height: 190px; }
.tag-card:hover .photo img { transform: scale(1.08); }
.tag-card-body { padding: 1.6rem 1.6rem 1.9rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.tag-card-body h3 { color: var(--color-white); }
.tag-card-body p { font-size: 0.92rem; flex: 1; color: var(--color-muted); }
.tag-card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.88rem; color: var(--color-secondary);
  margin-top: 0.4rem; transition: gap var(--speed), color var(--speed);
}
.tag-card-link:hover { gap: 0.85rem; color: var(--color-white); }

/* Testimonials + Sitemap */
.split-section { grid-template-columns: 1.3fr 1fr; align-items: start; }
.testimonial-card {
  background: rgba(28,28,28,0.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md);
  padding: 1.7rem 1.8rem; box-shadow: var(--shadow-sm);
  margin-bottom: 1.2rem; display: flex; gap: 1.1rem;
}
.testimonial-stars { color: var(--color-secondary); font-size: 0.85rem; margin-bottom: 0.5rem; letter-spacing: 2px; }
.testimonial-quote { font-size: 1rem; color: var(--color-white); line-height: 1.9; }
.testimonial-author { margin-top: 0.7rem; font-size: 0.85rem; font-weight: 600; color: var(--color-muted); }

.avatar {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--color-secondary); color: var(--color-black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
}

.sitemap-box {
  background: rgba(11,11,11,0.9); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md);
  padding: 2.2rem 2rem; color: var(--color-white); position: sticky; top: 6rem;
}
.sitemap-box h3 { color: var(--color-white); }
.sitemap-list { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.2rem; }
.sitemap-list a {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.7rem 0.2rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--color-muted); transition: color var(--speed), padding-left var(--speed);
}
.sitemap-list a:last-child { border-bottom: none; }
.sitemap-list a i { color: var(--color-secondary); width: 18px; }
.sitemap-list a:hover { color: var(--color-white); padding-left: 0.5rem; }

/* Footer */
.site-footer { background: var(--color-black); color: var(--color-muted); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { padding-block: 4.5rem 3rem; }
.footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
.footer-brand img { height: 46px; margin-bottom: 1.2rem; filter: brightness(1.2); }
.footer-brand p { color: var(--color-muted); font-size: 0.92rem; line-height: 1.8; }
.footer-col h4 { color: var(--color-white); font-family: var(--font-body); font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.3rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { color: var(--color-muted); font-size: 0.92rem; transition: color var(--speed); }
.footer-col a:hover { color: var(--color-secondary); }
.footer-col li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; }
.footer-col li i { color: var(--color-secondary); margin-top: 0.25rem; }

.social-icons { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.social-icons a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center;
  transition: background var(--speed), transform var(--speed);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-icons a:hover { background: var(--color-secondary); color: var(--color-black); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-block: 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: var(--color-muted);
}

.back-to-top {
  position: fixed; right: 1.6rem; bottom: 1.6rem; width: 48px; height: 48px;
  border-radius: 50%; background: var(--color-secondary); color: var(--color-black);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: opacity var(--speed), transform var(--speed), visibility var(--speed), background var(--speed);
  z-index: 90; border: 1px solid rgba(255,255,255,0.2);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-white); }

.map-pin-btn {
  position: fixed; right: 1.6rem; bottom: 6.5rem; width: 48px; height: 48px;
  border-radius: 50%; background: var(--color-secondary); color: var(--color-black);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 90;
  transition: background 0.3s, transform 0.3s;
  border: 2px solid rgba(255,255,255,0.2); font-size: 1.2rem; cursor: pointer;
}
.map-pin-btn:hover { background: var(--color-white); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Inner-page banner */
.page-banner {
  position: relative; height: 340px; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--color-black);
}
.page-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 70%);
  z-index: 1;
}
.page-banner-content { position: relative; z-index: 2; padding-bottom: 2.6rem; color: var(--color-white); }
.page-banner h1 { color: var(--color-white); margin-top: 0.6rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--color-muted); }
.breadcrumb a { color: var(--color-muted); transition: color var(--speed); }
.breadcrumb a:hover { color: var(--color-secondary); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1.active { transition-delay: 0.1s; }
.reveal-delay-2.active { transition-delay: 0.2s; }
.reveal-delay-3.active { transition-delay: 0.3s; }

/* Presentation page */
.about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
.about-grid .photo { border-radius: var(--radius-md); aspect-ratio: 4/3; box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,0.1); }
.about-copy p { font-size: 1.05rem; margin-top: 0.5rem; }
.founder-section { background: var(--color-bg); }
.founder-card {
  background: rgba(28,28,28,0.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md);
  padding: 3rem; display: grid; grid-template-columns: auto 1fr; gap: 2.4rem; align-items: center;
  box-shadow: var(--shadow-sm);
}
.founder-portrait {
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--color-secondary); color: var(--color-black);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; border: 4px solid var(--color-white); box-shadow: var(--shadow-md);
}
.founder-quote-icon { color: var(--color-secondary); font-size: 1.6rem; margin-bottom: 0.6rem; }
.founder-name { font-family: var(--font-heading); font-size: 1.25rem; color: var(--color-white); margin-top: 1rem; }
.founder-role { font-size: 0.88rem; color: var(--color-muted); }
.mvv-grid { grid-template-columns: repeat(3, 1fr); margin-top: 3rem; }
.mvv-card {
  background: rgba(28,28,28,0.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-sm) var(--radius-sm) var(--radius-md) var(--radius-md);
  padding: 2.2rem 1.9rem; box-shadow: var(--shadow-sm); transition: transform var(--speed);
}
.mvv-card:hover { transform: translateY(-6px); border-color: rgba(192,192,192,0.3); }
.mvv-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(192,192,192,0.1); color: var(--color-secondary);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.1rem;
}
.mvv-card h3 { color: var(--color-white); margin-bottom: 0.6rem; }
.mvv-card p { font-size: 0.95rem; }

/* Services page */
.services-grid { grid-template-columns: repeat(2, 1fr); }
.service-card {
  background: rgba(28,28,28,0.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md);
  padding: 2.4rem; box-shadow: var(--shadow-sm);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed);
  position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(192,192,192,0.3); }
.service-icon {
  width: 62px; height: 62px; border-radius: var(--radius-sm);
  background: rgba(192,192,192,0.1); color: var(--color-secondary);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.4rem;
  transition: transform var(--speed);
}
.service-card:hover .service-icon { transform: rotate(-8deg) scale(1.05); }
.service-card h3 { margin-bottom: 0.8rem; }
.service-card p { font-size: 0.96rem; }
.eco-badge {
  position: absolute; top: -14px; right: 1.8rem; background: var(--color-secondary);
  color: var(--color-black); border-radius: var(--radius-full);
  padding: 0.45rem 1rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; display: flex; align-items: center; gap: 0.4rem; box-shadow: var(--shadow-sm);
}

/* Tarifs page */
.tarif-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.search-box {
  display: flex; align-items: center; gap: 0.7rem;
  background: rgba(28,28,28,0.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-full);
  padding: 0.75rem 1.3rem; min-width: 300px; box-shadow: var(--shadow-sm);
}
.search-box i { color: var(--color-muted); }
.search-box input { border: none; outline: none; width: 100%; background: transparent; color: var(--color-white); }
.tarif-count { font-size: 0.88rem; color: var(--color-muted); }
.table-wrap {
  background: rgba(28,28,28,0.7); backdrop-filter: blur(12px);
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden;
  overflow-x: auto; border: 1px solid rgba(255,255,255,0.06);
}
table.tarifs { width: 100%; border-collapse: collapse; min-width: 480px; }
table.tarifs thead th {
  background: var(--color-black); color: var(--color-white); text-align: left;
  padding: 1.1rem 1.5rem; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.03em;
  text-transform: uppercase; position: sticky; top: 0;
}
table.tarifs thead th:not(:first-child), table.tarifs tbody td:not(:first-child) { text-align: right; }
table.tarifs tbody td {
  padding: 0.95rem 1.5rem; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--color-muted);
}
table.tarifs tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
table.tarifs tbody tr:hover { background: rgba(192,192,192,0.06); }
table.tarifs tbody tr:last-child td { border-bottom: none; }
table.tarifs td.price { font-weight: 600; color: var(--color-white); }
#noResults { display: none; text-align: center; padding: 3rem 1rem; color: var(--color-muted); }
.tarif-note { margin-top: 1.4rem; font-size: 0.85rem; color: var(--color-muted); display: flex; gap: 0.6rem; align-items: flex-start; }
.tarif-note i { margin-top: 0.2rem; color: var(--color-secondary); }

/* Entreprises page */
.segments-grid { grid-template-columns: repeat(4, 1fr); }
.segment-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); transition: transform var(--speed);
  isolation: isolate;
}
.segment-card:hover { transform: translateY(-8px); }
.segment-card.with-photo .photo { position: absolute; inset: 0; z-index: -1; }
.segment-card.solid { background: linear-gradient(160deg, var(--color-black) 0%, var(--color-primary-light) 100%); border: 1px solid rgba(255,255,255,0.08); }
.segment-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(192,192,192,0.15); backdrop-filter: blur(4px);
  color: var(--color-white); display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1rem;
}
.segment-card h3 { color: var(--color-white); margin-bottom: 0.6rem; }
.segment-card p { color: var(--color-muted); font-size: 0.92rem; }
.clients-section { background: var(--color-bg); }
.clients-grid { grid-template-columns: repeat(3, 1fr); }
.client-logo {
  background: rgba(28,28,28,0.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md);
  height: 140px; display: flex; align-items: center; justify-content: center;
  padding: 1.6rem; transition: transform var(--speed), box-shadow var(--speed);
}
.client-logo:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.client-logo img { max-height: 78px; width: auto; filter: grayscale(0.8); transition: filter var(--speed); }
.client-logo:hover img { filter: grayscale(0); }

/* Contact page */
.contact-cards-grid { grid-template-columns: repeat(4, 1fr); margin-bottom: 3.5rem; }
.contact-info-card {
  background: rgba(28,28,28,0.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md);
  padding: 2rem 1.6rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform var(--speed);
}
.contact-info-card:hover { transform: translateY(-6px); border-color: rgba(192,192,192,0.3); }
.contact-info-card .service-icon { margin-inline: auto; background: rgba(192,192,192,0.1); color: var(--color-secondary); }
.contact-info-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--color-white); }
.contact-info-card p, .contact-info-card a { font-size: 0.9rem; color: var(--color-muted); }
.contact-info-card a:hover { color: var(--color-secondary); }
.contact-main-grid { grid-template-columns: 1fr 1fr; }
.map-frame {
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.1); height: 100%; min-height: 420px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 420px; }
.contact-form-box {
  background: rgba(28,28,28,0.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); padding: 2.6rem;
}
.form-row { grid-template-columns: 1fr 1fr; margin-bottom: 1.3rem; }
.form-group { margin-bottom: 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--color-white); }
.form-group label .req { color: var(--color-secondary); }
.form-group input, .form-group textarea {
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm);
  padding: 0.85rem 1rem; background: rgba(0,0,0,0.3); color: var(--color-white);
  transition: border-color var(--speed);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--color-secondary); background: rgba(0,0,0,0.5); }
.form-group input.invalid, .form-group textarea.invalid { border-color: #C0392B; }
.error-message { font-size: 0.78rem; color: #C0392B; min-height: 1em; }
.form-success {
  display: none; align-items: center; gap: 0.8rem;
  background: rgba(192,192,192,0.1); border: 1px solid var(--color-secondary);
  color: var(--color-white); padding: 1rem 1.3rem; border-radius: var(--radius-sm);
  margin-bottom: 1.3rem; font-size: 0.92rem;
}
.form-success.show { display: flex; }
.contact-form-box form.hide { display: none; }
.form-success i { color: var(--color-secondary); font-size: 1.2rem; }

.hours-list { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.2rem; }
.hours-row { display: flex; justify-content: space-between; padding-bottom: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.94rem; color: var(--color-muted); }
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-row span:first-child { font-weight: 600; color: var(--color-white); }

.eco-stamp {
  width: 132px; height: 132px; border-radius: 50%;
  border: 3px dashed var(--color-secondary);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--color-white); text-align: center; flex-shrink: 0;
  background: rgba(192,192,192,0.05);
}
.eco-stamp i { font-size: 1.6rem; color: var(--color-secondary); margin-bottom: 0.3rem; }
.eco-stamp strong { font-size: 1.05rem; line-height: 1.1; }
.eco-stamp small { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-muted); }

/* ============================================================
   FOOTER EXTRA – Made by & Portfolio button (texte en noir)
   ============================================================ */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.footer-extra {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.made-by {
  font-size: 0.85rem;
  color: var(--color-muted);
  letter-spacing: 0.03em;
}

.portfolio-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-secondary);
  color: #000000 !important;   /* ← FORCÉ EN NOIR */
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), background var(--speed);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
}

.portfolio-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--color-white);
  color: #000000 !important;   /* on garde le noir au survol */
}

/* Responsive : sur mobile on empile */
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-extra {
    flex-wrap: wrap;
    justify-content: center;
  }
}