/*
Theme Name: NOLA Theme Agency
Theme URI: https://nola.sn
Author: NOLA Agence Digitale
Author URI: https://nola.sn
Description: Thème WordPress premium pour NOLA — Agence Digitale à Dakar. Design haut de gamme avec mode clair/sombre, chatbot intégré, bouton WhatsApp, animations fluides et navigation épurée.
Version: 1.0.3-grey
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nolathemeagency
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, blog, portfolio
*/

/* ============================================================
   NOLA THEME AGENCY — Design System Premium
   contact@nola.sn | +221 77 181 68 07
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root,
[data-theme="light"] {
  --bg:         #f8f6f1;
  --bg2:        #ffffff;
  --bgcard:     #ffffff;
  --bgsub:      #f2ede6;
  --text:       #0D0D0D;
  --text2:      #1A1A1A;
  --muted:      #6B6B6B;
  --border:     #E8E5DF;
  --orange:     #FF6B35;
  --orangeG:    #FF8C5A;
  --or:         #b8912c;
  --opale:      rgba(255,107,53,.07);
  --oline:      rgba(255,107,53,.2);
  --navbg:      rgba(248,246,241,.97);
  --shadow:     0 2px 20px rgba(0,0,0,.07);
  --ease:       cubic-bezier(.16,1,.3,1);
}

[data-theme="dark"] {
  --bg:         #2c2c2c;
  --bg2:        #333333;
  --bgcard:     #3a3a3a;
  --bgsub:      #353535;
  --text:       #f5f0e8;
  --text2:      #ede8df;
  --muted:      #b5b0a8;
  --border:     #4a4744;
  --orange:     #FF6B35;
  --orangeG:    #FF8C5A;
  --or:         #c9a96e;
  --opale:      rgba(255,107,53,.1);
  --oline:      rgba(255,107,53,.25);
  --navbg:      rgba(44,44,44,.96);
  --shadow:     0 4px 28px rgba(0,0,0,.25);
}

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  transition: background .5s, color .5s;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }
::selection { background: var(--orange); color: #fff; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--orange); text-decoration: none; transition: color .3s; }
a:hover { color: var(--orangeG); }
ul, ol { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
.fd { font-family: 'Clash Display', sans-serif; }
.fs { font-family: 'Instrument Serif', serif; }

/* ---------- NAV ---------- */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; padding: 0 80px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navbg); backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: background .5s, border-color .5s;
}
.n-logo {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px; font-weight: 700; letter-spacing: -.5px;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 7px;
  transition: color .5s;
}
.n-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
  animation: pulse 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.7); opacity: .5; } }

.n-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.n-links a {
  font-size: 12.5px; font-weight: 500; letter-spacing: .4px;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color .25s; position: relative;
}
.n-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--orange);
  transition: width .3s var(--ease);
}
.n-links a:hover,
.n-links a.current-menu-item a,
.n-links .current_page_item a,
.n-links a.active { color: var(--text); }
.n-links a:hover::after,
.n-links .current-menu-item a::after,
.n-links .current_page_item a::after { width: 100%; }

.n-cta {
  background: var(--text) !important; color: var(--bg) !important;
  padding: 11px 24px !important; font-size: 12px !important;
  font-weight: 600 !important; letter-spacing: .8px !important;
  text-transform: uppercase !important;
  transition: background .3s !important;
}
.n-cta::after { display: none !important; }
.n-cta:hover { background: var(--orange) !important; color: #fff !important; }

.n-right { display: flex; align-items: center; gap: 12px; }

/* ---------- FLOATING THEME SWITCH (fixé à droite, milieu page) ---------- */
.theme-float {
  position: fixed !important;
  right: 1.5rem !important;
  top: 50% !important;
  transform: translateY(-50%);
  z-index: 99999 !important;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #0D0D0D !important;
  color: #fff;
  cursor: pointer;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  transition: background .3s, box-shadow .3s, transform .3s;
}
.theme-float:hover {
  background: #FF6B35;
  box-shadow: 0 6px 30px rgba(255,107,53,.4);
  transform: translateY(-50%) scale(1.1);
}
.theme-float svg {
  width: 22px; height: 22px;
  stroke: #ffffff; fill: none; stroke-width: 1.8;
  display: block;
}
.theme-float:hover svg { stroke: #fff; }
.theme-float .ic-moon { display: block !important; }
.theme-float .ic-sun { display: none !important; }
[data-theme="dark"] .theme-float { background: #ffffff !important; box-shadow: 0 4px 24px rgba(255,255,255,.15) !important; }
[data-theme="dark"] .theme-float svg { stroke: #0D0D0D; }
[data-theme="dark"] .theme-float:hover { background: #FF6B35; }
[data-theme="dark"] .theme-float:hover svg { stroke: #fff; }
[data-theme="dark"] .theme-float .ic-moon { display: none !important; }
[data-theme="dark"] .theme-float .ic-sun { display: block !important; }


.n-ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.n-ham span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); border-radius: 2px; transition: .3s;
}

/* ---------- MOBILE DRAWER ---------- */
.n-drawer {
  display: none; position: fixed; inset: 72px 0 0;
  background: var(--bg); z-index: 490;
  padding: 32px 24px; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--border);
  transition: background .5s, border-color .5s;
}
.n-drawer.open { display: flex; }
.n-drawer a {
  font-family: 'Clash Display', sans-serif;
  font-size: 24px; font-weight: 600; letter-spacing: -1px;
  color: var(--text); text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.n-drawer a:hover { color: var(--orange); }
.nd-cta {
  background: var(--orange) !important; color: #fff !important;
  text-align: center; padding: 18px !important;
  margin-top: 16px; border-radius: 0;
}
.nd-theme {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px; padding: 12px 0;
}

/* ---------- CONTAINER ---------- */
.container { max-width: 1380px; margin: 0 auto; padding: 0 80px; }

/* ---------- TAG ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; border: 1px solid var(--oline);
  border-radius: 100px; font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange);
}
.tag::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--orange); flex-shrink: 0;
}

/* ---------- SECTION HEADINGS ---------- */
.h-sec {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 700;
  line-height: 1.06; letter-spacing: -.02em; color: var(--text);
  transition: color .5s;
}
.h-sec em {
  font-family: 'Instrument Serif', serif;
  font-style: italic; color: var(--orange); font-weight: 400;
}
.sub-sec {
  font-size: .97rem; color: var(--muted); line-height: 1.85;
  max-width: 540px; margin-top: .8rem; transition: color .5s;
}
.sec-hd {
  max-width: 1380px; margin: 0 auto 3rem;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 80px;
}

/* ---------- BUTTONS ---------- */
.btn-p {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; background: var(--orange); color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: .8px;
  text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; transition: .35s;
}
.btn-p:hover {
  background: var(--orangeG); color: #fff; transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,107,53,.3);
}
.btn-s {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border: 1.5px solid var(--border);
  color: var(--text); font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: .8px;
  text-transform: uppercase; text-decoration: none; transition: .35s;
}
.btn-s:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ---------- REVEAL ANIMATIONS ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.rev { opacity: 0; transform: translateY(30px); transition: opacity .85s ease, transform .85s ease; }
.rev.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; } .d6 { transition-delay: .6s; }

/* ---------- TICKER ---------- */
.ticker { background: var(--orange); padding: 11px 0; overflow: hidden; }
.ticker-inner { display: flex; width: max-content; animation: tick 32s linear infinite; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ti {
  display: flex; align-items: center; gap: 1.5rem; padding: 0 2rem;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #fff; white-space: nowrap;
}
.ts { opacity: .4; }

/* ---------- HERO ---------- */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 110px 80px 70px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255,107,53,.06) 0%, transparent 60%),
              radial-gradient(ellipse 35% 50% at 10% 80%, rgba(201,169,110,.04) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px; opacity: .3;
}
.hero-in {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1380px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border: 1px solid var(--oline); border-radius: 100px;
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--or); margin-bottom: 1.5rem;
  animation: fadeUp .8s .2s both;
}
.hero-bd { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.hero-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(3rem, 6vw, 6.5rem); font-weight: 700;
  line-height: 1.0; letter-spacing: -.03em; color: var(--text);
  margin-bottom: 1.5rem; animation: fadeUp .8s .4s both; transition: color .5s;
}
.hero-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic; color: var(--orange); font-weight: 400;
}
.hu { position: relative; display: inline-block; }
.hu::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 3px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  animation: scaleIn .8s 1.2s forwards;
}
@keyframes scaleIn { to { transform: scaleX(1); } }
.hero-sub {
  font-size: 15px; font-weight: 400; color: var(--muted);
  max-width: 480px; margin-bottom: 2.5rem; line-height: 1.9;
  animation: fadeUp .8s .6s both; transition: color .5s;
}
.hero-sub strong { color: var(--text); font-weight: 500; }
.hero-act { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; animation: fadeUp .8s .8s both; }
.hero-vis { position: relative; animation: fadeUp 1s .5s both; }
.hero-frame {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/5; background: var(--bgcard); box-shadow: var(--shadow);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.hero-frame:hover img { transform: scale(1.03); }
.hero-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,.4));
}
.hstat {
  position: absolute; z-index: 2;
  background: var(--bgcard); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 18px; box-shadow: var(--shadow);
  transition: background .5s, border-color .5s;
}
.hstat.s1 { bottom: 20%; right: -8%; }
.hstat.s2 { top: 18%; left: -8%; }
.hnum {
  font-family: 'Clash Display', sans-serif; font-size: 1.9rem;
  font-weight: 700; color: var(--orange); line-height: 1;
}
.hlbl {
  font-size: 10px; font-weight: 600; color: var(--muted);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; transition: color .5s;
}

/* ---------- STATS BAR ---------- */
.stats-bar { padding: 4rem 80px; border-bottom: 1px solid var(--border); transition: border-color .5s; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1380px; margin: 0 auto; }
.si { padding: 1.8rem 2rem; text-align: center; border-right: 1px solid var(--border); transition: border-color .5s; }
.si:last-child { border-right: none; }
.snum {
  font-family: 'Clash Display', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700; line-height: 1; color: var(--text); margin-bottom: .5rem; transition: color .5s;
}
.snum span { color: var(--orange); }
.sdesc { font-size: 10px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; transition: color .5s; }

/* ---------- SERVICES ---------- */
.sec-svc { padding: 7rem 0; background: var(--bg2); transition: background .5s; }
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px;
  background: var(--border); max-width: 1380px; margin: 0 auto; transition: background .5s;
}
.sc {
  background: var(--bgcard); padding: 2.5rem;
  position: relative; overflow: hidden; transition: background .35s;
}
.sc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .5s;
}
.sc:hover { background: var(--bgsub); }
.sc:hover::before { transform: scaleX(1); }
.sc-icon {
  width: 48px; height: 48px; margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.sc-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.sname {
  font-family: 'Clash Display', sans-serif; font-size: 1.35rem;
  font-weight: 600; color: var(--text); margin-bottom: .8rem; line-height: 1.2; transition: color .5s;
}
.sdesc2 { font-size: .86rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.8rem; transition: color .5s; }
.slink {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); border-bottom: 1px solid var(--oline);
  padding-bottom: 2px; transition: gap .3s, border-color .3s;
}
.slink:hover { gap: 10px; border-color: var(--orange); }

/* ---------- ABOUT ---------- */
.sec-about { padding: 7rem 80px; background: var(--bg); transition: background .5s; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1380px; margin: 0 auto; }
.about-imgw { position: relative; }
.about-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top;
  border-radius: 16px; box-shadow: var(--shadow);
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--orange); color: #fff;
  padding: 1.2rem 1.6rem; border-radius: 12px; text-align: center;
}
.about-badge .n { font-family: 'Clash Display', sans-serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge .l { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
.about-desc { color: var(--muted); font-size: .97rem; line-height: 1.9; margin-top: 1.5rem; transition: color .5s; }
.about-desc p + p { margin-top: 1.2rem; }
.fquote {
  margin-top: 2rem; padding: 1.6rem 1.8rem;
  background: var(--bgcard); border-radius: 12px;
  border-left: 3px solid var(--orange); transition: background .5s;
}
.fqi { display: flex; align-items: flex-start; gap: 1rem; }
.fph {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  object-position: top; border: 2px solid var(--orange); flex-shrink: 0;
}
.ftxt { font-size: .88rem; color: var(--muted); line-height: 1.8; font-style: italic; transition: color .5s; }
.fname { font-size: .78rem; font-weight: 600; color: var(--text); margin-top: .5rem; transition: color .5s; }
.frole { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-top: 2px; }
.vals { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.vi {
  padding: 1.1rem; background: var(--bgcard); border: 1px solid var(--border);
  border-radius: 10px; transition: border-color .3s, background .5s;
}
.vi:hover { border-color: var(--oline); }
.vn { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text); margin-bottom: .3rem; }
.vt { font-size: .76rem; color: var(--muted); line-height: 1.65; }

/* ---------- TEAM ---------- */
.sec-team { padding: 7rem 80px; background: var(--bg2); transition: background .5s; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1380px; margin: 0 auto; }
.tc {
  background: var(--bgcard); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: border-color .4s, transform .4s, background .5s;
  box-shadow: var(--shadow);
}
.tc:hover { border-color: var(--oline); transform: translateY(-5px); }
.tc img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; display: block; }
.tc-info { padding: 1.4rem; }
.tc-name { font-family: 'Clash Display', sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--text); margin-bottom: .3rem; }
.tc-role { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); line-height: 1.5; }

/* ---------- PORTFOLIO ---------- */
.sec-port { padding: 7rem 0; background: var(--bg2); transition: background .5s; }
.port-grid {
  display: grid; grid-template-columns: 1.35fr 1fr;
  gap: 2px; background: var(--border);
  max-width: 1380px; margin: 0 auto; transition: background .5s;
}
.pc { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 16/10; background: var(--bgcard); }
.pc:first-child { grid-row: span 2; aspect-ratio: auto; min-height: 500px; }
.pc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.pc:hover img { transform: scale(1.05); }
.pc-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.12) 50%, transparent 100%); }
.pc-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; }
.pc-cat { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: .4rem; }
.pc-title { font-family: 'Clash Display', sans-serif; font-size: 1.35rem; font-weight: 600; color: #fff; line-height: 1.2; }
.pc:first-child .pc-title { font-size: 2rem; }
.pc-arr {
  position: absolute; top: 1.5rem; right: 1.5rem; width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.8); transition: opacity .4s, transform .4s;
}
.pc-arr svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2; }
.pc:hover .pc-arr { opacity: 1; transform: scale(1); }

/* ---------- TESTIMONIALS ---------- */
.sec-test { padding: 7rem 80px; background: var(--bg); transition: background .5s; }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1380px; margin: 0 auto; }
.tes {
  background: var(--bgcard); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  transition: border-color .4s, transform .4s, background .5s;
  box-shadow: var(--shadow);
}
.tes:hover { border-color: var(--oline); transform: translateY(-4px); }
.stars { color: var(--orange); font-size: .9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.tes-txt { font-size: .9rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.5rem; font-style: italic; }
.tes-auth { display: flex; align-items: center; gap: .8rem; }
.tes-av {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  object-position: top; border: 1.5px solid var(--border); flex-shrink: 0;
}
.tes-name { font-size: .85rem; font-weight: 600; color: var(--text); }
.tes-role { font-size: .72rem; color: var(--muted); margin-top: 2px; }

/* ---------- PROCESS ---------- */
.sec-proc { padding: 7rem 80px; background: var(--bg2); transition: background .5s; }
.proc-in { max-width: 840px; margin: 0 auto; }
.proc-step {
  display: grid; grid-template-columns: 52px 1fr; gap: 2rem;
  padding: 2rem 0; border-bottom: 1px solid var(--border); transition: border-color .5s;
}
.proc-step:last-child { border-bottom: none; }
.proc-n {
  font-family: 'Clash Display', sans-serif; font-size: .88rem;
  font-weight: 600; color: var(--orange); letter-spacing: .08em; padding-top: .2rem;
}
.proc-t {
  font-family: 'Clash Display', sans-serif; font-size: 1.45rem;
  font-weight: 600; color: var(--text); margin-bottom: .6rem; letter-spacing: -.5px;
}
.proc-d { font-size: .87rem; color: var(--muted); line-height: 1.85; }
.proc-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .8rem; }
.ptag {
  padding: .22rem .65rem; border: 1px solid var(--border); border-radius: 100px;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); transition: border-color .5s, color .5s;
}

/* ---------- BLOG GRID ---------- */
.sec-blog { padding: 7rem 80px; background: var(--bg2); transition: background .5s; }
.blog-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem; max-width: 1380px; margin: 0 auto; }
.bc {
  background: var(--bgcard); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; cursor: pointer;
  transition: border-color .4s, transform .4s, background .5s;
  box-shadow: var(--shadow); text-decoration: none;
}
.bc:hover { border-color: var(--oline); transform: translateY(-4px); }
.bc:first-child { grid-row: span 2; }
.bimgw { overflow: hidden; }
.bc img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .6s; }
.bc:first-child img { aspect-ratio: 4/3; }
.bc:hover img { transform: scale(1.04); }
.bbody { padding: 1.4rem; }
.bcat { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: .5rem; }
.btit {
  font-family: 'Clash Display', sans-serif; font-size: 1.15rem; font-weight: 600;
  color: var(--text); line-height: 1.25; margin-bottom: .6rem; letter-spacing: -.3px;
}
.bc:first-child .btit { font-size: 1.5rem; }
.bexc { font-size: .82rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.bmeta { font-size: .72rem; color: var(--muted); display: flex; justify-content: space-between; }

/* ---------- SINGLE ARTICLE ---------- */
.art-hero {
  padding: 140px 80px 80px;
  background: linear-gradient(155deg, var(--bgsub), var(--bg));
  position: relative; overflow: hidden;
}
.art-hero-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Clash Display', sans-serif; font-size: 260px;
  font-weight: 700; color: var(--opale); letter-spacing: -10px;
  user-select: none; pointer-events: none;
}
.art-hero-inner { max-width: 800px; position: relative; z-index: 2; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted); text-decoration: none;
  margin-bottom: 24px; transition: color .2s;
}
.back-link:hover { color: var(--orange); }
.art-cat {
  display: inline-block; font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange);
  border: 1px solid var(--oline); padding: 5px 12px; margin-bottom: 18px;
}
.art-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem); font-weight: 700;
  letter-spacing: -2px; line-height: .95; color: var(--text); margin-bottom: 20px;
}
.art-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--orange); }
.art-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: var(--muted); flex-wrap: wrap;
}
.art-meta-sep { color: var(--border); }
.art-featured-img {
  width: 100%; max-height: 480px; object-fit: cover;
  border-radius: 12px; margin: -40px 0 0; position: relative; z-index: 3;
  box-shadow: var(--shadow);
}

/* Article Layout with Sidebar */
.art-layout {
  display: grid; grid-template-columns: 1fr 296px;
  gap: 64px; padding: 72px 80px 96px;
  max-width: 1380px; margin: 0 auto;
}
.art-body h2 {
  font-family: 'Clash Display', sans-serif; font-size: 26px;
  font-weight: 700; letter-spacing: -1px; color: var(--text); margin: 44px 0 14px;
}
.art-body h3 {
  font-family: 'Clash Display', sans-serif; font-size: 19px;
  font-weight: 600; letter-spacing: -.4px; color: var(--text); margin: 28px 0 10px;
}
.art-body p { font-size: 15.5px; line-height: 1.87; color: var(--muted); margin-bottom: 18px; }
.art-body strong { color: var(--text); }
.art-body ul, .art-body ol { padding-left: 22px; margin-bottom: 18px; list-style: disc; }
.art-body li { font-size: 15.5px; line-height: 1.75; color: var(--muted); margin-bottom: 7px; }
.art-body blockquote {
  border-left: 3px solid var(--orange); padding: 18px 24px;
  background: var(--bgsub); margin: 28px 0;
  font-family: 'Instrument Serif', serif; font-size: 17px;
  font-style: italic; color: var(--text); line-height: 1.7;
}
.art-body a { color: var(--orange); }
.art-body a:hover { text-decoration: underline; }

/* Share bar */
.share-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); margin: 36px 0;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
}
.share-btn {
  width: 36px; height: 36px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; transition: all .3s;
  background: none; cursor: pointer;
}
.share-btn:hover { border-color: var(--orange); color: var(--orange); }
.share-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Sidebar */
.art-sidebar { display: flex; flex-direction: column; gap: 18px; }
.sticky-sidebar { position: sticky; top: 92px; }
.sidebar-cta {
  background: var(--text); padding: 26px;
}
.sidebar-cta-t {
  font-family: 'Clash Display', sans-serif; font-size: 19px;
  font-weight: 700; letter-spacing: -1px; color: var(--bg); margin-bottom: 6px;
}
.sidebar-cta-t em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--orange); }
.sidebar-cta-d { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.sidebar-btn {
  display: block; width: 100%; background: var(--orange); color: #fff;
  padding: 12px; font-family: 'DM Sans', sans-serif;
  font-size: 11.5px; font-weight: 600; letter-spacing: .8px;
  text-transform: uppercase; text-align: center; text-decoration: none;
  transition: background .3s; border: none; cursor: pointer;
}
.sidebar-btn:hover { background: var(--bg); color: var(--text); }
.sidebar-related-t {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 700; color: var(--muted); margin-bottom: 12px;
  padding-bottom: 9px; border-bottom: 1px solid var(--border);
}
.sidebar-related-item {
  display: block; padding: 12px 0; border-bottom: 1px solid var(--border); text-decoration: none;
}
.sidebar-related-item:hover .srl-title { color: var(--orange); }
.srl-cat { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 3px; }
.srl-title {
  font-family: 'Clash Display', sans-serif; font-size: 14px;
  font-weight: 600; letter-spacing: -.3px; color: var(--text); line-height: 1.2; transition: color .2s;
}
.srl-date { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ---------- CTA SECTION ---------- */
.sec-cta {
  padding: 8rem 80px; text-align: center;
  position: relative; overflow: hidden;
  background: var(--bgcard); transition: background .5s;
}
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,107,53,.05) 0%, transparent 70%); }
.cta-title {
  position: relative; z-index: 1;
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 700;
  line-height: 1.1; color: var(--text); margin-bottom: 1rem; letter-spacing: -1px;
}
.cta-title em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--orange); font-weight: 400; }
.cta-sub {
  position: relative; z-index: 1; font-size: .97rem; color: var(--muted);
  max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.85;
}
.cta-act {
  position: relative; z-index: 1; display: flex; align-items: center;
  justify-content: center; gap: 1rem; flex-wrap: wrap;
}

/* ---------- CONTACT ---------- */
.sec-contact { padding: 7rem 80px; background: var(--bg2); transition: background .5s; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; max-width: 1380px; margin: 0 auto; align-items: start; }
.ci-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.ci { display: flex; align-items: center; gap: .8rem; font-size: .9rem; color: var(--muted); }
.ci a { color: var(--muted); transition: color .3s; }
.ci a:hover { color: var(--orange); }
.ci-icon {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: border-color .5s;
}
.ci-icon svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.fw {
  background: var(--bgcard); padding: 2.5rem; border-radius: 16px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.2rem; }
.fg label {
  display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: .45rem; font-weight: 600;
}
.fg input, .fg textarea, .fg select {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-family: 'DM Sans', sans-serif;
  font-size: .9rem; padding: .75rem .9rem; outline: none; appearance: none;
  transition: border-color .3s, background .5s, color .5s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--orange); }
.fg textarea { height: 120px; resize: none; }
.fsub {
  width: 100%; padding: .95rem; background: var(--orange); color: #fff;
  border: none; font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
  cursor: pointer; transition: .35s; margin-top: .4rem;
}
.fsub:hover { background: var(--orangeG); transform: translateY(-2px); }

/* ---------- PAGE HERO ---------- */
.ph {
  padding: 140px 80px 80px; text-align: center;
  background: var(--bg2); position: relative; overflow: hidden;
}
.ph-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 80%, rgba(255,107,53,.04) 0%, transparent 60%);
}
.ph-watermark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Clash Display', sans-serif; font-size: 260px;
  font-weight: 700; color: var(--opale); letter-spacing: -10px;
  user-select: none; pointer-events: none;
}
.breadc {
  position: relative; z-index: 1; display: flex; align-items: center;
  justify-content: center; gap: .5rem; font-size: .72rem; color: var(--muted); margin-bottom: 1.2rem;
}
.breadc a { color: var(--muted); } .breadc a:hover { color: var(--orange); }
.breadc span { color: var(--orange); }
.ph h1 {
  position: relative; z-index: 1;
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.8rem); font-weight: 700;
  line-height: 1.05; letter-spacing: -.03em; color: var(--text);
  animation: fadeUp .8s .2s both;
}
.ph h1 em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--orange); font-weight: 400; }
.ph p {
  position: relative; z-index: 1; font-size: .97rem; color: var(--muted);
  max-width: 540px; margin: .8rem auto 0; line-height: 1.85;
  animation: fadeUp .8s .4s both;
}

/* ---------- BLOG LIST PAGE ---------- */
.blog-list-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 1380px; margin: 0 auto;
  padding: 4rem 80px 7rem;
}
.blog-card {
  background: var(--bgcard); border: 1px solid var(--border);
  overflow: hidden; transition: border-color .4s, transform .4s;
  box-shadow: var(--shadow); text-decoration: none; display: block;
}
.blog-card:hover { border-color: var(--oline); transform: translateY(-5px); }
.blog-card-img { overflow: hidden; }
.blog-card-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .6s; }
.blog-card:hover img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-card-cat { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.blog-card-title {
  font-family: 'Clash Display', sans-serif; font-size: 18px;
  font-weight: 600; letter-spacing: -.5px; color: var(--text);
  line-height: 1.25; margin-bottom: 10px; transition: color .2s;
}
.blog-card:hover .blog-card-title { color: var(--orange); }
.blog-card-excerpt { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.blog-card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--muted); padding-top: 14px;
  border-top: 1px solid var(--border);
}
.blog-card-meta span { display: flex; align-items: center; gap: 4px; }

/* ---------- COMMENTS SECTION ---------- */
.comments-area { max-width: 800px; margin: 0 auto; padding: 0 80px 5rem; }
.comments-area h3 {
  font-family: 'Clash Display', sans-serif; font-size: 1.5rem;
  font-weight: 700; letter-spacing: -.5px; color: var(--text);
  margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.comment-list { list-style: none; }
.comment-list .comment { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.comment-author { font-weight: 600; color: var(--text); font-size: .9rem; }
.comment-meta { font-size: .75rem; color: var(--muted); margin-bottom: .5rem; }
.comment-body p { font-size: .9rem; color: var(--muted); line-height: 1.8; }
.comment-reply-link { font-size: .75rem; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.comment-respond .comment-form label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; font-weight: 600; }
.comment-respond .comment-form input,
.comment-respond .comment-form textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-family: 'DM Sans', sans-serif;
  font-size: .9rem; padding: .75rem .9rem; outline: none;
  transition: border-color .3s;
}
.comment-respond .comment-form input:focus,
.comment-respond .comment-form textarea:focus { border-color: var(--orange); }
.comment-respond .comment-form .submit {
  background: var(--orange); color: #fff; border: none; padding: 12px 30px;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase; cursor: pointer;
  transition: .35s;
}
.comment-respond .comment-form .submit:hover { background: var(--orangeG); }

/* ---------- FOOTER (TOTALEMENT IMMUNE AU THEME) ---------- */
/* On verrouille TOUTES les variables CSS à l'intérieur du footer */
#footer {
  --bg: #1A1A1A !important;
  --bg2: #1A1A1A !important;
  --bgcard: #1A1A1A !important;
  --bgsub: #111110 !important;
  --text: #ffffff !important;
  --text2: #ffffff !important;
  --muted: rgba(255,255,255,.35) !important;
  --border: rgba(255,255,255,.06) !important;
  --orange: #FF6B35 !important;
  --orangeG: #FF8C5A !important;
  --or: #c9a96e !important;
  --opale: rgba(255,107,53,.08) !important;
  --oline: rgba(255,107,53,.22) !important;
  --shadow: none !important;
  background: #1A1A1A !important;
  border-top: 1px solid rgba(255,255,255,.05) !important;
  padding: 72px 80px 32px;
  color: rgba(255,255,255,.3) !important;
}
#footer, #footer * { transition: none !important; }
#footer a { color: rgba(255,255,255,.3) !important; text-decoration: none; }
#footer a:hover { color: #FF6B35 !important; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px; max-width: 1380px; margin: 0 auto;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.flogo {
  font-family: 'Clash Display', sans-serif; font-size: 22px;
  font-weight: 700; letter-spacing: -.8px; color: #fff !important;
  display: flex; align-items: center; gap: 7px; margin-bottom: 12px;
}
.flogo .n-dot { background: #FF6B35 !important; }
.ftagline { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.3) !important; max-width: 230px; margin-bottom: 18px; }
.fcontacts { display: flex; flex-direction: column; gap: 8px; }
.fcontacts a {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,.42) !important; text-decoration: none;
}
.fcontacts a:hover { color: #FF6B35 !important; }
.fcontacts a svg { flex-shrink: 0; width: 14px; height: 14px; stroke: #FF6B35 !important; fill: none; stroke-width: 1.5; }
.fsocs { display: flex; gap: 10px; margin-top: 14px; }
.fsoc {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.1) !important;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3) !important; text-decoration: none;
}
.fsoc:hover { border-color: #FF6B35 !important; color: #FF6B35 !important; }
.fsoc svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.fcol h4 {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,.35) !important; margin-bottom: 18px;
  padding-bottom: 9px; border-bottom: 1px solid rgba(255,255,255,.05);
}
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fcol ul li a { font-size: 13px; color: rgba(255,255,255,.3) !important; text-decoration: none; }
.fcol ul li a:hover { color: #FF6B35 !important; }
.fbot {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1380px; margin: 0 auto; padding-top: 24px;
  font-size: 11px; color: rgba(255,255,255,.17) !important; flex-wrap: wrap; gap: 12px;
}
.fbot a { color: rgba(255,255,255,.25) !important; text-decoration: none; }
.fbot a:hover { color: #FF6B35 !important; }
.fbot-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- WHATSAPP ---------- */
.wa-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  z-index: 8000; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .3s, box-shadow .3s;
  animation: wap 2.5s ease-in-out infinite;
}
.wa-btn:hover { transform: scale(1.12); }
@keyframes wap { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); } 50% { box-shadow: 0 4px 36px rgba(37,211,102,.7); } }
.wa-btn svg { width: 26px; height: 26px; fill: #fff; }

/* ---------- CHATBOT ---------- */
.chat-wrap { position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 8000; }
.chat-toggle {
  width: 56px; height: 56px; border-radius: 50%; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  box-shadow: 0 4px 20px rgba(255,107,53,.4);
  transition: transform .3s, box-shadow .3s;
  animation: chp 3s ease-in-out infinite;
}
.chat-toggle:hover { transform: scale(1.1); }
@keyframes chp { 0%,100% { box-shadow: 0 4px 20px rgba(255,107,53,.4); } 50% { box-shadow: 0 4px 36px rgba(255,107,53,.65); } }
.chat-toggle svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 1.8; }
.chat-badge {
  position: absolute; top: -3px; right: -3px;
  width: 16px; height: 16px; border-radius: 50%; background: #22c55e;
  border: 2px solid var(--bg);
}
.chat-win {
  position: absolute; bottom: 66px; left: 0; width: 340px;
  background: var(--bgcard); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
  display: none; flex-direction: column;
  transition: background .5s, border-color .5s;
}
.chat-win.open { display: flex; }
.chat-head {
  background: var(--orange); padding: 1rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.chat-head-l { display: flex; align-items: center; gap: .7rem; }
.chat-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Clash Display', sans-serif; font-size: 1rem; font-weight: 700; color: #fff;
}
.chat-nm { font-size: .85rem; font-weight: 600; color: #fff; }
.chat-st { font-size: .7rem; color: rgba(255,255,255,.8); margin-top: 1px; }
.chat-x { background: none; border: none; cursor: pointer; color: rgba(255,255,255,.8); font-size: 1.2rem; line-height: 1; }
.chat-x:hover { color: #fff; }
.chat-msgs {
  flex: 1; overflow-y: auto; padding: 1rem;
  display: flex; flex-direction: column; gap: .8rem; max-height: 280px;
}
.chat-msgs::-webkit-scrollbar { width: 3px; }
.chat-msgs::-webkit-scrollbar-thumb { background: var(--border); }
.msg { max-width: 82%; padding: .65rem .9rem; border-radius: 12px; font-size: .82rem; line-height: 1.6; }
.msg.bot { background: var(--bgsub); color: var(--text); border-radius: 12px 12px 12px 2px; align-self: flex-start; }
.msg.usr { background: var(--orange); color: #fff; border-radius: 12px 12px 2px 12px; align-self: flex-end; }
.typing { display: flex; gap: 4px; padding: .65rem .9rem; background: var(--bgsub); border-radius: 12px 12px 12px 2px; width: fit-content; align-items: center; }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: typ 1.2s ease-in-out infinite; }
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typ { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }
.chat-quick {
  display: flex; flex-wrap: wrap; gap: .4rem; padding: .6rem 1rem;
  border-top: 1px solid var(--border);
}
.chat-quick button {
  padding: .3rem .65rem; border: 1px solid var(--oline);
  border-radius: 100px; background: var(--opale);
  color: var(--orange); font-size: .68rem; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: background .3s, color .3s;
}
.chat-quick button:hover { background: var(--orange); color: #fff; }
.chat-inp-w {
  display: flex; gap: .5rem; padding: .8rem 1rem;
  border-top: 1px solid var(--border);
}
.chat-inp {
  flex: 1; background: var(--bg); border: 1px solid var(--border);
  border-radius: 100px; padding: .55rem .9rem;
  font-family: 'DM Sans', sans-serif; font-size: .82rem; color: var(--text);
  outline: none; transition: border-color .3s;
}
.chat-inp:focus { border-color: var(--orange); }
.chat-send {
  width: 36px; height: 36px; border-radius: 50%; background: var(--orange);
  border: none; cursor: pointer; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: background .3s;
}
.chat-send:hover { background: var(--orangeG); }
.chat-send svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2; }

/* ---------- 404 ---------- */
.page-404 {
  min-height: 80vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 140px 80px 80px;
}
.page-404 h1 {
  font-family: 'Clash Display', sans-serif; font-size: clamp(6rem,15vw,12rem);
  font-weight: 700; color: var(--opale); line-height: 1; letter-spacing: -5px;
}
.page-404 h2 {
  font-family: 'Clash Display', sans-serif; font-size: 2rem;
  font-weight: 700; color: var(--text); margin: 1rem 0;
}
.page-404 p { color: var(--muted); margin-bottom: 2rem; }

/* ---------- PAGINATION ---------- */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 2rem 0 4rem;
}
.pagination a, .pagination span {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); font-size: 13px; font-weight: 600;
  color: var(--muted); text-decoration: none; transition: all .3s;
}
.pagination a:hover { border-color: var(--orange); color: var(--orange); }
.pagination .current { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
  #nav, .container, .sec-hd, #hero, .stats-bar, .sec-about,
  .sec-team, .sec-test, .sec-proc, .sec-blog, .sec-cta,
  .sec-contact, .ph, #footer, .art-hero, .art-layout,
  .blog-list-grid, .comments-area { padding-left: 48px; padding-right: 48px; }
}
@media (max-width: 1024px) {
  .hero-in { grid-template-columns: 1fr; gap: 3rem; }
  .hstat { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .bc:first-child { grid-row: auto; }
  .port-grid { grid-template-columns: 1fr; }
  .pc:first-child { grid-row: auto; min-height: auto; aspect-ratio: 16/10; }
  .test-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .art-layout { grid-template-columns: 1fr; gap: 40px; }
  .blog-list-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #nav { padding: 0 24px; }
  .n-links { display: none; }
  .n-ham { display: flex; }
  .theme-float { width: 40px; height: 40px; right: 1rem; }
  #hero, .stats-bar, .sec-about, .sec-team, .sec-test,
  .sec-proc, .sec-blog, .sec-cta, .sec-contact, .ph,
  #footer, .art-hero, .art-layout, .blog-list-grid,
  .sec-hd, .comments-area { padding-left: 24px !important; padding-right: 24px !important; }
  .hero-title { font-size: clamp(2.5rem, 9vw, 4.5rem); }
  .svc-grid { grid-template-columns: 1fr; }
  .vals { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .fr { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .fbot { flex-direction: column; text-align: center; }
  .blog-list-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .sec-hd { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .si { border-right: none; border-bottom: 1px solid var(--border); }
  .si:last-child { border-bottom: none; }
  .chat-win { width: calc(100vw - 3rem); left: 0; }
}

/* ---------- WP SPECIFIC ---------- */
.wp-block-image { margin: 2rem 0; }
.wp-block-image img { border-radius: 12px; }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal;
}

/* ---------- POPUP NEWSLETTER ---------- */
.nola-popup-overlay {
  position: fixed; inset: 0; z-index: 100000;
  background: rgba(0,0,0,.6); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; transition: opacity .4s;
}
.nola-popup-overlay.active { display: flex; }
.nola-popup-overlay.visible { opacity: 1; }
.nola-popup {
  background: var(--bgcard); border: 1px solid var(--border);
  border-radius: 20px; padding: 48px 40px; max-width: 440px; width: 100%;
  position: relative; text-align: center;
  box-shadow: 0 32px 64px rgba(0,0,0,.3);
  transform: translateY(20px) scale(.96); transition: transform .4s var(--ease);
}
.nola-popup-overlay.visible .nola-popup { transform: translateY(0) scale(1); }
.nola-popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg);
  color: var(--muted); font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, color .3s;
}
.nola-popup-close:hover { border-color: var(--orange); color: var(--orange); }
.nola-popup-icon { margin-bottom: 20px; }
.nola-popup-title {
  font-family: 'Clash Display', sans-serif; font-size: 1.5rem;
  font-weight: 700; letter-spacing: -.5px; color: var(--text);
  margin-bottom: 12px; line-height: 1.2;
}
.nola-popup-text {
  font-size: 14px; color: var(--muted); line-height: 1.75;
  margin-bottom: 24px;
}
.nola-popup-form { display: flex; flex-direction: column; gap: 12px; }
.nola-popup-input {
  width: 100%; padding: 14px 18px; background: var(--bg);
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  color: var(--text); outline: none; transition: border-color .3s;
}
.nola-popup-input:focus { border-color: var(--orange); }
.nola-popup-input::placeholder { color: var(--muted); }
.nola-popup-btn {
  width: 100%; padding: 15px; background: #FF6B35; color: #fff;
  border: none; border-radius: 10px; font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: .5px;
  cursor: pointer; transition: background .3s, transform .2s;
}
.nola-popup-btn:hover { background: #FF8C5A; transform: translateY(-1px); }
.nola-popup-legal {
  font-size: 11px; color: var(--muted); margin-top: 14px;
}
@media (max-width: 480px) {
  .nola-popup { padding: 36px 24px; }
  .nola-popup-title { font-size: 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════
   CRITICAL OVERRIDES — beats WordPress core, Gutenberg, plugins
   ═══════════════════════════════════════════════════════════ */
html body button#themeBtn.theme-float,
html body button.theme-float {
  position: fixed !important;
  right: 1.5rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 99999 !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  line-height: 1 !important;
  overflow: visible !important;
}
html body button.theme-float:hover {
  background: #FF6B35 !important;
}
[data-theme="dark"] html body button.theme-float,
[data-theme="dark"] button.theme-float {
  background: #ffffff !important;
}
[data-theme="dark"] html body button.theme-float svg {
  stroke: #0D0D0D !important;
}
[data-theme="dark"] html body button.theme-float:hover {
  background: #FF6B35 !important;
}
[data-theme="dark"] html body button.theme-float:hover svg {
  stroke: #fff !important;
}
