/* ============================================================================
   SILITEO ARGON — Theme CSS
   Palette : vert lime #B8DC3A / anthracite #18181B
   Auteur  : SILITEO (SARL LELEU)
============================================================================ */

:root {
  --siliteo-green: #b8dc3a;
  --siliteo-green-dark: #8fb52a;
  --siliteo-green-light: #d4ed7a;
  --siliteo-dark: #18181b;
  --siliteo-dark-2: #27272a;
  --siliteo-dark-3: #3f3f46;
  --siliteo-text: #1f2937;
  --siliteo-muted: #6b7280;
  --siliteo-soft: #f8fafc;
  --siliteo-border: #e5e7eb;
  --siliteo-white: #ffffff;
  --siliteo-success: #10b981;
  --siliteo-warning: #f59e0b;
  --siliteo-danger: #ef4444;

  --siliteo-grad: linear-gradient(135deg, #b8dc3a 0%, #6dbf3a 100%);
  --siliteo-grad-dark: linear-gradient(135deg, #18181b 0%, #2d2d35 100%);
  --siliteo-grad-soft: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  --siliteo-grad-hero: linear-gradient(135deg, #18181b 0%, #1f2937 50%, #0f172a 100%);

  --siliteo-shadow-sm: 0 2px 8px rgba(24, 24, 27, 0.06);
  --siliteo-shadow: 0 8px 24px rgba(24, 24, 27, 0.10);
  --siliteo-shadow-lg: 0 24px 60px rgba(24, 24, 27, 0.18);
  --siliteo-shadow-glow: 0 8px 30px rgba(184, 220, 58, 0.35);

  --siliteo-radius-sm: 8px;
  --siliteo-radius: 14px;
  --siliteo-radius-lg: 22px;
  --siliteo-radius-xl: 32px;

  --siliteo-font-sans: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --siliteo-font-display: 'Inter', 'Open Sans', sans-serif;
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--siliteo-font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--siliteo-text);
  background: var(--siliteo-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--siliteo-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--siliteo-green-dark); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--siliteo-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--siliteo-dark);
  margin: 0 0 .65em;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.65rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1rem; }

.lead {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--siliteo-muted);
  font-weight: 400;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.container-tight { max-width: 920px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; }
.section--soft { background: var(--siliteo-soft); }
.section--dark { background: var(--siliteo-dark); color: #e5e7eb; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .lead { color: #9ca3af; }
.section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--siliteo-green-dark);
  background: rgba(184, 220, 58, 0.12);
  padding: .4rem .85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section--dark .section-eyebrow {
  color: var(--siliteo-green);
  background: rgba(184, 220, 58, 0.15);
}
.text-center { text-align: center; }
.text-gradient {
  background: var(--siliteo-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  font-family: var(--siliteo-font-sans);
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .01em;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s cubic-bezier(.2,.8,.2,1);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--siliteo-grad);
  color: var(--siliteo-dark);
  box-shadow: var(--siliteo-shadow-glow);
}
.btn-primary:hover { color: var(--siliteo-dark); box-shadow: 0 12px 36px rgba(184,220,58,.5); }
.btn-dark { background: var(--siliteo-dark); color: #fff; }
.btn-dark:hover { background: var(--siliteo-dark-2); color: #fff; box-shadow: var(--siliteo-shadow-lg); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.btn-ghost:hover { color: #fff; border-color: var(--siliteo-green); background: rgba(184,220,58,.08); }
.btn-outline {
  background: transparent;
  color: var(--siliteo-dark);
  border-color: var(--siliteo-dark);
}
.btn-outline:hover { background: var(--siliteo-dark); color: #fff; }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn-sm { padding: .6rem 1.1rem; font-size: .88rem; }
.btn i, .btn svg { font-size: 1.05em; }

/* Pulse the remote support button — used in header (.btn-sm) and CTAs */
.btn-remote {
  position: relative;
  background: var(--siliteo-grad);
  color: var(--siliteo-dark);
  z-index: 1;
}
/* Outer pulsing ring */
.btn-remote::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background: var(--siliteo-grad);
  opacity: .55;
  z-index: -1;
  animation: siliteo-pulse-ring 2.2s cubic-bezier(.3,.7,.3,1) infinite;
}
/* Inner subtle glow */
.btn-remote::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(184,220,58, .9);
  animation: siliteo-pulse-shadow 2.2s cubic-bezier(.3,.7,.3,1) infinite;
  pointer-events: none;
}
@keyframes siliteo-pulse-ring {
  0%   { transform: scale(1);    opacity: .55; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}
@keyframes siliteo-pulse-shadow {
  0%   { box-shadow: 0 0 0 0 rgba(184,220,58, .85); }
  70%  { box-shadow: 0 0 0 22px rgba(184,220,58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184,220,58, 0); }
}
.btn-remote:hover::before { animation-duration: 1.4s; }
/* Ghost-style remote button (secondary placement) — discrete pulse */
.btn-ghost.btn-remote {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(184,220,58,.5);
}
.btn-ghost.btn-remote::before {
  background: transparent;
  border: 2px solid var(--siliteo-green);
  opacity: .4;
}
.btn-ghost.btn-remote:hover { color: var(--siliteo-green); border-color: var(--siliteo-green); }
.btn-outline.btn-remote {
  background: #fff;
  color: var(--siliteo-dark);
  border: 2px solid var(--siliteo-green);
}
.btn-outline.btn-remote::before { opacity: .35; }

/* ---------- Header / Navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--siliteo-border);
  transition: all .3s ease;
}
.site-header--dark {
  background: rgba(24, 24, 27, 0.85);
  border-bottom-color: rgba(255,255,255,.08);
}
.site-header--dark .nav-link { color: #e5e7eb; }
.site-header--dark .nav-link:hover { color: var(--siliteo-green); }

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .85rem 0;
}
.nav-brand {
  display: flex; align-items: center; gap: .8rem;
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--siliteo-dark);
}
.nav-brand img { max-height: 44px; width: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-menu > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 500; font-size: .97rem;
  color: var(--siliteo-text);
  padding: .5rem 0;
  position: relative;
}
.nav-link:hover { color: var(--siliteo-green-dark); }
.nav-menu > li > .nav-link.current::after,
.nav-menu > li.current-menu-item > .nav-link::after,
.nav-menu > li.current-menu-parent > .nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--siliteo-grad); border-radius: 2px;
}
.dropdown-caret {
  font-size: .65em;
  margin-left: .15rem;
  transition: transform .25s ease;
  opacity: .65;
  display: inline-block;
}
.nav-menu > li.has-dropdown:hover > .nav-link .dropdown-caret,
.nav-menu > li.has-dropdown.is-open > .nav-link .dropdown-caret,
.nav-menu > li.menu-item-has-children:hover > .nav-link .dropdown-caret,
.nav-menu > li.menu-item-has-children.is-open > .nav-link .dropdown-caret {
  transform: rotate(180deg); opacity: 1;
}

/* CSS-only chevron fallback when JS/walker fails to inject the <i> tag */
.nav-menu > li.menu-item-has-children > .nav-link::before {
  content: '\f078'; /* fa-chevron-down */
  font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', sans-serif;
  font-weight: 900;
  font-size: .65em;
  margin-left: .35rem;
  margin-right: 0;
  display: inline-block;
  order: 99;
  opacity: .55;
  transition: transform .25s ease;
}
.nav-menu > li.menu-item-has-children:hover > .nav-link::before,
.nav-menu > li.menu-item-has-children.is-open > .nav-link::before {
  transform: rotate(180deg);
  opacity: 1;
}
/* If walker DID inject the <i.dropdown-caret>, hide the ::before duplicate */
.nav-menu > li.menu-item-has-children > .nav-link:has(.dropdown-caret)::before { display: none; }
.nav-menu > li.menu-item-has-children > .nav-link { flex-direction: row; }

/* Sub-menu dropdown (desktop) */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 260px;
  background: #fff;
  list-style: none;
  margin: 0;
  padding: .5rem;
  border-radius: var(--siliteo-radius);
  border: 1px solid var(--siliteo-border);
  box-shadow: var(--siliteo-shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 10;
}
.nav-menu .sub-menu::before {
  content: '';
  position: absolute;
  top: -10px; left: 0; right: 0; height: 10px;
}
.nav-menu > li.has-dropdown:hover > .sub-menu,
.nav-menu > li.has-dropdown:focus-within > .sub-menu,
.nav-menu > li.has-dropdown.is-open > .sub-menu,
.nav-menu > li.menu-item-has-children:hover > .sub-menu,
.nav-menu > li.menu-item-has-children:focus-within > .sub-menu,
.nav-menu > li.menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-menu .sub-menu li { width: 100%; }
.nav-menu .sub-menu .nav-link {
  display: block;
  padding: .65rem .85rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: .94rem;
  color: var(--siliteo-text);
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav-menu .sub-menu .nav-link:hover,
.nav-menu .sub-menu .current-menu-item > .nav-link {
  background: var(--siliteo-soft);
  color: var(--siliteo-green-dark);
}
.nav-menu .sub-menu .nav-link::after { display: none !important; }
.nav-cta { display: flex; align-items: center; gap: .8rem; }
.nav-tel {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--siliteo-dark);
}
.nav-tel i { color: var(--siliteo-green-dark); }

.nav-toggle {
  display: none;
  background: transparent; border: 0;
  font-size: 1.5rem; color: var(--siliteo-dark);
  cursor: pointer; padding: .35rem;
}

@media (max-width: 991px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu, .nav-tel { display: none; }
  .nav-menu.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    padding: .5rem 1rem 1rem;
    gap: 0;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    border-top: 1px solid var(--siliteo-border);
    box-shadow: var(--siliteo-shadow);
  }
  .nav-menu.is-open > li {
    width: 100%;
    border-bottom: 1px solid var(--siliteo-border);
  }
  .nav-menu.is-open > li:last-child { border-bottom: 0; }
  .nav-menu.is-open .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 0;
    width: 100%;
  }
  /* Sub-menu collapses inside accordion on mobile */
  .nav-menu.is-open .sub-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 .5rem .75rem;
    background: transparent;
    min-width: 0;
    max-height: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav-menu.is-open > li.has-dropdown.is-open > .sub-menu,
  .nav-menu.is-open > li.menu-item-has-children.is-open > .sub-menu { max-height: 800px; }
  /* Force-override the desktop translate(-50%, 0) that would push the sub-menu off-screen on mobile */
  .nav-menu.is-open > li.has-dropdown > .sub-menu,
  .nav-menu.is-open > li.menu-item-has-children > .sub-menu,
  .nav-menu.is-open > li.has-dropdown.is-open > .sub-menu,
  .nav-menu.is-open > li.menu-item-has-children.is-open > .sub-menu {
    transform: none !important;
    left: auto;
    top: auto;
    min-width: 0;
  }
  .nav-menu.is-open .sub-menu .nav-link {
    padding: .55rem 0;
    font-size: .92rem;
  }
  .nav-menu.is-open .dropdown-caret { font-size: .8em; opacity: .8; }
  .nav-menu.is-open > li.menu-item-has-children > .nav-link::before { font-size: .8em; opacity: .8; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--siliteo-grad-hero);
  color: #fff;
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(5rem, 10vw, 9rem);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  width: 70vw; height: 70vw;
  top: -35vw; right: -25vw;
  background: radial-gradient(closest-side, rgba(184,220,58,.18), transparent 70%);
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  width: 50vw; height: 50vw;
  bottom: -25vw; left: -15vw;
  background: radial-gradient(closest-side, rgba(109,191,58,.12), transparent 70%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 991px) { .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .85rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(184,220,58,.15);
  color: var(--siliteo-green);
  padding: .5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.hero h1 .text-gradient { display: inline-block; }
.hero p {
  color: #cbd5e1;
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust {
  display: flex; gap: 1.5rem; align-items: center;
  flex-wrap: wrap; color: #94a3b8; font-size: .92rem;
}
.hero-trust strong { color: var(--siliteo-green); }

/* Hero visual: floating card stack */
.hero-visual { position: relative; min-height: 460px; }
@media (max-width: 991px) { .hero-visual { min-height: 360px; } }
.hero-card {
  position: absolute;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--siliteo-radius-lg);
  padding: 1.4rem 1.6rem;
  color: #fff;
  box-shadow: var(--siliteo-shadow-lg);
  display: flex; align-items: center; gap: 1rem;
  animation: siliteo-float 6s ease-in-out infinite;
}
.hero-card i {
  width: 48px; height: 48px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--siliteo-grad);
  color: var(--siliteo-dark);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hero-card .h4 { font-weight: 700; margin: 0 0 .15rem; color: #fff; }
.hero-card .small { font-size: .82rem; color: #cbd5e1; }
.hero-card-1 { top: 0; left: 0; width: 78%; }
.hero-card-2 { top: 36%; right: 0; width: 78%; animation-delay: -2s; }
.hero-card-3 { bottom: 0; left: 8%; width: 78%; animation-delay: -4s; }
@keyframes siliteo-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ---------- Trust bar / stats ---------- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--siliteo-border);
}
@media (max-width: 767px) { .trust-bar { grid-template-columns: repeat(2, 1fr); } }
.trust-item { text-align: center; padding: .5rem 1rem; }
.trust-item .num {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  background: var(--siliteo-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: .35rem;
}
.trust-item .label {
  font-size: .88rem;
  color: var(--siliteo-muted);
  font-weight: 500;
}

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--siliteo-border);
  border-radius: var(--siliteo-radius-lg);
  padding: 2rem 1.7rem;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
  isolation: isolate;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--siliteo-grad);
  opacity: 0; z-index: -1;
  transition: opacity .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--siliteo-shadow-lg);
}
.service-card .icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--siliteo-grad);
  color: var(--siliteo-dark);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 18px rgba(184,220,58,.35);
}
.service-card h3 { margin-bottom: .5rem; font-size: 1.25rem; }
.service-card p { color: var(--siliteo-muted); font-size: .96rem; margin-bottom: 1rem; }
.service-card .more {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--siliteo-green-dark); font-weight: 600; font-size: .92rem;
}
.service-card .more i { transition: transform .2s ease; }
.service-card:hover .more i { transform: translateX(4px); }

/* ---------- Why us / features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2.5rem;
}
@media (max-width: 767px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.1rem;
  align-items: start;
}
.feature-item .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(184,220,58,.15);
  color: var(--siliteo-green-dark);
  font-size: 1.3rem;
}
.feature-item h4 { margin: 0 0 .35rem; font-size: 1.1rem; }
.feature-item p { color: var(--siliteo-muted); font-size: .96rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: #fff;
  border: 1px solid var(--siliteo-border);
  border-radius: var(--siliteo-radius-lg);
  padding: 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--siliteo-shadow); }
.testi-stars { color: #fbbf24; margin-bottom: .8rem; font-size: .95rem; letter-spacing: .12em; }
.testi-quote {
  font-size: .98rem; line-height: 1.6; color: var(--siliteo-text);
  margin-bottom: 1.25rem; flex-grow: 1; font-style: italic;
}
.testi-quote::before { content: '“'; color: var(--siliteo-green-dark); font-size: 2.2rem; line-height: 0; vertical-align: -0.6rem; margin-right: .15rem; font-style: normal; font-weight: 800; }
.testi-author {
  display: flex; align-items: center; gap: .8rem;
  border-top: 1px solid var(--siliteo-border);
  padding-top: 1rem;
}
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--siliteo-grad);
  color: var(--siliteo-dark);
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; color: var(--siliteo-dark); font-size: .95rem; }
.testi-role { font-size: .82rem; color: var(--siliteo-muted); }

/* ---------- Real client logos ---------- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--siliteo-border);
  border-radius: var(--siliteo-radius-lg);
  transition: all .25s ease;
  filter: grayscale(.8);
  opacity: .85;
  text-decoration: none;
}
.client-logo:hover {
  filter: none;
  opacity: 1;
  border-color: var(--siliteo-green);
  transform: translateY(-3px);
  box-shadow: var(--siliteo-shadow);
}
.client-logo img {
  max-height: 70px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ---------- Partners ---------- */
.partners-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.partner-logo {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 90px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--siliteo-muted);
  background: #fff;
  border: 1px solid var(--siliteo-border);
  border-radius: var(--siliteo-radius);
  padding: .85rem 1rem;
  transition: all .25s ease;
  filter: grayscale(.7);
  opacity: .82;
  text-decoration: none;
}
.partner-logo:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-3px);
  border-color: var(--siliteo-green);
  color: var(--siliteo-dark);
  box-shadow: var(--siliteo-shadow-sm);
}
.partner-logo img {
  max-height: 48px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.partner-logo .partner-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: linear-gradient(135deg, #cd7f32 0%, #b06a28 100%);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .2rem .55rem;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(24,24,27,.18);
  white-space: nowrap;
}

/* ---------- Big CTA banner ---------- */
.cta-banner {
  position: relative;
  background: var(--siliteo-grad-hero);
  color: #fff;
  border-radius: var(--siliteo-radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(184,220,58,.18), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(109,191,58,.15), transparent 50%);
  z-index: -1;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: #cbd5e1; max-width: 580px; }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ---------- B2C Shop section ---------- */
.shop-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 991px) { .shop-block { grid-template-columns: 1fr; } }
.shop-tag-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
  margin-top: 1.5rem;
}
.shop-tag {
  display: flex; align-items: center; gap: .65rem;
  padding: .85rem 1rem;
  background: var(--siliteo-soft);
  border-radius: var(--siliteo-radius);
  font-size: .94rem;
  color: var(--siliteo-text);
  border: 1px solid var(--siliteo-border);
}
.shop-tag i { color: var(--siliteo-green-dark); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--siliteo-dark);
  color: #cbd5e1;
  padding: 4rem 0 1.5rem;
}
.site-footer h4 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.2rem; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: var(--siliteo-green); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 991px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { max-height: 44px; margin-bottom: 1rem; }
.footer-brand p { color: #94a3b8; font-size: .94rem; max-width: 320px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: .6rem; font-size: .94rem; }
.footer-contact-item { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: .8rem; font-size: .94rem; }
.footer-contact-item i { color: var(--siliteo-green); margin-top: 4px; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: .85rem; color: #6b7280;
}
.social-links { display: flex; gap: .6rem; }
.social-links a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: #cbd5e1;
  transition: all .25s ease;
}
.social-links a:hover { background: var(--siliteo-grad); color: var(--siliteo-dark); border-color: transparent; }

/* ---------- Page generic + Single ---------- */
.page-header {
  background: var(--siliteo-grad-hero);
  color: #fff;
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(184,220,58,.15), transparent 55%);
}
.page-header h1 { color: #fff; position: relative; }
.page-header .lead { color: #cbd5e1; max-width: 720px; margin: 0 auto; position: relative; }
.breadcrumbs {
  font-size: .88rem;
  color: #94a3b8;
  margin-bottom: .75rem;
  position: relative;
}
.breadcrumbs a { color: #cbd5e1; }
.breadcrumbs a:hover { color: var(--siliteo-green); }

.page-content { padding: clamp(3rem, 6vw, 5rem) 0; }
.page-content .container-tight ul, .page-content .container-tight ol { padding-left: 1.4rem; }
.page-content .container-tight li { margin-bottom: .35rem; }
.page-content h2 { margin-top: 2.5rem; }
.page-content h3 { margin-top: 1.75rem; }
.page-content blockquote {
  border-left: 4px solid var(--siliteo-green);
  padding: .25rem 0 .25rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--siliteo-text);
  font-style: italic;
}

/* ---------- Blog cards ---------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }
.post-card {
  background: #fff;
  border: 1px solid var(--siliteo-border);
  border-radius: var(--siliteo-radius-lg);
  overflow: hidden;
  transition: all .3s ease;
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--siliteo-shadow); }
.post-card .thumb {
  aspect-ratio: 16 / 9;
  background: var(--siliteo-grad-soft);
  background-size: cover;
  background-position: center;
}
.post-card .thumb-empty {
  display: flex; align-items: center; justify-content: center;
  background: var(--siliteo-grad-soft);
  color: var(--siliteo-green-dark);
  font-size: 2.4rem;
}
.post-card .body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.post-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.post-card .meta {
  font-size: .82rem; color: var(--siliteo-muted);
  margin-bottom: .75rem;
}
.post-card p { color: var(--siliteo-muted); font-size: .94rem; flex-grow: 1; }

/* ---------- Forms ---------- */
.form-control,
input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
textarea, select {
  width: 100%;
  padding: .85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--siliteo-text);
  background: #fff;
  border: 1.5px solid var(--siliteo-border);
  border-radius: var(--siliteo-radius);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control:focus,
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--siliteo-green);
  box-shadow: 0 0 0 3px rgba(184,220,58,.18);
}
label { font-weight: 500; font-size: .92rem; color: var(--siliteo-text); margin-bottom: .35rem; display: block; }

/* ---------- Reveal animations on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 404 ---------- */
.error-404 { padding: 6rem 0; text-align: center; }
.error-404 .big { font-size: clamp(5rem, 14vw, 9rem); font-weight: 800; line-height: 1; background: var(--siliteo-grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 0; }

/* ============================================================
   GRAPHIC ENHANCEMENTS — patterns, blobs, watermark icons
============================================================ */

/* SVG inline patterns as data URIs (zero extra HTTP request) */
:root {
  --siliteo-pattern-circuit: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120' fill='none' stroke='%23b8dc3a' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><path d='M10 10h30v20h20v-20h30M10 60h20v20h30M70 50h40M90 70v40M30 110h30v-20h60' opacity='.4'/><circle cx='10' cy='10' r='3' fill='%23b8dc3a'/><circle cx='40' cy='30' r='3' fill='%23b8dc3a'/><circle cx='90' cy='10' r='2.5' fill='%23b8dc3a'/><circle cx='30' cy='80' r='2.5' fill='%23b8dc3a'/><circle cx='70' cy='50' r='2.5' fill='%23b8dc3a'/><circle cx='110' cy='110' r='3' fill='%23b8dc3a'/></svg>");
  --siliteo-pattern-dots-dark: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28'><circle cx='2' cy='2' r='1.2' fill='%23ffffff' opacity='.08'/></svg>");
  --siliteo-pattern-dots-light: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24'><circle cx='1' cy='1' r='1' fill='%2318181b' opacity='.07'/></svg>");
  --siliteo-pattern-hex: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100' fill='none' stroke='%2318181b' stroke-width='1' opacity='.05'><path d='M28 0 L56 16 L56 50 L28 66 L0 50 L0 16 Z M28 34 L56 50 M28 34 L0 50 M28 34 L28 0'/></svg>");
  --siliteo-pattern-grid: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' fill='none' stroke='%23ffffff' stroke-width='.5' opacity='.06'><path d='M0 0h40v40H0z M0 20h40 M20 0v40'/></svg>");
}

/* Dark sections — circuit board overlay + animated mesh */
.hero,
.page-header,
.cta-banner,
.section--dark,
.site-footer {
  position: relative;
}
.hero::after { display: none !important; } /* drop original simple radial overlay */
.hero {
  background:
    radial-gradient(1100px 600px at 88% 0%, rgba(184,220,58,.16), transparent 60%),
    radial-gradient(900px 500px at -8% 90%, rgba(109,191,58,.12), transparent 65%),
    var(--siliteo-grad-hero);
}
.hero > .container { position: relative; z-index: 2; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--siliteo-pattern-circuit);
  background-size: 280px 280px;
  background-position: 0 0;
  opacity: .35;
  /* Pattern visible bas-gauche / centre-haut, dégagé côté droit (zone CTA + cards) */
  mask-image:
    radial-gradient(ellipse 55% 70% at 18% 80%, black 0%, transparent 70%),
    radial-gradient(ellipse 35% 45% at 50% 12%, black 0%, transparent 70%);
  -webkit-mask-image:
    radial-gradient(ellipse 55% 70% at 18% 80%, black 0%, transparent 70%),
    radial-gradient(ellipse 35% 45% at 50% 12%, black 0%, transparent 70%);
  mask-composite: add;
  -webkit-mask-composite: source-over;
  pointer-events: none;
  z-index: 1;
}
/* Discrete fine grid only on the very edges */
.hero > .tech-icons-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--siliteo-pattern-grid);
  background-size: 40px 40px;
  opacity: .25;
  mask-image: linear-gradient(180deg, black 0%, transparent 35%, transparent 65%, black 100%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 35%, transparent 65%, black 100%);
  pointer-events: none;
}
/* Solidify hero cards for readability over pattern */
.hero-card {
  background: rgba(24, 24, 27, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-color: rgba(184, 220, 58, .22);
}

.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--siliteo-pattern-circuit);
  background-size: 320px 320px;
  opacity: .18;
  mask-image: radial-gradient(ellipse at 15% 80%, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 15% 80%, black 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--siliteo-pattern-circuit);
  background-size: 280px 280px;
  background-position: 0 0;
  opacity: .22;
  mask-image: radial-gradient(ellipse at 15% 50%, black 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 15% 50%, black 0%, transparent 65%);
  pointer-events: none;
  border-radius: inherit;
}
.cta-banner > * { position: relative; z-index: 1; }

.site-footer { position: relative; overflow: hidden; }
.site-footer::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--siliteo-pattern-circuit) 0 0 / 320px 320px;
  opacity: .25;
  mask-image: radial-gradient(ellipse at 90% 0%, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 90% 0%, black 0%, transparent 60%);
  pointer-events: none;
}
.site-footer > .container { position: relative; z-index: 1; }

/* Floating glowing blobs — pure CSS gradient orbs */
.blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .65;
  z-index: 0;
}
.blob-green { background: radial-gradient(circle, rgba(184,220,58,.55), transparent 70%); }
.blob-darkgreen { background: radial-gradient(circle, rgba(109,191,58,.45), transparent 70%); }
.blob-amber { background: radial-gradient(circle, rgba(255,180,60,.30), transparent 70%); }

/* Light sections — dot grid + hex + soft pastel blob */
.section--soft {
  position: relative;
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(184,220,58,.10), transparent 55%),
    radial-gradient(900px 500px at 0% 100%, rgba(109,191,58,.08), transparent 55%),
    var(--siliteo-soft);
  overflow: hidden;
}
.section--soft::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--siliteo-pattern-dots-light);
  background-size: 24px 24px;
  opacity: .9;
  pointer-events: none;
}
.section--soft > .container { position: relative; z-index: 1; }

/* Hex pattern variant — used on partenaires section */
.section--hex {
  background:
    radial-gradient(700px 500px at 80% 50%, rgba(184,220,58,.07), transparent 55%),
    var(--siliteo-soft);
  position: relative;
  overflow: hidden;
}
.section--hex::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--siliteo-pattern-hex);
  background-size: 56px 100px;
  pointer-events: none;
}
.section--hex > .container { position: relative; z-index: 1; }

/* Watermark icon — large semi-transparent icon decoration on sections */
.section-watermark {
  position: absolute;
  font-family: 'Font Awesome 6 Free', sans-serif;
  font-weight: 900;
  color: var(--siliteo-green);
  opacity: .04;
  z-index: 0;
  pointer-events: none;
  font-size: 24rem;
  line-height: 1;
}
.section--dark .section-watermark { color: var(--siliteo-green); opacity: .06; }

/* Hero floating tech icon decorations */
.tech-icons-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.tech-icon {
  position: absolute;
  color: var(--siliteo-green);
  opacity: .08;
  font-size: 3rem;
  animation: tech-icon-float 9s ease-in-out infinite;
}
.tech-icon:nth-child(1) { top: 10%;  left: 6%;  font-size: 2.4rem; animation-delay: 0s; }
.tech-icon:nth-child(2) { top: 70%;  left: 8%;  font-size: 3.2rem; animation-delay: -2s; opacity: .06; }
.tech-icon:nth-child(3) { top: 18%;  left: 38%; font-size: 2rem;   animation-delay: -4s; }
.tech-icon:nth-child(4) { top: 80%;  left: 35%; font-size: 2.6rem; animation-delay: -1s; opacity: .07; }
.tech-icon:nth-child(5) { top: 8%;   right: 30%;font-size: 2.2rem; animation-delay: -3s; opacity: .05; }
.tech-icon:nth-child(6) { top: 40%;  right: 12%;font-size: 2rem;   animation-delay: -5s; }
@keyframes tech-icon-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-18px) rotate(6deg); }
}

/* AI/circuit shimmer line that traverses dark sections */
.shimmer-line {
  position: absolute;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--siliteo-green) 40%, var(--siliteo-green) 60%, transparent);
  opacity: .35;
  pointer-events: none;
}
.shimmer-line.top    { top: 0; }
.shimmer-line.bottom { bottom: 0; }

/* ---------- Misc ---------- */
.divider { width: 64px; height: 4px; background: var(--siliteo-grad); border-radius: 4px; border: 0; margin: 0 auto 1.5rem; }
.text-muted { color: var(--siliteo-muted) !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: .5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mt-5 { margin-top: 3rem !important; }

.flex-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* WordPress core utility classes (alignments, captions) */
.alignleft { float: left; margin: 0 1.25rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.25rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--siliteo-muted); text-align: center; margin-top: .35rem; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); -webkit-clip-path: inset(50%);
  clip-path: inset(50%); height: 1px; overflow: hidden;
  padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}
