/* ========================================
   DICKO — Plomberie · Chauffage · VMC
   Design system : dark #0a0f14, gold #d6a527
   Fonts : Chakra Petch (headings), Poppins (body)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: #0a0f14;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- Variables ---------- */
:root {
  --gold: #d6a527;
  --gold-dark: #b88a1f;
  --gold-dim: rgba(214,165,39,.4);
  --green: #3db75d;
  --dark: #0a0f14;
  --dark-2: #0d1419;
  --dark-3: #070a0d;
  --card-dark: #173344;
  --card-dark-dim: rgba(23,51,68,.3);
  --light: #f9fafb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --radius: 1rem;
  --radius-sm: .5rem;
  --shadow: 0 4px 24px rgba(0,0,0,.4);
}

/* ---------- Layout ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 6rem 0; }
.section-light { background: #fff; color: #0a0f14; }
.section-gray  { background: #f9fafb; color: #0a0f14; }
.section-dark  { background: var(--dark); }
.section-dark2 { background: var(--dark-2); }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: 'Chakra Petch', sans-serif; line-height: 1.15; }
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green); }
.text-gray   { color: var(--gray-400); }
.text-center { text-align: center; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(23,51,68,.6);
  border: 1px solid var(--gold-dim);
  border-radius: 9999px;
  padding: .375rem 1rem;
  font-size: .875rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.section-badge.on-light {
  background: rgba(214,165,39,.08);
  border-color: rgba(214,165,39,.3);
}
.section-badge .dot {
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50%      { opacity: .4; }
}

.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.section-sub   { color: var(--gray-400); font-size: 1.0625rem; max-width: 44rem; margin: .75rem auto 0; }
.section-sub.dark { color: var(--gray-500); }
.mb-16 { margin-bottom: 4rem; }

/* ---------- Buttons ---------- */
.btn,
.btn-gold,
.btn-dark,
.btn-outline-gold,
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  cursor: pointer;
  transition: all .2s;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 24px rgba(214,165,39,.3);
  color: var(--dark);
}
.btn-dark {
  background: var(--dark);
  color: #fff;
  border: 1px solid transparent;
}
.btn-dark:hover { background: #1a1f24; }
.btn-outline-gold {
  background: #0a0f14;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.0625rem; }
.btn-full { width: 100%; }

.btn svg, .btn-gold svg, .btn-outline-gold svg, .btn-outline-white svg { width: 1.1rem; height: 1.1rem; transition: transform .2s; flex-shrink: 0; }
.btn-gold:hover svg, .btn-outline-gold:hover svg { transform: translateX(3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: padding .3s, box-shadow .3s;
  padding: 1.25rem 0;
  background: rgba(10,15,20,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(214,165,39,.12);
}
.site-header.scrolled {
  padding: .75rem 0;
  border-bottom-color: rgba(214,165,39,.2);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav-logo img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  border-radius: .25rem;
}
.nav-logo-text .name {
  display: block;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .1em;
}
.nav-logo-text .tagline {
  display: block;
  font-size: .625rem;
  color: var(--gray-400);
  letter-spacing: .12em;
  text-transform: uppercase;
}
@media (max-width: 639px) { .nav-logo-text { display: none; } }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: .9375rem;
  font-weight: 500;
  color: #d1d5db;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: flex; } }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: #fff;
  border-radius: 9999px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: rgba(10,15,20,.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(214,165,39,.15);
  padding: 1.25rem 1rem 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav a {
  display: block;
  padding: .625rem .75rem;
  border-radius: .5rem;
  color: #d1d5db;
  font-weight: 500;
  transition: all .2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); background: rgba(214,165,39,.06); }
.mobile-nav .mobile-cta { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.06); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg-overlay-lr {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0a0f14 45%, rgba(10,15,20,.85) 70%, rgba(10,15,20,.6) 100%);
}
.hero-bg-overlay-tb {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,15,20,.7) 0%, transparent 40%, #0a0f14 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 8rem 0 4rem;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(23,51,68,.6);
  border: 1px solid rgba(214,165,39,.4);
  border-radius: 9999px;
  padding: .375rem 1rem;
  font-size: .875rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-badge .pulse {
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.1875rem;
  color: #d1d5db;
  line-height: 1.65;
  max-width: 36rem;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: #d1d5db;
}
.hero-trust-item svg { color: var(--gold); width: 1.1rem; height: 1.1rem; }

/* Stats card (hero right) */
.stats-card {
  background: rgba(23,51,68,.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(214,165,39,.3);
  border-radius: var(--radius);
  padding: 2rem;
  display: none;
}
@media (min-width: 1024px) { .stats-card { display: block; } }
.stats-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-box {
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(10,15,20,.6);
  border-radius: .75rem;
  border: 1px solid rgba(214,165,39,.15);
}
.stat-val { font-family: 'Chakra Petch', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.stat-lbl { font-size: .8125rem; color: var(--gray-400); margin-top: .25rem; }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-8px); }
}
.scroll-hint-inner {
  width: 1.5rem; height: 2.5rem;
  border: 2px solid rgba(214,165,39,.5);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: .375rem;
}
.scroll-hint-dot {
  width: .25rem; height: .5rem;
  background: var(--gold);
  border-radius: 9999px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 9rem 0 4rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-bottom: 1px solid rgba(214,165,39,.1);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.page-hero p  { color: var(--gray-400); font-size: 1.0625rem; max-width: 44rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gray-600); }

/* ---------- Cards ---------- */
.card {
  background: var(--card-dark-dim);
  border: 1px solid rgba(214,165,39,.2);
  border-radius: var(--radius);
  transition: all .3s;
  overflow: hidden;
}
.card:hover {
  border-color: rgba(214,165,39,.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.card-light {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  transition: all .3s;
}
.card-light:hover {
  border-color: rgba(214,165,39,.4);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.card-img {
  position: relative;
  height: 12rem;
  overflow: hidden;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.card:hover .card-img img { transform: scale(1.05); }
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card-dark) 0%, transparent 60%);
}
.card-img-icon {
  position: absolute;
  bottom: 1rem; left: 1rem;
  width: 3rem; height: 3rem;
  background: rgba(214,165,39,.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(214,165,39,.4);
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
}
.card-img-icon svg { width: 1.5rem; height: 1.5rem; color: var(--gold); }
.card-body { padding: 1.5rem; }
.card-body h3 { font-family: 'Chakra Petch', sans-serif; font-size: 1.125rem; margin-bottom: .75rem; }
.card-body p  { color: var(--gray-400); font-size: .9375rem; line-height: 1.6; margin-bottom: 1rem; }
.card-list    { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.card-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  color: var(--gray-400);
  font-size: .875rem;
}
.card-list li::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1.3;
  flex-shrink: 0;
}

/* ---------- Icon box ---------- */
.icon-box {
  width: 3rem; height: 3rem;
  background: rgba(214,165,39,.1);
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-box svg { width: 1.5rem; height: 1.5rem; color: var(--gold); }
.icon-box.sm  { width: 2.5rem; height: 2.5rem; border-radius: .5rem; }
.icon-box.sm svg { width: 1.2rem; height: 1.2rem; }

/* ---------- Feature row ---------- */
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-row h4 { font-weight: 600; color: #0a0f14; margin-bottom: .2rem; font-size: 1rem; }
.feature-row p  { font-size: .875rem; color: var(--gray-500); }

/* ---------- Grids ---------- */
.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1rem; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.grid-2-1 { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .grid-2-1 { grid-template-columns: 1fr 1fr; } }

/* ---------- Departments tags ---------- */
.dept-tags { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.dept-tag {
  background: rgba(23,51,68,.4);
  border: 1px solid rgba(214,165,39,.3);
  border-radius: 9999px;
  padding: .375rem 1rem;
  font-size: .875rem;
  color: #d1d5db;
}

/* ---------- Stats bar ---------- */
.stats-bar { background: var(--gold); padding: 4rem 0; }
.stats-bar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .stats-bar-grid { grid-template-columns: repeat(4, 1fr); } }
.stats-bar-item { text-align: center; }
.stats-bar-val { font-family: 'Chakra Petch', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--dark); }
.stats-bar-lbl { font-size: .875rem; color: rgba(10,15,20,.7); margin-top: .25rem; }

/* ---------- Floating image badge ---------- */
.img-wrap { position: relative; }
.img-wrap img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.float-badge-img {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.float-badge-img .val { font-family: 'Chakra Petch', sans-serif; font-size: 2rem; font-weight: 700; color: var(--dark); }
.float-badge-img .lbl { font-size: .8125rem; color: rgba(10,15,20,.75); }

/* ---------- Reassurance cards ---------- */
.reassurance-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all .2s;
}
.reassurance-card:hover { border-color: rgba(214,165,39,.4); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.reassurance-card h3 { font-size: 1rem; font-weight: 600; color: #0a0f14; margin-bottom: .2rem; }
.reassurance-card p  { font-size: .875rem; color: var(--gray-500); }

/* ---------- Project card ---------- */
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  transition: all .3s;
}
.project-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.project-card .card-img { height: 16rem; }
.project-card .card-img img { transition: transform .5s; }
.project-card:hover .card-img img { transform: scale(1.05); }
.project-card .card-body { padding: 1.5rem; }
.project-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: .8125rem;
  font-weight: 600;
  padding: .25rem .875rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.project-card h3 { font-family: 'Chakra Petch', sans-serif; font-size: 1.125rem; color: #0a0f14; margin-bottom: .5rem; }
.project-card p  { font-size: .9rem; color: var(--gray-600); }

/* ---------- FAQ Accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 52rem; margin: 0 auto; }
.faq-item {
  background: rgba(23,51,68,.3);
  border: 1px solid rgba(214,165,39,.2);
  border-radius: .75rem;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.light-bg {
  background: #fff;
  border: 1px solid #e5e7eb;
}
.faq-item:hover { border-color: rgba(214,165,39,.45); }
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  gap: 1rem;
  transition: color .2s;
}
.faq-item.light-bg .faq-trigger { color: #0a0f14; }
.faq-trigger:hover { color: var(--gold); }
.faq-chevron {
  width: 1.25rem; height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-body-inner { padding: 0 1.5rem 1.25rem; color: var(--gray-400); line-height: 1.7; font-size: .9375rem; }
.faq-item.light-bg .faq-body-inner { color: var(--gray-600); }

/* ---------- Alert banner ---------- */
.alert-banner {
  background: rgba(23,51,68,.5);
  border: 1px solid rgba(214,165,39,.35);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 2rem;
}
.alert-banner-icon { color: var(--gold); flex-shrink: 0; margin-top: .1rem; }
.alert-banner p { font-size: .9rem; color: #e5e7eb; line-height: 1.6; }
.alert-banner strong { color: var(--gold); }

/* ---------- CTA section ---------- */
.cta-section { background: var(--gold); padding: 5rem 0; text-align: center; }
.cta-section h2 { font-size: clamp(2rem, 4vw, 2.75rem); color: var(--dark); margin-bottom: 1rem; }
.cta-section p  { color: rgba(10,15,20,.75); font-size: 1.0625rem; margin-bottom: 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-3); border-top: 1px solid rgba(214,165,39,.15); }
.footer-main { padding: 4rem 0; }
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px)  { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo img { width: 2.5rem; height: 2.5rem; object-fit: contain; border-radius: .25rem; }
.footer-desc { color: var(--gray-400); font-size: .875rem; line-height: 1.6; max-width: 24rem; margin-bottom: 1rem; }
.footer-addr { display: flex; align-items: flex-start; gap: .5rem; color: var(--gray-400); font-size: .875rem; }

.footer-col h4 { font-weight: 600; font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-col a { color: var(--gray-400); font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }

.footer-seo {
  border-top: 1px solid rgba(214,165,39,.08);
  padding-top: 2rem;
}
.footer-seo-text { font-size: .75rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1rem; }
.footer-seo-text strong { color: var(--gray-500); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: .875rem;
  color: var(--gray-500);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-legal a { color: var(--gray-500); transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ============ Devis Modal v2 ============ */
.dv-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.dv-overlay.open { opacity: 1; pointer-events: all; }

.dv-modal {
  background: #fff;
  border-radius: 1rem;
  width: 100%; max-width: 620px;
  max-height: 92vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  transform: translateY(16px);
  transition: transform .25s;
}
.dv-overlay.open .dv-modal { transform: translateY(0); }

/* Header */
.dv-header {
  background: #0a0f14;
  padding: .875rem 1.25rem;
  display: flex; align-items: center; gap: .875rem;
  flex-shrink: 0;
}
.dv-header-icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--gold); border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #0a0f14;
}
.dv-header-text { flex: 1; }
.dv-header-text h2 { font-family: 'Chakra Petch', sans-serif; font-size: 1rem; color: #fff; font-weight: 700; line-height: 1.2; }
.dv-header-text span { font-size: .8rem; color: #9ca3af; }
.dv-close { background: none; border: none; cursor: pointer; color: #9ca3af; font-size: 1.375rem; line-height: 1; padding: .25rem; transition: color .2s; }
.dv-close:hover { color: #fff; }

/* Progress bar */
.dv-progress-bar { height: 3px; background: rgba(255,255,255,.08); flex-shrink: 0; }
.dv-progress-fill { height: 100%; background: var(--gold); transition: width .35s ease; }

/* Body */
.dv-body { padding: 1.5rem; overflow-y: auto; flex: 1; }

/* Footer */
.dv-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid #e5e7eb;
  display: flex; justify-content: space-between; align-items: center;
  flex-shrink: 0; background: #fff;
  gap: .75rem;
}

/* Form fields */
.dv-group { margin-bottom: 1.125rem; }
.dv-label { display: block; font-size: .875rem; font-weight: 600; color: #111827; margin-bottom: .5rem; }
.dv-label em { font-style: normal; font-weight: 400; color: #9ca3af; }
.dv-input {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid #e5e7eb; border-radius: .5rem;
  font-family: 'Poppins', sans-serif; font-size: .9375rem; color: #111827;
  background: #fff; outline: none; transition: border-color .2s;
  resize: vertical;
}
.dv-input:focus { border-color: var(--gold); }
.dv-input.dv-error { border-color: #ef4444; }
.dv-select {
  width: 100%; padding: .75rem 2.5rem .75rem 1rem;
  border: 1.5px solid #e5e7eb; border-radius: .5rem;
  font-family: 'Poppins', sans-serif; font-size: .9375rem; color: #111827;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right .75rem center;
  appearance: none; outline: none; cursor: pointer; transition: border-color .2s;
}
.dv-select:focus { border-color: var(--gold); }
.dv-select.dv-error { border-color: #ef4444; }
.dv-textarea { min-height: 6rem; }

/* Type grid */
.dv-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.dv-type-grid.dv-error-grid { outline: 2px solid #ef4444; border-radius: .5rem; }
.dv-type-card {
  border: 1.5px solid #e5e7eb; border-radius: .625rem;
  padding: .875rem 1rem; cursor: pointer;
  background: #fff; text-align: left; transition: all .18s;
  display: flex; flex-direction: column; gap: .25rem;
}
.dv-type-card:hover { border-color: var(--gold); background: rgba(214,165,39,.04); }
.dv-type-card.selected { border-color: var(--gold); background: rgba(214,165,39,.08); }
.dv-type-icon { font-size: 1.5rem; }
.dv-type-name { font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600; color: #111827; }

/* Urgency cards */
.dv-urgency-list { display: flex; flex-direction: column; gap: .5rem; }
.dv-urgency-list.dv-error-grid { outline: 2px solid #ef4444; border-radius: .5rem; }
.dv-urgency-card {
  border: 1.5px solid #e5e7eb; border-radius: .625rem;
  padding: .875rem 1.125rem; cursor: pointer; transition: all .18s;
  display: flex; flex-direction: column; gap: .125rem; text-align: left;
  background: none; width: 100%;
}
.dv-urgency-card strong { font-family: 'Poppins', sans-serif; font-size: .9375rem; font-weight: 700; color: #111827; }
.dv-urgency-card span { font-size: .8125rem; color: #6b7280; }
.dv-urgency-card.normal  { background: #fefce8; border-color: #fef08a; }
.dv-urgency-card.normal.selected  { border-color: #ca8a04; }
.dv-urgency-card.rapide  { background: #fffbeb; border-color: #fde68a; }
.dv-urgency-card.rapide.selected  { border-color: #f59e0b; }
.dv-urgency-card.urgence { background: #fff1f2; border-color: #fecdd3; }
.dv-urgency-card.urgence.selected { border-color: #f43f5e; }

/* Recap box */
.dv-recap { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: .625rem; padding: 1rem 1.25rem; margin-bottom: 1.25rem; }
.dv-recap h4 { font-family: 'Chakra Petch', sans-serif; font-size: .9375rem; color: #111827; margin-bottom: .75rem; }
.dv-recap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .375rem .5rem; font-size: .875rem; color: #374151; }
.dv-recap-grid strong { color: #111827; }

/* Info note */
.dv-info-note { background: #fffbeb; border: 1px solid #fde68a; border-radius: .5rem; padding: .875rem 1rem; font-size: .8125rem; color: #92400e; margin-top: .75rem; }

/* Success step */
.dv-success { text-align: center; padding: .5rem 0 1rem; }
.dv-success-icon {
  width: 5rem; height: 5rem; border-radius: 50%;
  background: rgba(214,165,39,.1); border: 2px solid rgba(214,165,39,.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--gold);
}
.dv-success h3 { font-family: 'Chakra Petch', sans-serif; font-size: 1.5rem; color: #111827; margin-bottom: .625rem; }
.dv-success p { color: #6b7280; font-size: .9375rem; margin-bottom: 1.25rem; line-height: 1.6; }
.dv-channels { display: flex; flex-direction: column; align-items: center; gap: .625rem; margin-top: 1.25rem; }
.dv-channel { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: #374151; }

/* Footer buttons */
.dv-btn-back {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .7rem 1.25rem; border-radius: .5rem;
  background: #f3f4f6; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: .875rem; font-weight: 600; color: #374151;
  transition: background .18s;
}
.dv-btn-back:hover { background: #e5e7eb; }
.dv-btn-next {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .7rem 1.5rem; border-radius: .5rem;
  background: var(--gold); border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600; color: #0a0f14;
  transition: background .18s;
}
.dv-btn-next:hover { background: var(--gold-dark); }
.dv-btn-send {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.5rem; border-radius: .5rem;
  background: #25d366; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600; color: #fff;
  transition: background .18s;
}
.dv-btn-send:hover { background: #1da851; }

/* Shake animation */
@keyframes dv-shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.dv-shake { animation: dv-shake .35s ease; }

/* Mobile sticky CTA */
.mobile-sticky-devis {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: #0a0f14;
  border-top: 1px solid rgba(214,165,39,.2);
  padding: .875rem 1rem;
}
@media (max-width: 767px) {
  .mobile-sticky-devis { display: flex; }
  body { padding-bottom: 4.5rem; }
}

/* ---------- Blog cards ---------- */
.blog-card { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid #e5e7eb; transition: all .3s; }
.blog-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.blog-card img { width: 100%; height: 13rem; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-cat { font-size: .75rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.blog-card h3 { font-family: 'Chakra Petch', sans-serif; font-size: 1.125rem; color: #0a0f14; margin-bottom: .5rem; line-height: 1.3; }
.blog-card p  { font-size: .875rem; color: var(--gray-600); margin-bottom: 1rem; }
.blog-meta { display: flex; gap: 1rem; font-size: .8125rem; color: var(--gray-400); }

/* ---------- Realisations / detail ---------- */
.realisation-details {
  background: #f9fafb;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
}
.realisation-details h4 { font-size: .875rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem; }
.realisation-details p  { font-size: .9375rem; color: #374151; line-height: 1.6; }
.tags-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.tag {
  background: #e5e7eb;
  color: #374151;
  font-size: .75rem;
  padding: .25rem .625rem;
  border-radius: 9999px;
}

/* ---------- Service detail ---------- */
.service-detail-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--gray-400);
}
.service-detail-list li::before {
  content: '';
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: .5rem;
}

/* ---------- Contact form (contact page) ---------- */
.contact-info-box {
  background: var(--card-dark-dim);
  border: 1px solid rgba(214,165,39,.2);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: .75rem;
  background: rgba(10,15,20,.4);
  transition: background .2s;
  margin-bottom: .75rem;
}
.contact-method:hover { background: rgba(10,15,20,.6); }
.contact-method h4 { font-weight: 600; font-size: .9375rem; }
.contact-method p  { font-size: .8125rem; color: var(--gray-400); }
.contact-method a  { color: var(--gold); font-size: .875rem; }

/* ---------- Fade-up animation ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- Misc ---------- */
.divider { border: none; border-top: 1px solid rgba(214,165,39,.12); margin: 2rem 0; }
.pt-8  { padding-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.gap-4 { gap: 1rem; }
.text-sm { font-size: .875rem; }

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  .section { padding: 4rem 0; }
  .hero-ctas .btn-lg { padding: .875rem 1.5rem; font-size: 1rem; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .float-badge-img { bottom: -.75rem; right: -.75rem; padding: .875rem 1rem; }
}

/* ====================================================
   EXTENDED UTILITY CLASSES (for HTML pages)
   ==================================================== */

/* --- Background helpers --- */
.bg-white   { background: #fff; color: #0a0f14; }
.bg-light   { background: #fff; color: #0a0f14; }
.bg-gray-50 { background: #f9fafb; color: #0a0f14; }
.bg-dark    { background: var(--dark); color: #fff; }
.bg-dark-2  { background: var(--dark-2); color: #fff; }
.bg-gold    { background: var(--gold); color: var(--dark); }
.pt-header  { padding-top: 8rem; }
.section-sm { padding: 3rem 0; }
.container-narrow { max-width: 56rem; }

/* --- Typography helpers --- */
.heading-dark { font-family: 'Chakra Petch', sans-serif; color: #0a0f14; font-size: clamp(1.75rem,4vw,2.75rem); line-height: 1.15; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-300 { color: #d1d5db; }
.text-xl { font-size: 1.25rem; line-height: 1.6; }
.text-lg { font-size: 1.125rem; }
.text-xs { font-size: .75rem; }
.text-sm { font-size: .875rem; }
.font-semibold { font-weight: 600; }
.font-medium   { font-weight: 500; }
.text-dark { color: #0a0f14; }
.text-green { color: var(--green); }
.text-gold  { color: var(--gold); }

/* --- Spacing --- */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 1.5rem; }
.mb-3 { margin-bottom: 2rem; }
.space-y > * + * { margin-top: 1.25rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; justify-content: center; }

/* --- Grid layout helpers --- */
.grid-2 { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.items-center { align-items: center; }
.gap-16 { gap: 4rem; }
.justify-center { justify-content: center; }

/* --- Logo text --- */
.nav-logo-name { display: block; font-family: 'Chakra Petch', sans-serif; font-weight: 700; font-size: 1.25rem; letter-spacing: .1em; }
.nav-logo-sub  { display: block; font-size: .625rem; color: var(--gray-400); letter-spacing: .12em; }
@media (max-width: 639px) { .nav-logo > div { display: none; } }

/* --- Badges / pills --- */
.badge-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(23,51,68,.6); border: 1px solid rgba(214,165,39,.4);
  border-radius: 9999px; padding: .375rem 1rem; font-size: .875rem;
  color: var(--gold); font-weight: 500;
}
.badge-pill-gold {
  display: inline-block;
  background: rgba(214,165,39,.1); border: 1px solid rgba(214,165,39,.4);
  border-radius: 9999px; padding: .375rem 1rem; font-size: .875rem;
  color: var(--gold); font-weight: 500;
}
.badge-pill-gold-dim {
  display: inline-block;
  background: rgba(214,165,39,.1); border: 1px solid rgba(214,165,39,.4);
  border-radius: 9999px; padding: .375rem 1rem; font-size: .875rem;
  color: var(--gold); font-weight: 500; margin-bottom: .75rem;
}
.pulse-dot {
  width: .5rem; height: .5rem; border-radius: 50%;
  background: var(--gold); animation: pulse-dot 2s ease-in-out infinite;
  display: inline-block;
}

/* --- Hero layout --- */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #0a0f14 45%, rgba(10,15,20,.85) 70%, rgba(10,15,20,.6) 100%),
              linear-gradient(to bottom, rgba(10,15,20,.7) 0%, transparent 40%, #0a0f14 100%);
}
.hero-content { position: relative; z-index: 10; width: 100%; padding: 8rem 0 4rem; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-content { grid-template-columns: 1fr 1fr; } }
.hero-left  {}
.hero-right {}
.hero-subtitle { font-size: 1.1875rem; color: #d1d5db; line-height: 1.65; max-width: 36rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.trust-row  { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: #d1d5db; }

/* --- Stats card (hero) --- */
.stats-card {
  background: rgba(23,51,68,.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(214,165,39,.3); border-radius: var(--radius); padding: 2rem;
  display: none;
}
@media (min-width: 1024px) { .stats-card { display: block; } }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-item  { text-align: center; padding: 1.25rem 1rem; background: rgba(10,15,20,.6); border-radius: .75rem; border: 1px solid rgba(214,165,39,.15); }
.stat-value { font-family: 'Chakra Petch', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); display: block; }
.stat-label { font-size: .8125rem; color: var(--gray-400); display: block; margin-top: .25rem; }

/* --- Scroll indicator --- */
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); animation: bounce 1.5s ease-in-out infinite; }
.scroll-mouse { width: 1.5rem; height: 2.5rem; border: 2px solid rgba(214,165,39,.5); border-radius: 9999px; display: flex; justify-content: center; padding-top: .375rem; }
.scroll-dot { width: .25rem; height: .5rem; background: var(--gold); border-radius: 9999px; }

/* --- Image helpers --- */
.img-relative { position: relative; }
.img-rounded  { border-radius: var(--radius); }
.overflow-hidden { overflow: hidden; }
.shadow-xl { box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.img-cover  { width: 100%; object-fit: cover; display: block; }
.h-400 { height: 400px; }
.h-450 { height: 450px; }
.h-500 { height: 500px; }
.h-full { height: 100%; }
.border-gray { border: 1px solid #e5e7eb; }
.border-gold-dim { border: 1px solid rgba(214,165,39,.2); }

/* --- Float badges --- */
.float-badge {
  position: absolute;
  background: var(--gold); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.float-value { font-family: 'Chakra Petch', sans-serif; font-size: 2rem; font-weight: 700; color: var(--dark); }
.float-label { font-size: .8125rem; color: rgba(10,15,20,.75); }
.float-br    { bottom: -1.5rem; right: -1.5rem; }
.float-bl    { bottom: -1.5rem; left: -1.5rem; }
.float-br-sm { bottom: -1rem; right: -1rem; padding: 1rem; }
.float-br-sm .float-value { font-size: 1.5rem; }

/* --- Section headers --- */
.section-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.section-header h2 { font-size: clamp(1.75rem,4vw,2.75rem); margin-bottom: .75rem; }
.section-header.dark h2 { color: #0a0f14; }

/* --- Feature grid (about preview on home) --- */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.feature-item { display: flex; align-items: flex-start; gap: .75rem; }
.feature-icon { width: 2.5rem; height: 2.5rem; background: rgba(214,165,39,.1); border-radius: .5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-item h4 { font-weight: 600; color: #0a0f14; font-size: .9375rem; }
.feature-item p  { font-size: .8125rem; color: var(--gray-500); }

/* --- Services grid --- */
.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
.service-card { background: rgba(23,51,68,.3); border: 1px solid rgba(214,165,39,.2); border-radius: var(--radius); overflow: hidden; transition: all .3s; display: flex; flex-direction: column; }
.service-card:hover { border-color: rgba(214,165,39,.5); transform: translateY(-4px); }
.service-img-wrap  { position: relative; height: 12rem; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--card-dark), transparent); }
.service-icon-wrap { position: absolute; bottom: 1rem; left: 1rem; width: 3rem; height: 3rem; background: rgba(214,165,39,.2); backdrop-filter: blur(4px); border: 1px solid rgba(214,165,39,.4); border-radius: .75rem; display: flex; align-items: center; justify-content: center; }
.service-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-body h3 { font-family: 'Chakra Petch', sans-serif; font-size: 1.125rem; margin-bottom: .75rem; }
.service-body p  { color: var(--gray-400); font-size: .9375rem; margin-bottom: 1rem; }
.service-list { list-style: none; flex: 1; margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.service-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--gray-400); }
.service-list li::before { content: '›'; color: var(--gold); font-size: 1.1rem; line-height: 1.3; flex-shrink: 0; }

/* --- Departments --- */
.departments-section { margin-top: 4rem; text-align: center; }
.dept-label { display: flex; align-items: center; justify-content: center; gap: .5rem; color: var(--gray-400); margin-bottom: 1rem; }

/* --- Reassurance grid --- */
.reassurance-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .reassurance-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reassurance-grid { grid-template-columns: 1fr 1fr 1fr; } }
.reassurance-icon { width: 3rem; height: 3rem; background: rgba(214,165,39,.1); border-radius: .75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* --- Project preview --- */
.projects-preview-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .projects-preview-grid { grid-template-columns: 1fr 1fr; } }
.project-preview-card { border-radius: var(--radius); overflow: hidden; border: 1px solid #e5e7eb; transition: all .3s; background: #fff; }
.project-preview-card:hover { border-color: var(--gold); }
.project-img-wrap { height: 16rem; overflow: hidden; }
.project-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-preview-card:hover .project-img-wrap img { transform: scale(1.05); }
.project-preview-body { padding: 1.5rem; }
.project-cat-badge { display: inline-block; background: var(--gold); color: var(--dark); font-size: .8125rem; font-weight: 600; padding: .25rem .875rem; border-radius: 9999px; margin-bottom: 1rem; }
.project-preview-body h3 { font-family: 'Chakra Petch', sans-serif; font-size: 1.125rem; color: #0a0f14; margin-bottom: .5rem; }
.project-preview-body p  { font-size: .875rem; color: var(--gray-600); }

/* --- CTA section texts --- */
.cta-heading { font-family: 'Chakra Petch', sans-serif; font-size: clamp(2rem,4vw,2.75rem); color: var(--dark); margin-bottom: 1rem; }
.cta-sub { color: rgba(10,15,20,.8); font-size: 1.0625rem; margin-bottom: 2rem; }

/* --- Contact info row --- */
.contact-info-row { display: flex; align-items: flex-start; gap: .5rem; }

/* --- Check lists --- */
.check-list, .check-list-dark { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.check-list li, .check-list-dark li { display: flex; align-items: flex-start; gap: .75rem; }
.check-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.check-list-dark li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.check-list li { color: #4b5563; }
.check-list-dark li { color: #d1d5db; }

/* --- Stats row (standalone, not hero) --- */
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-block { text-align: center; padding: 1.5rem 1rem; background: rgba(23,51,68,.3); border-radius: var(--radius); border: 1px solid rgba(214,165,39,.2); }
.stat-num  { font-family: 'Chakra Petch', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); display: block; }
.stat-desc { font-size: .875rem; color: var(--gray-400); margin-top: .5rem; display: block; }

/* --- Cards helpers --- */
.cards-3 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .cards-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards-3 { grid-template-columns: 1fr 1fr 1fr; } }
.cards-4 { display: grid; gap: 1.5rem; }
@media (min-width: 640px)  { .cards-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards-4 { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.card-dark {
  background: rgba(23,51,68,.3); border: 1px solid rgba(214,165,39,.2);
  border-radius: var(--radius); padding: 1.5rem; transition: border-color .2s;
}
.card-dark:hover { border-color: rgba(214,165,39,.5); }
.card-dark h3 { font-family: 'Chakra Petch', sans-serif; font-size: 1.0625rem; margin-bottom: .5rem; }
.card-icon { width: 3rem; height: 3rem; background: rgba(214,165,39,.1); border: 1px solid rgba(214,165,39,.3); border-radius: .75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.card-icon-lg { width: 4rem; height: 4rem; background: rgba(214,165,39,.1); border: 1px solid rgba(214,165,39,.3); border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.text-center { text-align: center; }

/* --- Tags --- */
.tags-row { display: flex; flex-wrap: wrap; gap: .625rem; }
.tag-light { background: #f3f4f6; border: 1px solid #e5e7eb; border-radius: 9999px; padding: .375rem 1rem; font-size: .875rem; color: #4b5563; display: flex; align-items: center; gap: .375rem; }
.tag-gray  { background: #f3f4f6; border: 1px solid #e5e7eb; border-radius: 9999px; padding: .25rem .75rem; font-size: .8125rem; color: #4b5563; }
.tag-green { display: flex; align-items: center; gap: .375rem; background: rgba(61,183,93,.1); border: 1px solid rgba(61,183,93,.3); border-radius: 9999px; padding: .375rem 1rem; font-size: .875rem; color: var(--green); }

/* --- SEO box --- */
.seo-box { background: #fff; border-radius: var(--radius); padding: 2rem; border: 1px solid #e5e7eb; box-shadow: 0 1px 8px rgba(0,0,0,.04); }
.mb-1 { margin-bottom: .5rem; }

/* --- Service detail (services page) --- */
.service-detail, .service-detail-rev { display: grid; gap: 3rem; align-items: center; margin-bottom: 6rem; }
@media (min-width: 1024px) { .service-detail { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .service-detail-rev { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .service-detail-rev .service-detail-img { order: 2; } .service-detail-rev .service-detail-content { order: 1; } }
.service-detail-img { position: relative; }
.service-detail-icon { position: absolute; top: 1.5rem; left: 1.5rem; width: 4rem; height: 4rem; background: rgba(214,165,39,.2); backdrop-filter: blur(4px); border: 1px solid rgba(214,165,39,.4); border-radius: 1rem; display: flex; align-items: center; justify-content: center; }
.service-detail-content {}
.service-detail-content h2 { font-family: 'Chakra Petch', sans-serif; font-size: clamp(1.5rem,3vw,2rem); margin-bottom: .75rem; }
.service-img-top-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,51,68,.8), transparent); }
.detail-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.detail-list li { display: flex; align-items: flex-start; gap: .75rem; color: #d1d5db; }
.detail-list li::before { content: '›'; color: var(--gold); font-size: 1.2rem; line-height: 1.3; flex-shrink: 0; }
.feature-tags { display: flex; flex-wrap: wrap; gap: .5rem; }

/* --- Projects list (realisations page) --- */
.projects-list { display: flex; flex-direction: column; gap: 4rem; }
.project-card { display: grid; border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
@media (min-width: 1024px) { .project-card { grid-template-columns: 1fr 1fr; } }
.project-card-rev {}
@media (min-width: 1024px) { .project-card-rev .project-card-img { order: 2; } .project-card-rev .project-card-body { order: 1; } }
.project-card-img { position: relative; min-height: 20rem; overflow: hidden; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-card:hover .project-card-img img { transform: scale(1.04); }
.project-badge { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: var(--dark); font-size: .8125rem; font-weight: 600; padding: .25rem .875rem; border-radius: 9999px; }
.project-card-body { padding: 2rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.project-meta { display: flex; gap: 1.5rem; font-size: .875rem; color: var(--gray-500); margin-bottom: 1rem; }
.project-meta span { display: flex; align-items: center; gap: .375rem; }
.project-card-body h2 { font-family: 'Chakra Petch', sans-serif; font-size: clamp(1.25rem,2.5vw,1.75rem); color: #0a0f14; margin-bottom: 1.5rem; }
.project-detail-block { margin-bottom: 1rem; }
.project-detail-block h4 { font-weight: 600; font-size: .9375rem; margin-bottom: .3rem; }
.project-detail-block p  { font-size: .9375rem; color: var(--gray-600); }

/* --- Contact page --- */
.contact-cards { display: grid; gap: 1rem; }
@media (min-width: 640px) { .contact-cards { grid-template-columns: 1fr 1fr; } }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; background: #fff; border-radius: var(--radius); border: 1px solid #e5e7eb; box-shadow: 0 1px 6px rgba(0,0,0,.04); }
.contact-card-icon { width: 3rem; height: 3rem; background: rgba(214,165,39,.1); border: 1px solid rgba(214,165,39,.3); border-radius: .75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card h4 { font-weight: 600; color: #0a0f14; margin-bottom: .25rem; font-size: .9375rem; }
.contact-card p  { font-size: .8125rem; color: var(--gray-500); margin-top: .25rem; }
.contact-form-box { background: #fff; border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 2rem; box-shadow: 0 1px 8px rgba(0,0,0,.04); }
.form-row-light { display: grid; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .form-row-light { grid-template-columns: 1fr 1fr; } }
.form-group-light { display: flex; flex-direction: column; gap: .375rem; }
.form-group-light label { font-size: .875rem; font-weight: 500; color: #374151; }
.form-group-light input,
.form-group-light select,
.form-group-light textarea {
  width: 100%; background: #f9fafb; border: 1px solid #d1d5db; border-radius: .5rem;
  padding: .65rem .875rem; color: #0a0f14; font-family: 'Poppins', sans-serif;
  font-size: .9375rem; outline: none; transition: border-color .2s;
}
.form-group-light input:focus,
.form-group-light select:focus,
.form-group-light textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214,165,39,.15); }
.form-group-light textarea { resize: vertical; min-height: 7rem; }
.form-legal { font-size: .75rem; color: var(--gray-500); text-align: center; margin-top: 1rem; }
.form-legal a { color: var(--gold); }
.contact-form button[type=submit] { margin-top: 1.25rem; }

/* --- Modal helpers --- */
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.modal-steps-dots { display: flex; gap: .5rem; }
.modal-step-dot { width: .625rem; height: .625rem; border-radius: 50%; background: rgba(214,165,39,.2); transition: all .3s; }
.modal-step-dot.active { background: var(--gold); }
.modal-step-dot.done   { background: rgba(214,165,39,.5); }
.modal-step-title { font-family: 'Chakra Petch', sans-serif; font-size: 1.125rem; margin-bottom: 1.25rem; }
.modal-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; gap: 1rem; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 500px) { .form-row { grid-template-columns: 1fr 1fr; } }
.hidden { display: none !important; }
.modal-confirm { text-align: center; padding: 2rem 1rem; }
.modal-confirm-icon { width: 4rem; height: 4rem; border-radius: 50%; background: rgba(61,183,93,.15); border: 2px solid rgba(61,183,93,.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; color: var(--green); font-weight: 700; }
.modal-confirm h3 { font-family: 'Chakra Petch', sans-serif; font-size: 1.375rem; margin-bottom: .75rem; }
.modal-confirm p  { color: var(--gray-400); margin-bottom: 1.5rem; }

/* --- Footer helpers --- */
.footer-grid { display: grid; gap: 2rem; padding: 3rem 0 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { color: var(--gray-400); font-size: .875rem; line-height: 1.65; max-width: 22rem; margin-top: .75rem; }
.footer-col h4 { font-weight: 600; font-size: .9375rem; margin-bottom: .875rem; color: #fff; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col li, .footer-col a { color: var(--gray-400); font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-seo { border-top: 1px solid rgba(214,165,39,.08); padding: 1.5rem 0 1rem; font-size: .75rem; color: var(--gray-600); line-height: 1.7; }
.footer-bottom { display: flex; flex-direction: column; gap: .75rem; align-items: center; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.04); font-size: .875rem; color: var(--gray-500); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-links a { color: var(--gray-500); font-size: .875rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

/* --- Legal page content --- */
.legal-content h2 { font-family: 'Chakra Petch', sans-serif; font-size: 1.25rem; color: #0a0f14; margin-top: 2rem; margin-bottom: .75rem; }
.legal-content p  { color: #4b5563; line-height: 1.75; margin-bottom: .75rem; font-size: .9375rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; color: #4b5563; margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: .375rem; font-size: .9375rem; line-height: 1.6; }
.legal-content a  { color: var(--gold); }
.legal-content a:hover { text-decoration: underline; }

/* --- Blog preview section --- */
.blog-preview-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .blog-preview-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-preview-grid { grid-template-columns: 1fr 1fr 1fr; } }
.blog-card-preview {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid #e5e7eb; border-radius: var(--radius);
  overflow: hidden; transition: all .3s; color: inherit;
}
.blog-card-preview:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-2px); }
.blog-card-thumb {
  height: 10rem; background: #173344;
  display: flex; align-items: center; justify-content: center;
}
.blog-card-letter { font-family: 'Chakra Petch', sans-serif; font-size: 4rem; font-weight: 700; color: rgba(214,165,39,.3); }
.blog-card-content { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .625rem; font-size: .8125rem; color: var(--gray-500); margin-bottom: .875rem; }
.blog-tag { background: rgba(214,165,39,.1); color: var(--gold); padding: .2rem .6rem; border-radius: .25rem; font-weight: 500; }
.blog-card-content h3 { font-family: 'Chakra Petch', sans-serif; font-size: 1.0625rem; color: #0a0f14; margin-bottom: .625rem; line-height: 1.35; transition: color .2s; }
.blog-card-preview:hover h3 { color: var(--gold); }
.blog-card-content p  { font-size: .875rem; color: var(--gray-600); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.blog-link { display: inline-flex; align-items: center; gap: .375rem; color: var(--gold); font-size: .875rem; font-weight: 500; }
.blog-date, .blog-read { display: flex; align-items: center; gap: .3rem; }

/* --- Blog article pages --- */
.article-hero {
  background: #0a0f14;
  padding: 6rem 0 3rem;
}
.article-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) { .article-hero-inner { grid-template-columns: 1fr 340px; } }
.article-hero-text { display: flex; flex-direction: column; }
.article-hero .breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--gray-400); margin-bottom: 1.25rem; }
.article-hero .breadcrumb a { color: var(--gray-400); transition: color .2s; }
.article-hero .breadcrumb a:hover { color: var(--gold); }
.article-hero .breadcrumb .sep { color: var(--gray-500); }
.article-meta-top { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-bottom: 1.25rem; font-size: .875rem; color: var(--gray-400); }
.article-meta-top .blog-tag { font-size: .8125rem; }
.article-date, .article-read { display: flex; align-items: center; gap: .3rem; }
.article-hero h1 { font-family: 'Chakra Petch', sans-serif; font-size: clamp(1.5rem, 3vw, 2.25rem); color: #fff; line-height: 1.2; }

/* Article hero visual */
.article-hero-visual { display: flex; align-items: stretch; }
.article-hero-img {
  width: 100%;
  min-height: 240px;
  background: linear-gradient(135deg, #173344 0%, #0a0f14 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(214,165,39,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.article-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 35%, rgba(214,165,39,.12) 0%, transparent 60%);
  pointer-events: none;
}
.article-visual-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(214,165,39,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.article-visual-ring::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(214,165,39,.2);
}
.article-visual-letter {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  position: relative;
  z-index: 2;
}
.article-visual-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--gold);
  color: #0a0f14;
  font-family: 'Chakra Petch', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: .25rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  z-index: 2;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) { .article-layout { grid-template-columns: minmax(0,2.5fr) 340px; } }

/* Article lead + body */
.article-lead { font-size: 1.0625rem; color: #374151; line-height: 1.8; font-weight: 500; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid #e5e7eb; }
.article-body { color: #374151; line-height: 1.8; }
.article-body h2 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.375rem; color: #0a0f14;
  margin: 2.25rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid rgba(214,165,39,.2);
}
.article-body h3 { font-family: 'Chakra Petch', sans-serif; font-size: 1.125rem; color: #0a0f14; margin: 1.5rem 0 .625rem; }
.article-body p  { margin-bottom: 1rem; font-size: .9375rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body ul li, .article-body ol li { margin-bottom: .5rem; font-size: .9375rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body strong { color: #0a0f14; font-weight: 600; }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .9rem; }
.article-body th { background: #0a0f14; color: var(--gold); padding: .6rem 1rem; text-align: left; font-family: 'Chakra Petch', sans-serif; font-size: .875rem; }
.article-body td { padding: .6rem 1rem; border-bottom: 1px solid #e5e7eb; }
.article-body tr:nth-child(even) td { background: #f9fafb; }

/* Inline callout box */
.article-cta-box {
  background: #173344;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2.5rem;
}
.article-cta-box h3 { font-family: 'Chakra Petch', sans-serif; color: #fff; font-size: 1.25rem; margin-bottom: .75rem; }
.article-cta-box p  { color: #d1d5db; font-size: .9375rem; margin-bottom: 1.25rem; }
.article-cta-box strong { color: #fff; font-weight: 600; }
.article-cta-btns { display: flex; flex-wrap: wrap; gap: .875rem; }

/* Sidebar */
.article-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 6rem; }
.sidebar-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.5rem;
}
.sidebar-card h4 { font-family: 'Chakra Petch', sans-serif; font-size: 1rem; color: #0a0f14; margin-bottom: 1rem; padding-bottom: .625rem; border-bottom: 1px solid #e5e7eb; }
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.sidebar-links li a { font-size: .875rem; color: var(--gray-600); transition: color .2s; display: flex; align-items: flex-start; gap: .4rem; }
.sidebar-links li a::before { content: '→'; color: var(--gold); flex-shrink: 0; }
.sidebar-links li a:hover { color: var(--gold); }
.sidebar-phone { display: block; font-family: 'Chakra Petch', sans-serif; font-size: 1.375rem; color: var(--gold); font-weight: 700; margin-bottom: .5rem; }
.sidebar-email { display: block; font-size: .875rem; color: var(--gray-600); margin-bottom: 1.25rem; }
.sidebar-contact { background: #173344; border-color: rgba(214,165,39,.2); }
.sidebar-contact h4 { color: #fff; border-color: rgba(255,255,255,.1); }
.sidebar-contact .sidebar-phone { color: var(--gold); }
.sidebar-contact .sidebar-email { color: #9ca3af; }
.sidebar-contact p { font-size: .8125rem; color: #9ca3af; margin-top: .75rem; }

/* Blog card ring visual */
.blog-card-thumb { position: relative; overflow: hidden; }
.blog-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(214,165,39,.1) 0%, transparent 65%);
  pointer-events: none;
}
.blog-card-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1.5px solid rgba(214,165,39,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.blog-card-ring::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(214,165,39,.2);
}
.blog-card-ring .blog-card-letter { font-size: 2.5rem; color: var(--gold); opacity: 1; position: relative; z-index: 2; }

/* --- Responsive overrides --- */
@media (max-width: 767px) {
  .grid-2 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-subtitle { font-size: 1rem; }
  .service-detail, .service-detail-rev { grid-template-columns: 1fr; }
  .project-card { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .float-br  { bottom: -.75rem; right: -.75rem; padding: .875rem 1rem; }
  .float-bl  { bottom: -.75rem; left: -.75rem; padding: .875rem 1rem; }
}
