/* ==========================================================================
   Team Tacticals design system
   Black / gold, one accent used sparingly, real photography, restraint.
   ========================================================================== */

:root {
  --bg: #080808;
  --bg-alt: #111214;
  --card: #1a1b1e;
  --card-2: #202226;
  --border: #2a2b30;
  --light: #f5f2ea;
  --light-2: #ebe7dc;
  --text: #e9e6df;
  --muted: #9a9a9a;
  --gold: #d4a017;
  --gold-hover: #b8912a;
  --gold-bright: #f0c24b;
  --on-gold: #1a1b1e;
  --ok: #3fbf7f;
  --err: #e5605a;
  --wa: #25d366;

  --font-display: 'Bebas Neue', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --r: 6px;
  --r-lg: 12px;
  --container: 1200px;
  --nav-h: 72px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: var(--on-gold); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: #3a3b40; border-radius: 4px; }

.skip { position: absolute; left: -999px; top: 8px; background: var(--gold); color: var(--on-gold); padding: 8px 14px; z-index: 2000; border-radius: var(--r); }
.skip:focus { left: 8px; }

.icon { width: 1.15em; height: 1.15em; flex: none; vertical-align: -0.2em; }

/* ── Typography ───────────────────────────────────────────────────────── */
.h1, .h2, .h3-display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: .95;
  font-weight: 400;
}
.h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
.h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.2rem; }
.h3-display { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: .9rem; }
.muted { color: var(--muted); }
.lead { font-size: 1.15rem; color: #cfcbc1; max-width: 62ch; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-size: .78rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1rem; }
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.prose p { margin-bottom: 1rem; max-width: 70ch; }
.prose h2 { font-family: var(--font-body); font-size: 1.4rem; font-weight: 700; margin: 2rem 0 .7rem; }
.prose ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; }
.prose a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }

/* ── Layout ───────────────────────────────────────────────────────────── */
.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.container--narrow { max-width: 860px; }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--alt { background: var(--bg-alt); }
.section--light { background: var(--light); color: #1a1b1e; }
.section--light .muted { color: #6b6a66; }
.section--light .h2, .section--light h3 { color: #101114; }
.section--tight { padding: 2.5rem 0; }
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.split { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1.15fr .85fr; } .split--even { grid-template-columns: 1fr 1fr; } }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.section-head .h2 { margin-bottom: 0; }
.section-head p { max-width: 56ch; color: var(--muted); }

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.4rem; border-radius: var(--r); font-weight: 600; font-size: .95rem;
  border: 1px solid transparent; transition: background .18s, border-color .18s, color .18s, transform .18s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: var(--on-gold); }
.btn--gold:hover { background: var(--gold-bright); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn--light { background: var(--light); color: #1a1b1e; }
.btn--light:hover { background: #fff; }
.btn--sm { padding: .55rem 1rem; font-size: .85rem; }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--wa { background: var(--wa); color: #06281a; }
.btn--wa:hover { background: #3ee07e; }
.section--light .btn--ghost { color: #1a1b1e; border-color: #cfc9ba; }
.section--light .btn--ghost:hover { border-color: var(--gold); color: #7a5b05; }

/* ── Top bar + Nav ────────────────────────────────────────────────────── */
.topbar { background: var(--bg-alt); border-bottom: 1px solid var(--border); font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; gap: 1.5rem; height: 36px; }
.topbar a, .topbar span { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); }
.topbar a:hover { color: var(--gold-bright); }
.topbar__survey { margin-left: auto; color: var(--gold) !important; font-weight: 600; }
@media (max-width: 720px) { .topbar__hours, .topbar__survey { display: none !important; } }

.nav { position: sticky; top: 0; z-index: 900; background: rgba(8, 8, 8, .97); border-bottom: 1px solid rgba(212, 160, 23, .12); transition: box-shadow .2s; }
/* no backdrop-filter on .nav: it would turn the fixed mobile menu into a nav-relative box */
.nav.is-stuck { box-shadow: 0 6px 24px rgba(0, 0, 0, .5); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 1rem; }
.nav__brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.nav__brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.nav__brand span { display: flex; flex-direction: column; line-height: 1.05; white-space: nowrap; }
.nav__brand strong { font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); }
.nav__brand small { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.nav__toggle { display: none; background: none; border: 0; color: var(--text); padding: 8px; position: relative; z-index: 901; }
.nav__brand { position: relative; z-index: 901; }
.nav__toggle .icon { width: 26px; height: 26px; }
.nav__toggle .icon--close { display: none; }
.menu-open .nav__toggle .icon--menu { display: none; }
.menu-open .nav__toggle .icon--close { display: block; }
.nav__menu { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; flex: 1 1 auto; min-width: 0; }
.nav__list { display: flex; gap: .25rem; }
.nav__list > li { position: relative; }
.nav__list > li > a { display: inline-flex; align-items: center; gap: 4px; padding: .7rem .7rem; border-radius: var(--r); font-weight: 500; font-size: .93rem; color: #d8d5cc; white-space: nowrap; }
.nav__list > li > a:hover, .nav__list > li.is-active > a { color: var(--gold-bright); }
.nav__list > li.is-active > a { position: relative; }
.nav__list > li.is-active > a::after { content: ''; position: absolute; left: .7rem; right: .7rem; bottom: .35rem; height: 2px; background: var(--gold); }
.nav__cta { display: flex; gap: .5rem; flex: 0 0 auto; }
/* The WhatsApp button duplicates the top bar link and floating button; drop it first when space is tight */
@media (min-width: 961px) and (max-width: 1440px) { .nav__cta .btn--ghost { display: none; } }
@media (min-width: 961px) and (max-width: 1180px) { .nav__brand small { display: none; } .nav__list > li > a { padding: .7rem .55rem; font-size: .9rem; } }

.sub { position: absolute; top: 100%; left: 0; min-width: 560px; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 1rem; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .18s, transform .18s, visibility .18s; }
.sub--narrow { min-width: 280px; }
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.sub__grid { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem; }
.sub__grid--1 { grid-template-columns: 1fr; }
.sub__grid a { display: flex; align-items: center; gap: 10px; padding: .6rem .7rem; border-radius: var(--r); color: #d8d5cc; font-size: .92rem; }
.sub__grid a:hover { background: var(--card-2); color: var(--gold-bright); }
.sub__grid a .icon { color: var(--gold); width: 20px; height: 20px; }
.sub__foot { display: flex; justify-content: space-between; gap: 1rem; margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--border); font-size: .85rem; }
.sub__foot a { color: var(--gold); }

@media (max-width: 960px) {
  .nav__toggle { display: block; }
  .nav__menu { position: fixed; inset: 0; background: var(--bg); flex-direction: column; align-items: stretch; gap: 0; padding: calc(var(--nav-h) + 52px) 1.25rem 6rem; overflow-y: auto; transform: translateX(100%); visibility: hidden; transition: transform .25s, visibility .25s; z-index: 899; }
  .nav__menu.is-open { transform: translateX(0); visibility: visible; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list > li > a { display: flex; justify-content: space-between; padding: 1rem .25rem; border-bottom: 1px solid var(--border); font-size: 1.05rem; }
  .nav__list > li.is-active > a::after { display: none; }
  .sub { position: static; min-width: 0; opacity: 1; visibility: visible; transform: none; display: none; box-shadow: none; border: 0; background: var(--bg-alt); border-radius: 0; margin: 0 -1.25rem; padding: .5rem 1.25rem; }
  .has-sub.is-open .sub { display: block; }
  .has-sub.is-open > a .icon { transform: rotate(180deg); }
  .sub__grid { grid-template-columns: 1fr; }
  .nav__cta { flex-direction: column; margin-top: 1.5rem; }
  .nav__cta .btn { width: 100%; }
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.hero__inner { display: grid; gap: 2.5rem; padding: clamp(3rem, 8vw, 6.5rem) 0; align-items: center; }
@media (min-width: 960px) { .hero__inner { grid-template-columns: 1.05fr .95fr; } }
.hero__copy .h1 { margin: .5rem 0 1.2rem; }
.hero__copy .h1 em { font-style: normal; color: var(--gold); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; margin-top: 2rem; color: var(--muted); font-size: .88rem; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .icon { color: var(--gold); }
.hero__media { position: relative; }
.hero__media img { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--border); aspect-ratio: 4 / 3; object-fit: cover; }
.hero__media::after { content: ''; position: absolute; inset: 0; border-radius: var(--r-lg); background: linear-gradient(180deg, transparent 55%, rgba(8, 8, 8, .7)); pointer-events: none; }
.hero__card { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; background: rgba(26, 27, 30, .92); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: var(--r); padding: .8rem 1rem; font-size: .85rem; backdrop-filter: blur(8px); max-width: 300px; }
.hero__card strong { display: block; color: var(--gold-bright); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 2px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(800px 500px at 85% 10%, rgba(212, 160, 23, .12), transparent 60%); }
.hero > .container { position: relative; z-index: 1; }

.page-hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem); background: linear-gradient(180deg, var(--bg-alt), var(--bg)); border-bottom: 1px solid var(--border); }
.page-hero .h1 { margin: .4rem 0 1rem; max-width: 18ch; }
.page-hero .lead { margin-bottom: 1.5rem; }
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .8rem; color: var(--muted); margin-bottom: 1rem; }
.crumbs a:hover { color: var(--gold-bright); }
.crumbs li + li::before { content: '/'; margin-right: .4rem; opacity: .5; }

/* ── Cards ────────────────────────────────────────────────────────────── */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.6rem; position: relative; transition: border-color .18s, transform .18s; }
.card::before { content: ''; position: absolute; top: 0; left: 1.6rem; right: 1.6rem; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s; border-radius: 2px; }
.card:hover { border-color: #3a3b40; transform: translateY(-2px); }
.card:hover::before { transform: scaleX(1); }
.card .icon--lg { width: 34px; height: 34px; color: var(--gold); margin-bottom: 1rem; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .95rem; }
.card__link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 600; font-size: .9rem; margin-top: 1rem; }
.card__link .icon { transition: transform .18s; }
.card:hover .card__link .icon { transform: translateX(4px); }
.card--flyer { padding: 0; overflow: hidden; }
.card--flyer img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.card--flyer .card__body { padding: 1.4rem; }
.section--light .card { background: #fff; border-color: #e3ddcd; }
.section--light .card p { color: #5f5e5a; }

.checks { display: grid; gap: .6rem; }
.checks li { display: flex; gap: 10px; align-items: flex-start; }
.checks .icon { color: var(--gold); margin-top: .2em; }
.checks--2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
.chip { display: inline-flex; align-items: center; gap: 4px; padding: .25rem .6rem; border-radius: 999px; font-size: .75rem; font-weight: 600; letter-spacing: .02em; background: var(--card-2); border: 1px solid var(--border); color: #cfcbc1; }
.chip--gold { background: rgba(212, 160, 23, .12); border-color: rgba(212, 160, 23, .35); color: var(--gold-bright); }
.chip.is-active, .chip[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: var(--on-gold); }
button.chip { cursor: pointer; }

/* ── Stats ────────────────────────────────────────────────────────────── */
.stats { background: var(--bg-alt); border-block: 1px solid var(--border); padding: 2.5rem 0; }
.stats__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; text-align: center; }
.stats__num { display: block; font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--gold); line-height: 1; letter-spacing: .02em; }
.stats__label { display: block; margin-top: .35rem; color: var(--muted); font-size: .85rem; }

/* ── Brands strip ─────────────────────────────────────────────────────── */
.brands { background: var(--light); color: #1a1b1e; padding: 2rem 0; }
.brands .container { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; }
.brands__label { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: #6b6a66; font-weight: 600; }
.brands__list { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; flex: 1; }
.brands__list li { font-weight: 700; font-size: 1.05rem; letter-spacing: .02em; color: #2b2c30; opacity: .75; }
.brands__link { font-size: .85rem; font-weight: 600; color: #7a5b05; }

/* ── Steps / process ──────────────────────────────────────────────────── */
.steps { display: grid; gap: 1.25rem; counter-reset: step; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); } }
.steps__item { display: flex; gap: 1rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.4rem; }
.steps__num { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.steps__item h3 { margin-bottom: .35rem; }
.steps__item p { color: var(--muted); font-size: .92rem; }
.steps__time { display: inline-block; margin-top: .6rem; font-size: .75rem; color: var(--gold-bright); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq__list { display: grid; gap: .6rem; }
.faq__item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); }
.faq__item summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 1.2rem; cursor: pointer; font-weight: 600; list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .icon { color: var(--gold); transition: transform .2s; }
.faq__item[open] summary .icon { transform: rotate(180deg); }
.faq__body { padding: 0 1.2rem 1.2rem; color: #cfcbc1; }

/* ── Tables ───────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); }
table.cmp { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 560px; }
.cmp th, .cmp td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.cmp thead th { background: var(--card-2); color: var(--gold-bright); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.cmp tbody th { color: var(--muted); font-weight: 500; white-space: nowrap; }
.cmp tbody tr:last-child td, .cmp tbody tr:last-child th { border-bottom: 0; }

/* ── Forms ────────────────────────────────────────────────────────────── */
.form { display: grid; gap: .9rem; }
.form label { display: grid; gap: .35rem; font-size: .85rem; font-weight: 500; color: #cfcbc1; }
.form input, .form select, .form textarea { width: 100%; padding: .75rem .9rem; border-radius: var(--r); border: 1px solid var(--border); background: var(--bg); color: var(--text); font-size: .95rem; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.form__row { display: grid; gap: .9rem; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__note { font-size: .78rem; color: var(--muted); }
.form__status { font-size: .9rem; min-height: 1.2em; }
.form__status.is-ok { color: var(--ok); }
.form__status.is-err { color: var(--err); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.qform { background: var(--card); border: 1px solid var(--border); border-top: 3px solid var(--gold); border-radius: var(--r-lg); padding: 1.6rem; }
.qform h3 { margin-bottom: 1rem; font-size: 1.3rem; }
.form--light input, .form--light select, .form--light textarea { background: #fff; color: #1a1b1e; border-color: #d6d0c1; }
.form--light label { color: #3a3a38; }

/* ── CTA band ─────────────────────────────────────────────────────────── */
.cta { background: linear-gradient(135deg, #15130b, #0d0d0d 60%); border-block: 1px solid rgba(212, 160, 23, .25); padding: 3.5rem 0; }
.cta__inner { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between; }
.cta h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.8rem); text-transform: uppercase; letter-spacing: .03em; line-height: 1; margin-bottom: .5rem; }
.cta p { color: var(--muted); max-width: 52ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── Project cards ────────────────────────────────────────────────────── */
.pgrid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.pcard { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: border-color .18s, transform .18s; }
.pcard:hover { border-color: var(--gold-hover); transform: translateY(-3px); }
.pcard__media { position: relative; aspect-ratio: 16 / 10; background: var(--card-2); overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pcard:hover .pcard__media img { transform: scale(1.04); }
.pcard__placeholder { display: grid; place-items: center; height: 100%; color: rgba(212, 160, 23, .35); }
.pcard__placeholder .icon { width: 64px; height: 64px; }
.pcard__flag { position: absolute; top: .8rem; left: .8rem; background: var(--gold); color: var(--on-gold); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .25rem .55rem; border-radius: 3px; }
.pcard__body { padding: 1.3rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.pcard__meta { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.pcard p { color: var(--muted); font-size: .92rem; }
.pcard__metrics { display: flex; gap: 1.2rem; margin-top: .3rem; }
.pcard__metrics li { display: flex; flex-direction: column; }
.pcard__metrics strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-bright); line-height: 1; }
.pcard__metrics span { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; align-items: center; }
.filters__group { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.filters__label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-right: .3rem; }
.filters select, .filters input[type="search"] { padding: .5rem .8rem; border-radius: var(--r); border: 1px solid var(--border); background: var(--card); color: var(--text); font-size: .9rem; }
.empty { text-align: center; padding: 3rem 1rem; color: var(--muted); border: 1px dashed var(--border); border-radius: var(--r-lg); }

/* ── Case study ───────────────────────────────────────────────────────── */
.glance { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.4rem; }
.glance dt { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.glance dd { margin: 0; font-weight: 600; }
.metrics { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.metrics li { background: var(--card); border: 1px solid var(--border); border-top: 3px solid var(--gold); border-radius: var(--r-lg); padding: 1.2rem; }
.metrics strong { display: block; font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--gold-bright); }
.metrics span { color: var(--muted); font-size: .85rem; }
.gallery { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.gallery a { display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r); border: 1px solid var(--border); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery a:hover img { transform: scale(1.05); }
.quote { border-left: 3px solid var(--gold); padding: .5rem 0 .5rem 1.4rem; margin: 2rem 0; }
.quote p { font-size: 1.25rem; line-height: 1.5; }
.quote footer { margin-top: .75rem; color: var(--muted); font-size: .9rem; }
.quote footer strong { color: var(--gold-bright); }

/* ── Testimonials ─────────────────────────────────────────────────────── */
.tgrid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.tcard { margin: 0; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; }
.tcard p { font-size: 1rem; line-height: 1.6; margin-bottom: 1rem; }
.tcard footer { display: flex; flex-direction: column; font-size: .85rem; }
.tcard strong { color: var(--gold-bright); }
.tcard span { color: var(--muted); }

/* ── Catalogue ────────────────────────────────────────────────────────── */
.cat-tabs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.5rem; }
.cat-tabs a { padding: .5rem .9rem; border-radius: 999px; border: 1px solid var(--border); font-size: .85rem; font-weight: 600; color: #cfcbc1; }
.cat-tabs a.is-active, .cat-tabs a:hover { background: var(--gold); border-color: var(--gold); color: var(--on-gold); }
.igrid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.icard { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; }
.icard__media { aspect-ratio: 4 / 3; background: var(--card-2); display: grid; place-items: center; color: rgba(212, 160, 23, .35); }
.icard__media img { width: 100%; height: 100%; object-fit: cover; }
.icard__media .icon { width: 48px; height: 48px; }
.icard__body { padding: 1.2rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.icard__brand { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.icard ul { display: grid; gap: .25rem; color: var(--muted); font-size: .88rem; }
.icard ul li::before { content: '· '; color: var(--gold); }
.icard__foot { margin-top: auto; display: flex; gap: .5rem; padding-top: .8rem; }

/* ── Insights ─────────────────────────────────────────────────────────── */
.acard { display: flex; flex-direction: column; gap: .5rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; transition: border-color .18s; }
.acard:hover { border-color: var(--gold-hover); }
.acard time { font-size: .75rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.acard p { color: var(--muted); font-size: .93rem; }
.article { max-width: 760px; }
.article__meta { color: var(--muted); font-size: .85rem; margin-bottom: 2rem; }

/* ── Footer ───────────────────────────────────────────────────────────── */
.footer { background: #050505; border-top: 1px solid var(--border); padding: 4rem 0 2rem; font-size: .92rem; }
.footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { width: 56px; height: 56px; border-radius: 50%; margin-bottom: 1rem; }
.footer__brand p { margin-bottom: .75rem; }
.footer__brand .muted { font-size: .88rem; }
.footer ul li { margin-bottom: .45rem; }
.footer ul a:hover { color: var(--gold-bright); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact .icon { color: var(--gold); margin-top: .25em; }
.footer__contact + .btn { margin-top: 1rem; }
.footer__social { display: flex; gap: .6rem; }
.footer__social a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%; color: var(--muted); }
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); color: var(--muted); font-size: .82rem; }

/* ── Mobile action bar + WhatsApp float ───────────────────────────────── */
.mbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; background: rgba(8, 8, 8, .96); border-top: 1px solid var(--border); backdrop-filter: blur(10px); padding-bottom: env(safe-area-inset-bottom); }
.mbar a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: .6rem 0; font-size: .7rem; font-weight: 600; letter-spacing: .04em; color: #cfcbc1; }
.mbar a .icon { width: 22px; height: 22px; color: var(--gold); }
.mbar__primary { background: var(--gold); color: var(--on-gold) !important; }
.mbar__primary .icon { color: var(--on-gold) !important; }
.wa-float { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 940; width: 56px; height: 56px; border-radius: 50%; background: var(--wa); color: #06281a; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37, 211, 102, .35); transition: transform .18s; }
.wa-float:hover { transform: scale(1.06); }
.wa-float .icon { width: 30px; height: 30px; }
@media (max-width: 720px) { .mbar { display: flex; } .wa-float { display: none; } body { padding-bottom: 64px; } }

/* ── Misc ─────────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }
.notice { background: rgba(212, 160, 23, .1); border: 1px solid rgba(212, 160, 23, .35); border-radius: var(--r); padding: 1rem 1.2rem; font-size: .92rem; }
.badge-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: .55rem .9rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--r); font-size: .88rem; font-weight: 600; }
.badge .icon { color: var(--gold); }
.kv { display: grid; gap: .6rem; }
.kv div { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--border); font-size: .93rem; }
.kv dt { color: var(--muted); }
.kv dd { margin: 0; font-weight: 600; text-align: right; }
.map { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16 / 10; background: var(--card-2); }
.map iframe { width: 100%; height: 100%; border: 0; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; }

/* ── Print (company profile) ───────────────────────────────────────────── */
@media print {
  .topbar, .nav, .footer, .mbar, .wa-float, .cta, .no-print { display: none !important; }
  body { background: #fff; color: #111; font-size: 11pt; }
  .section { padding: 1.2rem 0; }
  .card, .pcard, .steps__item, .metrics li, .glance { border-color: #ccc; background: #fff; color: #111; break-inside: avoid; }
  .h1, .h2, .stats__num, .metrics strong { color: #8a6a05; }
  a { color: inherit; }
  .page-break { break-before: page; }
}
