/* ============================================================
   QNett Services — Production CSS
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --bg: #ffffff;
  --bg-soft: #f4f8fc;
  --ink: oklch(0.22 0.04 250);
  --ink-soft: oklch(0.42 0.035 250);
  --ink-faint: oklch(0.62 0.03 250);
  --line: oklch(0.92 0.012 240);
  --line-strong: oklch(0.84 0.02 240);
  --brand: oklch(0.62 0.18 250);
  --brand-deep: oklch(0.48 0.18 255);
  --brand-soft: oklch(0.95 0.03 245);
  --accent: oklch(0.78 0.15 235);
  --accent-deep: oklch(0.55 0.17 250);
  --radius: 14px;
  --radius-lg: 22px;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Instrument Serif', 'Plus Jakarta Sans', serif;
  --font-mono: 'Plus Jakarta Sans', ui-monospace, monospace;
  --maxw: 1280px;
  --gutter: 28px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand);
  font-family: var(--font-mono);
}
h1, h2, h3 { margin: 0; letter-spacing: -0.01em; line-height: 1.08; }
h1 { font-size: clamp(40px, 5.4vw, 76px); font-weight: 700; }
h2 { font-size: clamp(30px, 3.6vw, 52px); font-weight: 700; }
h3 { font-size: 22px; font-weight: 600; }
p  { margin: 0; }
.serif {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--brand-deep); transform: translateY(-1px); }
.btn-brand { background: var(--brand); color: white; }
.btn-brand:hover { background: var(--brand-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-brand, .btn-primary { position: relative; overflow: hidden; isolation: isolate; }
.btn-brand::after, .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .7s;
}
.btn-brand:hover::after, .btn-primary:hover::after { transform: translateX(100%); }

/* ---------- SVG Icons inline ---------- */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ---------- Language Toggle ---------- */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  background: var(--bg);
  user-select: none;
}
.lang-toggle button {
  padding: 4px 6px;
  color: var(--ink-faint);
  transition: color .15s;
  letter-spacing: 0.04em;
}
.lang-toggle button.on { color: var(--brand-deep); }
.lang-toggle button:hover { color: var(--ink); }
.lang-toggle .sep { color: var(--line-strong); }
.lang-toggle.inverted {
  border-color: color-mix(in oklab, var(--bg) 22%, transparent);
  background: transparent;
}
.lang-toggle.inverted button { color: color-mix(in oklab, var(--bg) 55%, transparent); }
.lang-toggle.inverted button.on { color: var(--bg); }
.lang-toggle.inverted button:hover { color: var(--bg); }
.lang-toggle.inverted .sep { color: color-mix(in oklab, var(--bg) 20%, transparent); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: 0 4px 20px -8px color-mix(in oklab, var(--ink) 18%, transparent); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 44px; width: auto; display: block; }
.nav-links {
  display: flex; gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta-wrap { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav-phone a { color: inherit; }
.nav-phone a:hover { color: var(--brand-deep); }
@media (max-width: 1020px) { .nav-links, .nav-phone { display: none; } }
@media (max-width: 640px) { .nav-cta-wrap > .lang-toggle { display: none; } }
.nav-cta-label-short { display: none; }
@media (max-width: 520px) {
  .nav-cta-label-long { display: none; }
  .nav-cta-label-short { display: inline; }
}

/* ---------- Mobile hamburger ---------- */
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  align-items: center; justify-content: center;
  background: var(--bg);
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}
.nav-burger:hover { border-color: var(--ink); }
.nav-burger .bars { position: relative; width: 18px; height: 12px; }
.nav-burger .bars span {
  position: absolute; left: 0; right: 0;
  height: 2px; border-radius: 2px;
  background: var(--ink);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .2s;
}
.nav-burger .bars span:nth-child(1) { top: 0; }
.nav-burger .bars span:nth-child(2) { top: 5px; }
.nav-burger .bars span:nth-child(3) { top: 10px; }
.nav-burger.open .bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-burger.open .bars span:nth-child(2) { opacity: 0; }
.nav-burger.open .bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
@media (max-width: 1020px) { .nav-burger { display: inline-flex; } }

/* ---------- Mobile Drawer ---------- */
.mobile-drawer-backdrop {
  position: fixed; inset: 0;
  background: color-mix(in oklab, var(--ink) 55%, transparent);
  backdrop-filter: blur(4px);
  z-index: 60;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.mobile-drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: var(--bg); z-index: 70;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 50px -20px color-mix(in oklab, var(--ink) 40%, transparent);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer-head .logo-img { height: 36px; }
.mobile-drawer-close {
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 22px; line-height: 1;
  color: var(--ink); background: var(--bg);
}
.mobile-drawer-close:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.mobile-drawer-nav { display: flex; flex-direction: column; padding: 16px 12px 8px; gap: 2px; }
.mobile-drawer-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 14px; border-radius: 12px;
  font-size: 18px; font-weight: 600;
  color: var(--ink);
  transition: background .15s, color .15s;
}
.mobile-drawer-nav a:hover, .mobile-drawer-nav a:active {
  background: var(--brand-soft); color: var(--brand-deep);
}
.mobile-drawer-nav a .arrow {
  font-family: var(--font-mono); font-size: 16px;
  color: var(--ink-faint);
  transition: transform .2s, color .15s;
}
.mobile-drawer-nav a:hover .arrow { color: var(--brand-deep); transform: translateX(4px); }
.mobile-drawer-foot {
  margin-top: auto;
  padding: 20px 22px 28px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
}
.mobile-drawer-foot .phone-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--bg-soft); border-radius: 14px; border: 1px solid var(--line);
}
.mobile-drawer-foot .phone-pill .num {
  font-family: var(--font-mono); font-size: 15px; font-weight: 600; color: var(--ink);
}
.mobile-drawer-foot .phone-pill .lbl {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-faint); font-family: var(--font-mono);
}
.mobile-drawer-foot .btn { width: 100%; justify-content: center; }
.mobile-drawer-foot .lang-wrap { display: flex; justify-content: center; }
@media (min-width: 1021px) { .mobile-drawer, .mobile-drawer-backdrop { display: none; } }

/* ---------- Smooth scroll ---------- */
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 72px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- Hero ---------- */
.hero { padding: 56px 0 80px; position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden; z-index: 0;
}
.hero-bg .blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .55;
  animation: floatBlob 18s ease-in-out infinite;
}
.hero-bg .blob.b1 {
  width: 460px; height: 460px; top: -120px; right: -80px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
}
.hero-bg .blob.b2 {
  width: 380px; height: 380px; bottom: -100px; left: -60px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  animation-delay: -6s; opacity: .35;
}
.hero-bg .grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: .5;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(.95); }
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px; align-items: end;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }
.city-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft); background: var(--bg);
}
.city-pill .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--accent-deep);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 30%, transparent);
}
.hero h1 .accent-mark {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  color: var(--brand);
}
.hero-sub {
  margin-top: 22px; font-size: 18px;
  color: var(--ink-soft); max-width: 540px; line-height: 1.55;
}
.hero-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 36px;
  display: flex; align-items: center; gap: 18px;
  color: var(--ink-faint); font-size: 13px;
}
.stars { color: var(--accent-deep); font-weight: 700; letter-spacing: 0.05em; }

/* Hero visual */
.hero-visual { position: relative; aspect-ratio: 4/5; max-height: 580px; width: 100%; }
.hero-card {
  position: absolute; border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px color-mix(in oklab, var(--ink) 35%, transparent);
  border: 1px solid var(--line); background: var(--bg-soft);
}
.hero-card.main {
  inset: 0 0 12% 18%;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08) translate(-2%, -1%); } }
.hero-card.float {
  width: 46%; aspect-ratio: 4/5;
  left: 0; bottom: 0;
  background: rgb(0,0,0); color: var(--bg);
  padding: 22px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.float-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 56px; line-height: 1; color: var(--accent);
}
.float-label { font-size: 14px; color: color-mix(in oklab, var(--bg) 80%, transparent); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px; align-items: end;
  margin-bottom: 48px;
}
.section-head .lede { color: var(--ink-soft); max-width: 460px; font-size: 16px; }
@media (max-width: 760px) { .section-head { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 820px) { .services-grid { grid-template-columns: 1fr; } }
.svc-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px; background: var(--bg);
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color .3s ease, transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), color-mix(in oklab, var(--brand) 8%, transparent), transparent 40%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.svc-card:hover { border-color: var(--brand); transform: translateY(-6px); box-shadow: 0 20px 40px -24px color-mix(in oklab, var(--brand) 50%, transparent); }
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--brand-soft); color: var(--brand-deep);
  display: grid; place-items: center;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), background .3s;
}
.svc-card:hover .svc-icon { transform: scale(1.08) rotate(-4deg); background: var(--brand); color: var(--bg); }
.svc-card h3 { font-size: 24px; }
.svc-desc { color: var(--ink-soft); font-size: 15px; margin-top: 10px; }
.svc-inclus {
  border-top: 1px dashed var(--line-strong);
  padding-top: 16px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px; color: var(--ink-soft);
}
.svc-inclus li { display: flex; gap: 10px; align-items: flex-start; }
.check { color: var(--accent-deep); font-weight: 700; flex-shrink: 0; }
.svc-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.svc-price { font-family: var(--font-mono); font-size: 13px; color: var(--ink-faint); }
.svc-price strong { color: var(--ink); font-size: 18px; font-family: var(--font-sans); font-weight: 700; margin-left: 4px; }
.svc-link {
  font-size: 14px; font-weight: 600; color: var(--brand);
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
}
.svc-link:hover { gap: 10px; }
.svc-link svg { transition: transform .25s; }
.svc-link:hover svg { transform: translateX(4px); }

/* ---------- Pourquoi ---------- */
.pourquoi {
  background: var(--ink); color: var(--bg);
  border-radius: 28px; padding: 72px;
  margin: 0 var(--gutter);
  max-width: calc(var(--maxw) - var(--gutter) * 2);
  margin-inline: auto;
}
@media (max-width: 820px) { .pourquoi { padding: 48px 28px; border-radius: 22px; } }
.pourquoi-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 56px;
}
@media (max-width: 900px) { .pourquoi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pourquoi-grid { grid-template-columns: 1fr; } }
.pq { border-top: 1px solid color-mix(in oklab, var(--bg) 25%, transparent); padding-top: 22px; position: relative; }
.pq::before {
  content: '';
  position: absolute; top: -1px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .6s cubic-bezier(.2,.7,.2,1);
}
.pq.in::before { width: 100%; }
.pq-num { font-family: var(--font-mono); font-size: 12px; color: var(--accent); margin-bottom: 14px; }
.pq h3 { color: var(--bg); margin-bottom: 10px; }
.pq p { color: color-mix(in oklab, var(--bg) 75%, transparent); font-size: 14.5px; }

/* ---------- Méthode ---------- */
.methode-section { padding: 80px 0 96px; }
.methode-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 64px; align-items: start;
}
@media (max-width: 900px) { .methode-grid { grid-template-columns: 1fr; gap: 32px; } }
.methode-side { position: sticky; top: 100px; align-self: start; }
@media (max-width: 900px) { .methode-side { position: static; } }
.methode-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.methode-badge {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 14px; border-radius: 999px;
  background: var(--brand-soft); color: var(--brand-deep);
  border: 1px solid color-mix(in oklch, var(--brand) 18%, transparent);
}
.methode-body { max-width: 720px; }
.methode-body p { font-size: 17px; line-height: 1.72; color: var(--ink-soft); text-wrap: pretty; }
.methode-body p + p { margin-top: 18px; }
.methode-body strong { color: var(--ink); font-weight: 600; }
.methode-lede { font-size: 19px !important; color: var(--ink) !important; }
.methode-h3 {
  font-size: 21px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.01em; margin-bottom: 12px;
  position: relative; padding-left: 18px;
}
.methode-h3::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--accent); border-radius: 2px; transform: rotate(45deg);
}
.methode-body .methode-h3 { margin-top: 36px; }

/* ---------- Stats / Clients ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 56px; }
@media (max-width: 760px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 28px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg);
  transition: border-color .3s, transform .3s;
}
.stat:hover { border-color: var(--brand); transform: translateY(-3px); }
.stat-num { font-family: var(--font-display); font-size: 56px; line-height: 1; color: var(--brand); }
.stat-num .plus { color: var(--accent-deep); font-size: 32px; vertical-align: top; }
.stat-lbl { margin-top: 12px; color: var(--ink-soft); font-size: 14px; }

/* Marquee */
.mq {
  overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.mq-track { display: flex; width: max-content; animation: mqScroll 45s linear infinite; }
.mq-set { display: flex; flex-shrink: 0; }
.mq-set .client-logo { border-right: 1px solid var(--line); min-width: 220px; }
@keyframes mqScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq:hover .mq-track { animation-play-state: paused; }
.client-logo {
  padding: 24px; text-align: center;
  color: var(--ink-faint);
  font-family: var(--font-mono); font-size: 13px;
  display: grid; place-items: center; min-height: 90px;
}

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 820px) { .gallery { grid-template-columns: 1fr; } }
.gallery-item {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line);
  position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--ink); color: var(--bg);
  font-family: var(--font-mono); font-size: 11px;
  padding: 5px 9px; border-radius: 6px;
}

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  padding: 28px; border: 1px solid var(--line);
  border-radius: var(--radius-lg); background: var(--bg);
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.review:hover {
  border-color: var(--brand); transform: translateY(-4px);
  box-shadow: 0 14px 30px -20px color-mix(in oklab, var(--brand) 35%, transparent);
}
.review-quote {
  font-family: var(--font-display); font-size: 22px;
  line-height: 1.35; color: var(--ink); letter-spacing: -0.005em;
}
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 42px; height: 42px; border-radius: 999px;
  background: var(--brand-soft); color: var(--brand-deep);
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
}
.author-name { font-weight: 600; font-size: 14px; }
.author-meta { font-size: 12.5px; color: var(--ink-faint); }

/* ---------- Zones ---------- */
.zones { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 760px) { .zones { grid-template-columns: 1fr; } }
.zone-card {
  padding: 32px; border: 1px solid var(--line);
  border-radius: var(--radius-lg); background: var(--bg);
}
.zone-card h3 { display: flex; align-items: center; gap: 10px; font-size: 28px; margin-bottom: 20px; }
.zone-card h3::before { content: ''; width: 10px; height: 10px; border-radius: 999px; background: var(--accent-deep); }
.zone-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; font-size: 15px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-top: 1px solid var(--line); padding: 22px 0; transition: background .3s; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item:hover { background: color-mix(in oklab, var(--brand-soft) 50%, transparent); padding-left: 12px; padding-right: 12px; border-radius: 8px; }
.faq-item.open { background: var(--brand-soft); padding-left: 16px; padding-right: 16px; border-radius: 12px; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; text-align: left;
  font-size: 18px; font-weight: 600; gap: 24px;
  background: none; border: none; cursor: pointer;
}
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center; flex-shrink: 0;
  transition: background .15s, color .15s, transform .2s;
  font-size: 18px; line-height: 1;
}
.faq-item.open .faq-toggle { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: rotate(45deg); }
.faq-a {
  overflow: hidden; max-height: 0;
  color: var(--ink-soft); font-size: 15.5px; line-height: 1.6;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 14px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-row { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px dashed var(--line-strong); }
.contact-row:last-of-type { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-soft); color: var(--brand-deep);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-row .label { font-size: 13px; color: var(--ink-faint); margin-bottom: 4px; font-family: var(--font-mono); }
.contact-row .val { font-size: 18px; font-weight: 600; }
.contact-row .val a { color: inherit; }
.contact-row .val a:hover { color: var(--brand-deep); }
.contact-row .sub { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12.5px; font-weight: 600;
  color: var(--ink-soft); font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.field .req { color: var(--accent-deep); }
.input, .textarea, .select {
  border: 1px solid var(--line-strong);
  border-radius: 10px; padding: 12px 14px;
  background: var(--bg); font-size: 15px;
  transition: border-color .15s, box-shadow .15s; width: 100%;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand) 18%, transparent);
}
.textarea { min-height: 110px; resize: vertical; }
.field.error .input, .field.error .textarea, .field.error .select { border-color: oklch(0.55 0.18 25); }
.field-err { color: oklch(0.55 0.18 25); font-size: 12px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 9px 14px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 13.5px; font-weight: 500; cursor: pointer;
  background: var(--bg); transition: all .12s;
}
.chip:hover { border-color: var(--ink); }
.chip.on { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* Contact form card */
.contact-form {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; background: var(--bg);
  display: flex; flex-direction: column; gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Estimate Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: color-mix(in oklab, var(--ink) 60%, transparent);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: grid; place-items: center;
  padding: 20px;
  animation: fadeIn .2s ease;
  opacity: 1; transition: opacity .2s;
}
.modal-backdrop.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg);
  border-radius: var(--radius-lg);
  max-width: 640px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  padding: 36px; position: relative;
  animation: pop .25s cubic-bezier(.2,.9,.3,1.4);
}
@keyframes pop { from { transform: scale(.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 999px; border: 1px solid var(--line);
  display: grid; place-items: center; background: var(--bg);
}
.modal-close:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.modal h2 { font-size: 30px; margin-bottom: 6px; }
.modal .sub { color: var(--ink-soft); margin-bottom: 24px; font-size: 15px; }
.modal-success { text-align: center; padding: 28px 0; }
.check-circle {
  width: 80px; height: 80px;
  border-radius: 999px;
  background: var(--accent); color: var(--ink);
  display: grid; place-items: center;
  margin: 0 auto 22px;
  font-size: 38px; font-weight: 800;
}
.contact-box {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; background: var(--brand-soft);
  display: flex; gap: 14px; align-items: flex-start;
}
.contact-box-title { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.contact-box-sub { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: color-mix(in oklab, var(--bg) 75%, transparent);
  padding: 72px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h4 {
  color: var(--bg); margin: 0 0 16px;
  font-size: 14px; font-weight: 600;
  font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer a:hover { color: var(--bg); }
.footer-bottom {
  border-top: 1px solid color-mix(in oklab, var(--bg) 15%, transparent);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: color-mix(in oklab, var(--bg) 55%, transparent);
  font-family: var(--font-mono);
}
@media (max-width: 560px) { .footer-bottom { flex-direction: column; gap: 12px; } }
.footer-logo-wrap { display: flex; align-items: center; }
.footer-tag { font-size: 14px; line-height: 1.6; margin-top: 14px; max-width: 280px; }

/* ---------- Scroll reveal ---------- */
/* Content visible by default. JS adds body.js-ready to hide; JS inline styles animate in. */
.reveal { opacity: 1; transform: translateY(0); }
body.js-ready .reveal { opacity: 0; transform: translateY(24px); }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 55;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 10px 16px;
  gap: 8px;
  box-shadow: 0 -4px 20px -8px color-mix(in oklab, var(--ink) 15%, transparent);
}
.mobile-cta-bar a, .mobile-cta-bar button {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 8px;
  border-radius: 10px;
  font-weight: 600; font-size: 13px;
  text-align: center;
}
.mobile-cta-bar .cta-call { background: var(--brand); color: white; }
.mobile-cta-bar .cta-sms { background: var(--bg-soft); color: var(--ink); border: 1px solid var(--line); }
.mobile-cta-bar .cta-estimate { background: var(--ink); color: var(--bg); }
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }
}

/* ---------- Utility ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }


/* ---------- SEO Landing Pages ---------- */
.seo-links-block{border:1px solid var(--line);background:var(--bg-soft);border-radius:var(--radius-lg);padding:24px}.seo-links-block h3{margin:0 0 16px}.seo-link-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.seo-link-grid a{padding:13px 14px;border:1px solid var(--line);border-radius:14px;background:var(--bg);font-weight:700;font-size:14px}.seo-link-grid a:hover{border-color:var(--brand);color:var(--brand)}@media(max-width:760px){.seo-link-grid{grid-template-columns:1fr}}
.landing-hero{padding:150px 0 70px;background:linear-gradient(135deg,var(--brand-soft),var(--bg));position:relative;overflow:hidden}.landing-hero:after{content:"";position:absolute;right:-120px;top:40px;width:360px;height:360px;border-radius:999px;background:color-mix(in oklab,var(--accent) 28%,transparent);filter:blur(10px)}.landing-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:46px;align-items:center;position:relative;z-index:1}.landing-kicker{display:inline-flex;align-items:center;gap:8px;background:var(--bg);border:1px solid var(--line);border-radius:999px;padding:9px 13px;font-size:13px;font-weight:800;color:var(--brand)}.landing-hero h1{margin:18px 0 16px;font-size:clamp(42px,6vw,76px);line-height:.96}.landing-sub{font-size:18px;line-height:1.75;color:var(--ink-soft);max-width:720px}.landing-card{background:var(--bg);border:1px solid var(--line);border-radius:var(--radius-lg);padding:26px;box-shadow:var(--shadow);position:relative;z-index:1}.landing-card h3{margin:0 0 14px}.mini-list{display:grid;gap:10px;margin:18px 0}.mini-list li{display:flex;gap:10px;align-items:flex-start;color:var(--ink-soft);line-height:1.55}.mini-list .check{color:var(--brand);font-weight:900}.price-badge{display:flex;align-items:flex-end;gap:8px;padding:18px;border-radius:18px;background:var(--brand-soft);margin:18px 0}.price-badge span{font-size:13px;font-weight:800;color:var(--ink-soft);text-transform:uppercase;letter-spacing:.05em}.price-badge strong{font-size:34px;color:var(--brand)}.content-section{padding:72px 0}.content-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px}.info-panel{border:1px solid var(--line);border-radius:var(--radius);padding:24px;background:var(--bg)}.info-panel h2,.info-panel h3{margin-top:0}.steps{counter-reset:step;display:grid;gap:16px}.step{counter-increment:step;border:1px solid var(--line);border-radius:18px;padding:18px;background:var(--bg-soft)}.step:before{content:counter(step);display:inline-grid;place-items:center;width:30px;height:30px;border-radius:50%;background:var(--ink);color:var(--bg);font-weight:800;margin-bottom:10px}.faq-list{display:grid;gap:14px}.faq-item{border:1px solid var(--line);border-radius:18px;padding:18px;background:var(--bg)}.faq-item h3{font-size:18px;margin:0 0 8px}.local-links{display:flex;flex-wrap:wrap;gap:10px}.local-links a{border:1px solid var(--line);border-radius:999px;padding:10px 14px;background:var(--bg-soft);font-weight:800;font-size:14px}.cta-band{background:var(--ink);color:var(--bg);border-radius:var(--radius-lg);padding:36px;display:grid;grid-template-columns:1fr auto;gap:24px;align-items:center}.cta-band h2{color:var(--bg);margin:0}.cta-band p{color:color-mix(in oklab,var(--bg) 72%,transparent);margin:10px 0 0}.simple-nav .nav-links a{white-space:nowrap}@media(max-width:900px){.landing-grid,.content-grid,.cta-band{grid-template-columns:1fr}.landing-card{max-width:520px}.landing-hero{padding-top:120px}.simple-nav .nav-links{display:none}}
.blog-article{max-width:860px;margin:0 auto}.blog-article h2{font-size:clamp(28px,4vw,44px);margin-top:42px}.blog-article p,.blog-article li{font-size:17px;line-height:1.85;color:var(--ink-soft)}.blog-article ul{padding-left:22px;margin:16px 0}.blog-note{background:var(--brand-soft);border:1px solid var(--line);border-radius:18px;padding:20px;margin:26px 0}


/* ===== QNett v7 optimization additions ===== */
.dual-phone{display:flex;flex-direction:column;gap:2px;align-items:flex-end;font-size:13px;line-height:1.2}
.dual-phone a{font-weight:800;color:var(--ink);text-decoration:none;white-space:nowrap}
.dual-phone a:hover{color:var(--brand)}
.phone-pill-dual{display:grid!important;gap:10px;text-decoration:none!important}
.phone-pill-dual a{display:block;padding:12px 14px;border-radius:16px;background:rgba(14,165,233,.08);text-decoration:none;color:inherit}
.trust-proof-box{margin-top:14px;background:linear-gradient(135deg,rgba(15,118,110,.08),rgba(14,165,233,.08))!important}
.local-proof-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:28px}
.local-proof-card{background:#fff;border:1px solid var(--line);border-radius:22px;padding:22px;box-shadow:0 16px 40px rgba(15,23,42,.06)}
.local-proof-card h3{font-size:18px;margin-bottom:8px}.local-proof-card p{color:var(--ink-soft);line-height:1.65;font-size:14px}
.seo-depth-section{background:linear-gradient(180deg,#fff,rgba(14,165,233,.05));padding:70px 0}
.seo-depth-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:start}
.seo-depth-panel{background:#fff;border:1px solid var(--line);border-radius:26px;padding:28px;box-shadow:0 18px 55px rgba(15,23,42,.06)}
.seo-depth-panel h2{font-size:clamp(24px,3vw,34px);margin-bottom:14px}.seo-depth-panel h3{font-size:18px;margin:20px 0 8px}.seo-depth-panel p,.seo-depth-panel li{color:var(--ink-soft);line-height:1.75}.seo-depth-panel ul{padding-left:18px;margin:10px 0 0}.seo-price-list{display:grid;gap:10px;margin-top:16px}.seo-price-list div{display:flex;justify-content:space-between;gap:14px;padding:12px 14px;border:1px solid var(--line);border-radius:14px;background:var(--bg-soft)}.seo-price-list strong{color:var(--brand-deep)}
.mobile-cta-bar-four{grid-template-columns:repeat(4,1fr)}
.mobile-cta-bar-four a,.mobile-cta-bar-four button{font-size:12px;min-width:0}
@media(max-width:900px){.seo-depth-grid,.local-proof-grid{grid-template-columns:1fr}.dual-phone{align-items:flex-start}.nav .dual-phone{display:none}}


/* ---------- Real QNett proof, projects and performance upgrades ---------- */
:root { --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; --font-display: Georgia, "Times New Roman", serif; }
.section, .content-section, .seo-depth-section { content-visibility: auto; contain-intrinsic-size: 1px 900px; }
.hero { content-visibility: visible; }
.real-proof-strip { display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap:14px; margin-top:24px; }
.real-proof-chip { border:1px solid var(--line); background:rgba(255,255,255,.8); border-radius:18px; padding:16px; box-shadow:0 10px 30px rgba(15,23,42,.05); }
.real-proof-chip strong { display:block; font-size:17px; }
.real-proof-chip span { display:block; color:var(--ink-soft); font-size:13px; margin-top:4px; }
.project-proof-section { background:linear-gradient(180deg,var(--bg),var(--bg-soft)); }
.project-grid { display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap:22px; margin-top:36px; }
.project-card { background:#fff; border:1px solid var(--line); border-radius:24px; overflow:hidden; box-shadow:0 24px 70px rgba(15,23,42,.08); display:flex; flex-direction:column; }
.project-card figure { margin:0; aspect-ratio: 4/3; background:var(--bg-soft); overflow:hidden; }
.project-card figure img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.project-card:hover figure img { transform:scale(1.035); }
.project-card-body { padding:20px; display:flex; flex-direction:column; gap:10px; }
.project-tag { display:inline-flex; align-self:flex-start; font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--brand-deep); font-weight:700; background:var(--brand-soft); padding:6px 10px; border-radius:999px; }
.project-card h3 { font-size:20px; line-height:1.2; }
.project-card p { color:var(--ink-soft); line-height:1.65; }
.project-meta { display:flex; flex-wrap:wrap; gap:8px; margin-top:4px; }
.project-meta span { border:1px solid var(--line); border-radius:999px; padding:6px 9px; color:var(--ink-soft); font-size:12px; background:#fff; }
.before-after-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; margin-top:24px; }
.ba-card { border:1px solid var(--line); background:#fff; border-radius:22px; overflow:hidden; box-shadow:0 18px 55px rgba(15,23,42,.07); }
.ba-card img, .ba-card video { width:100%; aspect-ratio:4/3; object-fit:cover; background:var(--bg-soft); }
.ba-card figcaption { padding:14px 16px; font-weight:700; color:var(--ink); }
.ba-card figcaption span { display:block; font-weight:500; color:var(--ink-soft); font-size:13px; margin-top:4px; }
.google-proof-box { margin-top:28px; border:1px solid var(--line); border-radius:24px; background:#fff; padding:22px; display:grid; grid-template-columns:1fr auto; gap:18px; align-items:center; box-shadow:0 18px 60px rgba(15,23,42,.07); }
.google-proof-box p { color:var(--ink-soft); margin-top:6px; line-height:1.65; }
.google-stars { color:#f5a623; letter-spacing:2px; font-size:20px; }
.service-photo-band { margin:34px 0; display:grid; grid-template-columns:1.2fr .8fr; gap:18px; align-items:stretch; }
.service-photo-band .photo-copy { background:var(--ink); color:#fff; border-radius:24px; padding:28px; display:flex; flex-direction:column; justify-content:center; }
.service-photo-band .photo-copy p { color:rgba(255,255,255,.78); line-height:1.7; margin-top:12px; }
.service-photo-band figure { margin:0; border-radius:24px; overflow:hidden; box-shadow:0 22px 60px rgba(15,23,42,.13); background:var(--bg-soft); }
.service-photo-band img { width:100%; height:100%; object-fit:cover; min-height:360px; }
.project-video { margin-top:18px; border-radius:22px; overflow:hidden; border:1px solid var(--line); background:#000; }
.project-video video { width:100%; display:block; max-height:520px; object-fit:cover; }
@media (max-width: 860px) {
  .real-proof-strip, .project-grid { grid-template-columns:1fr; }
  .before-after-grid, .service-photo-band { grid-template-columns:1fr; }
  .google-proof-box { grid-template-columns:1fr; }
  .hero-card.main img { object-position:center center; }
  .project-card-body { padding:18px; }
}
@media (max-width: 560px) {
  .hero-visual { margin-top:24px; }
  .hero-card.main { max-height:460px; }
  .mobile-cta-bar-four { z-index:9000; }
  #qnett-ai-chatbot { bottom:76px; }
}


/* ===== QNett v9 photo proportions + projects page ===== */
picture { display:block; }
.project-card picture, .ba-card picture, .service-photo-band picture, .gallery-item picture, .project-gallery-card picture { width:100%; height:100%; display:block; }
.project-card figure, .ba-card, .service-photo-band figure { overflow:hidden; }
.project-card figure img, .service-photo-band figure img, .gallery-item img { display:block; width:100%; height:100%; object-fit:cover; }
.ba-card img, .ba-card video { display:block; width:100%; height:auto; aspect-ratio:4/3; object-fit:cover; }
.service-photo-band figure { min-height:360px; }
.service-photo-band figure img { min-height:360px; }
@media(max-width:760px){
  .service-photo-band figure, .service-photo-band figure img { min-height:260px; }
  .before-after-grid { gap:14px; }
}
.projects-hero { padding:150px 0 66px; background:linear-gradient(135deg,var(--brand-soft),#fff); }
.projects-hero h1 { font-size:clamp(42px,6vw,76px); line-height:.96; max-width:960px; margin:16px 0; }
.projects-hero p { max-width:820px; color:var(--ink-soft); font-size:18px; line-height:1.75; }
.project-filter-bar { display:flex; flex-wrap:wrap; gap:10px; margin:28px 0 0; }
.project-filter-bar a { border:1px solid var(--line); border-radius:999px; padding:10px 14px; background:#fff; font-weight:800; font-size:13px; }
.project-filter-bar a:hover { border-color:var(--brand); color:var(--brand-deep); }
.project-story-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.project-story-card { background:#fff; border:1px solid var(--line); border-radius:24px; overflow:hidden; box-shadow:0 22px 65px rgba(15,23,42,.07); }
.project-story-card figure { margin:0; aspect-ratio:16/10; overflow:hidden; background:var(--bg-soft); }
.project-story-card img { width:100%; height:100%; object-fit:cover; display:block; }
.project-story-body { padding:22px; }
.project-story-body h3 { font-size:22px; margin-bottom:8px; }
.project-story-body p { color:var(--ink-soft); line-height:1.7; }
.project-gallery-section { background:linear-gradient(180deg,#fff,var(--bg-soft)); }
.project-gallery-group { margin-top:48px; }
.project-gallery-group h2 { font-size:clamp(28px,4vw,44px); margin-bottom:10px; }
.project-gallery-group .group-intro { color:var(--ink-soft); line-height:1.7; max-width:850px; margin-bottom:22px; }
.project-gallery-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.project-gallery-card { border:1px solid var(--line); border-radius:20px; background:#fff; overflow:hidden; box-shadow:0 14px 45px rgba(15,23,42,.06); }
.project-gallery-card figure { margin:0; aspect-ratio:4/3; overflow:hidden; background:var(--bg-soft); }
.project-gallery-card.portrait figure { aspect-ratio:3/4; }
.project-gallery-card img { width:100%; height:100%; object-fit:cover; display:block; }
.project-gallery-card figcaption { padding:12px 14px; font-size:13px; color:var(--ink-soft); line-height:1.45; }
.project-video-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; margin-top:24px; }
.project-video-card { border:1px solid var(--line); border-radius:22px; background:#fff; overflow:hidden; box-shadow:0 14px 45px rgba(15,23,42,.06); }
.project-video-card video { width:100%; display:block; aspect-ratio:16/9; object-fit:cover; background:#000; }
.project-video-card div { padding:14px 16px; color:var(--ink-soft); font-size:14px; }
.client-proof-strip { margin-top:28px; border:1px solid var(--line); border-radius:24px; background:#fff; padding:22px; display:grid; gap:12px; }
.client-proof-logos { display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.client-proof-logos span { padding:10px 14px; border-radius:999px; background:var(--brand-soft); color:var(--brand-deep); font-weight:800; font-size:13px; }
@media(max-width:900px){ .project-story-grid, .project-gallery-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media(max-width:620px){ .projects-hero{padding-top:118px}.project-story-grid,.project-gallery-grid,.project-video-grid{grid-template-columns:1fr}.project-gallery-card.portrait figure{aspect-ratio:4/3} }


/* ---------- Featured clients / references ---------- */
.featured-clients-marquee .mq-track { animation-duration: 62s; }
.client-marquee-card {
  min-width: 320px;
  min-height: 112px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
  transition: background .2s ease, transform .2s ease;
}
.client-marquee-card:hover {
  background: linear-gradient(180deg, #ffffff, #f3f8ff);
}
.client-mark {
  width: 92px;
  height: 60px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
}
.client-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.client-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.client-meta {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.35;
}
.client-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}
@media (max-width: 980px) { .client-feature-grid { grid-template-columns: 1fr; } }
.client-feature-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 34px -28px color-mix(in oklab, var(--brand) 20%, transparent);
}
.client-feature-visual {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-soft);
}
.client-feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.client-feature-visual--logo-only {
  display: grid;
  place-items: center;
  padding: 20px;
}
.client-feature-visual--logo-only img {
  object-fit: contain;
  max-width: 90%;
  max-height: 90%;
}
.client-feature-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
}
.client-feature-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 700;
}
.client-feature-body p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
}
.client-feature-meta {
  font-size: 13px;
  color: var(--ink-faint);
}
.proof-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}
.proof-link:hover { transform: translateY(-1px); }
@media (max-width: 640px) {
  .client-marquee-card {
    min-width: 278px;
    padding: 16px;
    gap: 12px;
  }
  .client-mark {
    width: 78px;
    height: 50px;
  }
}


/* Bilingual language switcher */
.qnett-lang-switch{display:inline-flex;align-items:center;gap:4px;border:1px solid rgba(11,31,51,.12);border-radius:999px;padding:3px;background:#fff;box-shadow:0 8px 24px rgba(11,31,51,.06)}
.qnett-lang-switch a{display:inline-flex;align-items:center;justify-content:center;min-width:34px;height:28px;padding:0 10px;border-radius:999px;font-size:12px;font-weight:800;text-decoration:none;color:var(--ink-soft,#486174);letter-spacing:.02em}
.qnett-lang-switch a.active{background:var(--ink,#0b1f33);color:#fff}
.qnett-lang-switch a:hover{color:var(--accent,#10c7c7)}
.mobile-drawer-nav .qnett-lang-mobile{display:flex;gap:10px;padding:10px 0}
.mobile-drawer-nav .qnett-lang-mobile a{flex:1;justify-content:center;border:1px solid rgba(11,31,51,.12);border-radius:14px;padding:12px 10px;font-weight:800}
.mobile-drawer-nav .qnett-lang-mobile a.active{background:var(--ink,#0b1f33);color:white}
@media (max-width: 1080px){.nav-links .qnett-lang-switch{display:none}}
@media (max-width: 680px){.qnett-lang-switch a{min-width:30px;height:26px;font-size:11px}}


/* ---------- Clear FR / EN language switcher ---------- */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(7, 23, 43, .14);
  background: rgba(255, 255, 255, .92);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
  white-space: nowrap;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  z-index: 40;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  color: #07172b;
  text-decoration: none;
  letter-spacing: .02em;
}

.language-switcher a.active {
  background: #0ea5e9;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(14, 165, 233, .28);
}

.language-switcher span {
  color: rgba(7, 23, 43, .35);
  font-weight: 700;
}

.language-switcher a:hover {
  background: rgba(14, 165, 233, .10);
}

.language-switcher a.active:hover {
  background: #0284c7;
  color: #ffffff;
}

.language-switcher-floating {
  position: fixed;
  top: 82px;
  right: 16px;
  display: none;
}

@media (max-width: 860px) {
  header .language-switcher,
  nav .language-switcher,
  .site-header .language-switcher {
    display: none !important;
  }

  .language-switcher-floating {
    display: inline-flex;
  }
}

@media (min-width: 861px) {
  .language-switcher-floating {
    display: none !important;
  }
}


/* ===== QNett v14 SEO/CRO upgrade modules ===== */
.urgency-strip{background:linear-gradient(135deg,var(--ink,#0b1f33),#123b5c);color:#fff;padding:16px 0;position:relative;z-index:2}
.urgency-strip-inner{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap}.urgency-strip strong{font-size:16px}.urgency-strip span{opacity:.86;font-size:14px}.urgency-strip .btn{padding:10px 16px;font-size:13px}
.instant-estimate-section{background:radial-gradient(circle at top right,rgba(16,199,199,.13),transparent 34%),#fff}.instant-estimate-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:24px;align-items:stretch}.instant-card,.instant-result-card{border:1px solid rgba(11,31,51,.10);box-shadow:0 18px 55px rgba(11,31,51,.08);border-radius:28px;background:#fff;padding:26px}.instant-card{display:grid;grid-template-columns:1fr 1fr;gap:16px}.instant-card label{display:flex;flex-direction:column;gap:8px;font-weight:800;color:var(--ink)}.instant-card select{border:1px solid rgba(11,31,51,.14);border-radius:16px;padding:13px 14px;font:inherit;background:#fff;color:var(--ink-soft)}.instant-card .btn{grid-column:1/-1;justify-content:center}.instant-result-card{background:linear-gradient(145deg,#07172b,#0b3651);color:#fff;display:flex;flex-direction:column;justify-content:center}.mini-eyebrow{font-size:12px;text-transform:uppercase;letter-spacing:.12em;color:var(--accent);font-weight:900}.instant-price{font-size:clamp(34px,5vw,58px);font-weight:950;line-height:1.05;margin:10px 0}.instant-result-card p{color:rgba(255,255,255,.8);line-height:1.7}.instant-trust-row{display:flex;gap:8px;flex-wrap:wrap;margin:16px 0 20px}.instant-trust-row span{border:1px solid rgba(255,255,255,.16);border-radius:999px;padding:7px 10px;font-size:12px;font-weight:800;color:rgba(255,255,255,.88)}
.before-after-section{background:var(--bg-soft)}.ba-slider-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}.ba-slider{position:relative;overflow:hidden;border-radius:28px;min-height:360px;box-shadow:0 22px 60px rgba(11,31,51,.14);background:#081625}.ba-slider>img,.ba-after img{width:100%;height:100%;min-height:360px;object-fit:cover;display:block}.ba-after{position:absolute;inset:0;width:var(--position);overflow:hidden;border-right:3px solid #fff}.ba-slider input[type=range]{position:absolute;inset:0;width:100%;height:100%;opacity:0;cursor:ew-resize}.ba-slider:after{content:"";position:absolute;top:0;bottom:0;left:var(--position);width:3px;background:#fff;box-shadow:0 0 0 999px transparent;pointer-events:none}.ba-label{position:absolute;top:16px;border-radius:999px;background:rgba(7,23,43,.78);backdrop-filter:blur(8px);color:#fff;font-weight:900;font-size:12px;letter-spacing:.04em;text-transform:uppercase;padding:8px 11px}.ba-label.before{left:16px}.ba-label.after{right:16px;background:rgba(16,199,199,.90);color:#07172b}
.faq-list-large{columns:2;column-gap:24px}.faq-list-large .faq-item{break-inside:avoid;margin-bottom:14px}.guide-preview-section{background:#fff}.guide-card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.guide-card{border:1px solid rgba(11,31,51,.10);border-radius:24px;padding:22px;background:#fff;box-shadow:0 14px 40px rgba(11,31,51,.06)}.guide-card h3{font-size:21px;margin:0 0 10px}.guide-card p{color:var(--ink-soft);line-height:1.65}.trust-grid,.proof-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.trust-card,.proof-card{background:#fff;border:1px solid rgba(11,31,51,.10);border-radius:24px;padding:22px;box-shadow:0 14px 44px rgba(11,31,51,.07)}.trust-card h3,.proof-card h3{margin-top:0}.local-seo-expansion{background:#fff}.local-seo-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:24px}.local-seo-panel{border:1px solid rgba(11,31,51,.10);border-radius:24px;padding:24px;background:#fff;box-shadow:0 12px 36px rgba(11,31,51,.06)}.local-seo-panel p,.local-seo-panel li{line-height:1.72;color:var(--ink-soft)}.local-seo-panel h2,.local-seo-panel h3{color:var(--ink)}.local-links a{display:inline-flex;margin:5px 6px 5px 0;border:1px solid rgba(11,31,51,.12);border-radius:999px;padding:8px 11px;font-weight:800;font-size:13px}.blog-index-hero{padding:150px 0 70px;background:radial-gradient(circle at top right,rgba(16,199,199,.18),transparent 36%),linear-gradient(135deg,#07172b,#11344d);color:#fff}.blog-index-hero h1{color:#fff}.blog-index-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.blog-index-card{border:1px solid rgba(11,31,51,.10);border-radius:26px;padding:24px;background:#fff;box-shadow:0 16px 50px rgba(11,31,51,.07)}.blog-index-card .tag{font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.08em;color:var(--accent)}
@media(max-width:900px){.instant-estimate-grid,.ba-slider-grid,.local-seo-grid,.trust-grid,.proof-grid,.blog-index-grid{grid-template-columns:1fr}.instant-card{grid-template-columns:1fr}.faq-list-large{columns:1}.guide-card-grid{grid-template-columns:1fr}.urgency-strip-inner{align-items:flex-start}.ba-slider,.ba-slider>img,.ba-after img{min-height:260px}}


/* QNett v19 accessibility, mobile conversion and anti-spam helpers */
.sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.qnett-honeypot{position:absolute!important;left:-9999px!important;opacity:0!important;height:0!important;width:0!important;pointer-events:none!important}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:3px solid var(--accent,#3b6fcc);outline-offset:3px}
.mobile-sticky-cta{display:none}
.proof-list{display:grid;gap:10px;margin:16px 0 0;padding-left:20px;color:var(--ink-soft)}
.service-booking-proof .cta-band{align-items:start}
@media(max-width:760px){
  .mobile-sticky-cta{position:fixed;left:10px;right:10px;bottom:10px;z-index:850;display:grid;grid-template-columns:1fr 1fr 1fr;gap:8px;background:rgba(255,255,255,.96);border:1px solid var(--line);border-radius:18px;padding:8px;box-shadow:var(--shadow)}
  .mobile-sticky-cta a{display:flex;align-items:center;justify-content:center;min-height:44px;border-radius:14px;background:var(--ink);color:#fff;font-weight:900;font-size:13px;text-align:center}
  .mobile-sticky-cta a:last-child{background:var(--brand,#3b6fcc)}
  body{padding-bottom:78px}
  #qnett-ai-chatbot{bottom:88px!important}
}


/* QNett v20 local SEO depth blocks */
.local-depth h3,.service-extra-depth h3,.blog-extra-depth h2{margin-top:1.15rem}
.local-depth ul,.service-extra-depth ul,.blog-extra-depth ul{margin:0.75rem 0 0 1.25rem}
.local-depth li,.service-extra-depth li,.blog-extra-depth li{margin:0.35rem 0}
.qnett-info-table{width:100%;border-collapse:collapse;margin:1rem 0;border-radius:14px;overflow:hidden}
.qnett-info-table th,.qnett-info-table td{border:1px solid rgba(15,23,42,.14);padding:.8rem;text-align:left;vertical-align:top}
.qnett-info-table th{font-weight:800}
