/* =========================================================
   Elite CCTV Installation — Design System
   Palette: ink navy / warm paper / brass amber / steel blue / alert red
   Type: Archivo (display) + Inter (body) + IBM Plex Mono (data/labels)
   Motif: camera-viewfinder brackets, REC indicator, coordinate readouts
   ========================================================= */

:root{
  --ink:        #0D141F;
  --ink-soft:   #141D2B;
  --ink-line:   #2A3850;
  --paper:      #ECE7D8;
  --paper-panel:#F5F2E7;
  --paper-line: #D8D1BC;
  --charcoal:   #161F2B;
  --ink-text:   #E7E2D2;
  --muted-dark: #A7ADBB;
  --muted-light:#5B6472;
  --amber:      #D9982F;
  --amber-deep: #B87A1E;
  --steel:      #6C8CA8;
  --steel-deep: #3F5A72;
  --alert:      #BD4433;
  --whatsapp:   #2C9F4B;

  --font-display: "Archivo", "Arial Black", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

  --radius-s: 3px;
  --radius-m: 6px;
  --container: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:
    radial-gradient(1200px 500px at 85% 0%, rgba(217,152,47,.05), transparent 60%),
    var(--paper);
  color:var(--charcoal);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

svg.icon{ width:20px; height:20px; flex:none; }
.topbar svg{ width:13px; height:13px; vertical-align:-2px; margin-right:4px; }
.nav-toggle svg{ width:18px; height:18px; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-display); font-weight:800; line-height:1.08; margin:0 0 .5em; letter-spacing:-0.01em; }
p{ margin:0 0 1em; }
button{ font-family:inherit; }

:focus-visible{ outline:3px solid var(--amber); outline-offset:2px; }

.wrap{ max-width:var(--container); margin:0 auto; padding:0 24px; }
.eyebrow{
  font-family:var(--font-mono); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--amber-deep); display:flex; align-items:center; gap:.5em; margin-bottom:.9em;
}
.eyebrow::before{ content:""; width:8px; height:8px; background:var(--amber); display:inline-block; }
.eyebrow.on-dark{ color:var(--amber); }

section{ padding:76px 0; }
@media (max-width:720px){ section{ padding:52px 0; } }

.section-head{ max-width:640px; margin-bottom:44px; }
.section-head h2{ font-size:clamp(1.7rem,3.4vw,2.5rem); }
.section-head p{ color:var(--muted-light); font-size:1.05rem; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:.55em;
  font-family:var(--font-mono); font-size:.85rem; font-weight:500; letter-spacing:.03em; text-transform:uppercase;
  padding:14px 24px; border:1.5px solid transparent; border-radius:8px;
  cursor:pointer; transition:transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space:nowrap; will-change:transform;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }
.btn-amber{ background:linear-gradient(155deg,#E7AC49,var(--amber) 60%,var(--amber-deep)); color:var(--ink); box-shadow:0 1px 2px rgba(0,0,0,.15), 0 8px 20px -8px rgba(217,152,47,.55); }
.btn-amber:hover{ box-shadow:0 2px 4px rgba(0,0,0,.18), 0 14px 28px -8px rgba(217,152,47,.65); }
.btn-outline{ background:rgba(255,255,255,.03); border-color:var(--ink-line); color:var(--ink-text); backdrop-filter:blur(6px); }
.btn-outline:hover{ border-color:var(--amber); color:var(--amber); background:rgba(217,152,47,.08); }
.btn-outline-dark{ background:transparent; border-color:var(--charcoal); color:var(--charcoal); }
.btn-outline-dark:hover{ border-color:var(--amber-deep); color:var(--amber-deep); box-shadow:0 8px 20px -10px rgba(22,31,43,.3); }
.btn-whatsapp{ background:linear-gradient(155deg,#38B75A,var(--whatsapp)); color:#fff; box-shadow:0 1px 2px rgba(0,0,0,.15), 0 8px 20px -8px rgba(44,159,75,.5); }
.btn-whatsapp:hover{ box-shadow:0 2px 4px rgba(0,0,0,.18), 0 14px 28px -8px rgba(44,159,75,.6); }
.btn-block{ width:100%; justify-content:center; }
.btn svg{ width:16px; height:16px; flex:none; }
@media (prefers-reduced-motion: reduce){ .btn{ transition:background .2s ease, border-color .2s ease, color .2s ease; } .btn:hover{ transform:none; } }

/* ---------- Top utility bar ---------- */
.topbar{
  background:var(--ink); color:var(--muted-dark); font-family:var(--font-mono); font-size:.74rem;
  border-bottom:1px solid var(--ink-line);
}
.topbar .wrap{ display:flex; justify-content:space-between; align-items:center; height:36px; gap:16px; overflow:hidden; }
.topbar-left{ display:flex; gap:20px; white-space:nowrap; }
.topbar a{ color:var(--muted-dark); }
.topbar a:hover{ color:var(--amber); }
.topbar-right{ display:flex; gap:18px; white-space:nowrap; }
.rec{ display:inline-flex; align-items:center; gap:6px; color:var(--alert); }
.rec-dot{ width:7px; height:7px; border-radius:50%; background:var(--alert); box-shadow:0 0 0 0 rgba(189,68,51,.6); animation:pulse 1.8s infinite; }
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(189,68,51,.55); }
  70%{ box-shadow:0 0 0 7px rgba(189,68,51,0); }
  100%{ box-shadow:0 0 0 0 rgba(189,68,51,0); }
}
@media (max-width:640px){ .topbar-left{ display:none; } }

/* ---------- Header / Nav ---------- */
header.site-header{
  background:rgba(13,20,31,.82); backdrop-filter:blur(14px) saturate(140%); -webkit-backdrop-filter:blur(14px) saturate(140%);
  position:sticky; top:0; z-index:50; border-bottom:1px solid var(--ink-line);
  transition:box-shadow .25s ease, background .25s ease;
}
header.site-header.is-scrolled{ background:rgba(13,20,31,.96); box-shadow:0 10px 30px -14px rgba(0,0,0,.55); }
.nav-row{ display:flex; align-items:center; justify-content:space-between; height:90px; gap:24px; }
@media (max-width:768px){ .nav-row{ height:76px; } }

.logo{ font-family:var(--font-display); font-weight:900; font-size:1.25rem; color:var(--ink-text); display:flex; align-items:center; gap:10px; letter-spacing:-0.01em; }
.logo .mark{ width:34px; height:34px; flex:none; color:var(--amber); filter:drop-shadow(0 0 10px rgba(217,152,47,.35)); }
.logo small{ display:block; font-family:var(--font-mono); font-weight:400; font-size:.6rem; letter-spacing:.14em; color:var(--amber); text-transform:uppercase; }

nav.primary-nav{ display:flex; align-items:center; gap:2px; }
nav.primary-nav > ul{ display:flex; align-items:center; gap:2px; }
nav.primary-nav > ul > li{ position:relative; }
nav.primary-nav > ul > li > a, .nav-toplink{
  display:flex; align-items:center; gap:5px; padding:10px 16px; color:var(--ink-text);
  font-size:.92rem; font-weight:600; border-radius:100px; transition:background .18s ease, color .18s ease;
}
nav.primary-nav > ul > li > a:hover, nav.primary-nav > ul > li:focus-within > a{ color:var(--amber); background:rgba(217,152,47,.08); }
.chev{ width:9px; height:9px; opacity:.7; transition:transform .18s ease; }
nav.primary-nav > ul > li:hover .chev{ transform:rotate(180deg); }
.dropdown{
  position:absolute; top:calc(100% + 8px); left:0; min-width:270px; background:rgba(20,29,43,.98); backdrop-filter:blur(16px);
  border:1px solid var(--ink-line); padding:8px; border-radius:14px;
  opacity:0; visibility:hidden; transform:translateY(8px) scale(.98); transition:opacity .18s ease, transform .18s cubic-bezier(.2,.8,.2,1), visibility .18s;
  box-shadow:0 24px 48px -12px rgba(0,0,0,.5);
}
nav.primary-nav > ul > li:hover .dropdown,
nav.primary-nav > ul > li:focus-within .dropdown{ opacity:1; visibility:visible; transform:translateY(0) scale(1); }
.dropdown a{ display:block; padding:10px 12px; border-radius:8px; color:var(--ink-text); font-size:.9rem; transition:background .15s ease, padding-left .15s ease; }
.dropdown a:hover{ background:var(--ink); color:var(--amber); padding-left:16px; }
.dropdown a span{ display:block; font-family:var(--font-mono); font-size:.7rem; color:var(--muted-dark); margin-top:2px; }

.nav-cta{ display:flex; align-items:center; gap:10px; }
.nav-cta .btn{ padding:11px 18px; }
@media (max-width:640px){ .nav-cta .btn-outline{ display:none; } }

.nav-toggle{ display:none; background:rgba(255,255,255,.03); border:1px solid var(--ink-line); color:var(--ink-text); padding:9px 11px; border-radius:8px; }
@media (max-width:960px){
  nav.primary-nav{ display:none; }
  .nav-toggle{ display:inline-flex; }
  header.site-header.nav-open nav.primary-nav{
    display:block; position:absolute; top:76px; left:0; right:0; background:var(--ink-soft);
    border-top:1px solid var(--ink-line); border-bottom:1px solid var(--ink-line); max-height:80vh; overflow:auto;
  }
  header.site-header.nav-open nav.primary-nav > ul{ flex-direction:column; align-items:stretch; padding:10px; gap:0; }
  header.site-header.nav-open .dropdown{ position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; display:none; margin:2px 0 8px; }
  header.site-header.nav-open li.open .dropdown{ display:block; }
}

/* ---------- Hero / Viewfinder ---------- */
.hero{ background:radial-gradient(1100px 700px at 15% -10%, rgba(217,152,47,.16), transparent 55%),
                  radial-gradient(900px 600px at 100% 10%, rgba(108,140,168,.16), transparent 55%),
                  var(--ink);
       color:var(--ink-text); position:relative; overflow:hidden; padding:64px 0 84px; }
.hero::before{
  content:""; position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(0deg, rgba(231,226,211,.045) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg, rgba(231,226,211,.045) 0 1px, transparent 1px 64px);
  mask-image:radial-gradient(1000px 600px at 30% 20%, #000 40%, transparent 85%);
  pointer-events:none;
}
.hero::after{
  content:""; position:absolute; left:0; right:0; height:140px; top:-140px;
  background:linear-gradient(180deg, transparent, rgba(217,152,47,.06), transparent);
  animation:scan 9s linear infinite; pointer-events:none;
}
@keyframes scan{ 0%{ transform:translateY(0); } 100%{ transform:translateY(920px); } }
@media (prefers-reduced-motion: reduce){ .hero::after{ animation:none; display:none; } }
.hero .wrap{ position:relative; }
.hero-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center; }
@media (max-width:900px){ .hero-grid{ grid-template-columns:1fr; } }

.viewfinder{ position:relative; padding:30px; }
.vf-corner{ position:absolute; width:26px; height:26px; border:2.5px solid var(--amber); filter:drop-shadow(0 0 8px rgba(217,152,47,.45)); }
.vf-corner.tl{ top:0; left:0; border-right:none; border-bottom:none; }
.vf-corner.tr{ top:0; right:0; border-left:none; border-bottom:none; }
.vf-corner.bl{ bottom:0; left:0; border-right:none; border-top:none; }
.vf-corner.br{ bottom:0; right:0; border-left:none; border-top:none; }

.hero h1{ font-size:clamp(2.1rem,4.6vw,3.4rem); color:#fff; margin-bottom:.4em; }
.hero h1 em{ font-style:normal; background:linear-gradient(100deg,#F0B94E,var(--amber) 55%,#c97f22); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero .lede{ font-size:1.12rem; color:var(--muted-dark); max-width:52ch; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:12px; margin-top:26px; }
.hero-stats{ display:flex; gap:28px; margin-top:38px; flex-wrap:wrap; font-family:var(--font-mono); }
.hero-stats .stat b{ display:block; font-family:var(--font-display); font-size:1.6rem; color:#fff; }
.hero-stats .stat span{ font-size:.72rem; color:var(--muted-dark); letter-spacing:.06em; text-transform:uppercase; }

.hero-panel{ background:linear-gradient(165deg, rgba(20,29,43,.85), rgba(20,29,43,.55)); backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px); border:1px solid rgba(217,152,47,.22); border-radius:16px; padding:28px; box-shadow:0 30px 60px -24px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.04); }
.hero-panel .readout{ font-family:var(--font-mono); font-size:.76rem; color:var(--steel); display:flex; justify-content:space-between; border-bottom:1px dashed var(--ink-line); padding-bottom:10px; margin-bottom:14px; }
.hero-panel ul{ display:grid; gap:12px; }
.hero-panel li{ display:flex; gap:10px; align-items:flex-start; font-size:.95rem; color:var(--ink-text); }
.hero-panel li svg{ width:18px; height:18px; flex:none; margin-top:2px; color:var(--amber); }

/* ---------- Cards / Grids ---------- */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media (max-width:900px){ .grid-3,.grid-4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:620px){ .grid-3,.grid-2,.grid-4{ grid-template-columns:1fr; } }

.card{ background:var(--paper-panel); border:1px solid var(--paper-line); border-radius:14px; padding:28px; position:relative;
  box-shadow:0 1px 2px rgba(22,31,43,.04), 0 12px 28px -18px rgba(22,31,43,.15);
  transition:transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, border-color .25s ease; }
.card:hover{ transform:translateY(-5px); border-color:rgba(217,152,47,.4); box-shadow:0 1px 2px rgba(22,31,43,.06), 0 24px 40px -20px rgba(22,31,43,.28); }
.card .icon{ width:44px; height:44px; color:var(--amber-deep); margin-bottom:16px; display:flex; align-items:center; justify-content:center; border-radius:11px;
  background:linear-gradient(155deg, rgba(217,152,47,.16), rgba(217,152,47,.05)); padding:10px; box-sizing:content-box; }
.card .icon svg{ width:100%; height:100%; }
.card h3{ font-size:1.14rem; margin-bottom:.4em; }
.card p{ color:var(--muted-light); font-size:.96rem; margin-bottom:.6em; }
.card a.more{ font-family:var(--font-mono); font-size:.78rem; text-transform:uppercase; color:var(--amber-deep); letter-spacing:.04em; display:inline-flex; align-items:center; gap:6px; transition:gap .18s ease; }
.card a.more:hover{ color:var(--alert); gap:10px; }
@media (prefers-reduced-motion: reduce){ .card{ transition:box-shadow .2s ease, border-color .2s ease; } .card:hover{ transform:none; } }

.dark-card{ background:var(--ink-soft); border:1px solid var(--ink-line); color:var(--ink-text); }
.dark-card p{ color:var(--muted-dark); }

/* ---------- Process (numbered — genuine sequence) ---------- */
.process{ display:grid; grid-template-columns:repeat(5,1fr); gap:0; counter-reset:step; }
@media (max-width:900px){ .process{ grid-template-columns:1fr; } }
.step{ position:relative; padding:0 20px 20px 0; border-right:1px dashed var(--paper-line); }
.step:last-child{ border-right:none; }
@media (max-width:900px){ .step{ border-right:none; border-left:2px solid var(--paper-line); padding:0 0 28px 22px; } }
.step .num{
  font-family:var(--font-mono); font-size:.78rem; color:var(--amber-deep);
  display:inline-flex; align-items:center; justify-content:center; width:34px; height:34px;
  border:1.5px solid rgba(217,152,47,.4); border-radius:50%; margin-bottom:14px;
  background:linear-gradient(155deg, rgba(217,152,47,.12), transparent);
}
.step h4{ font-family:var(--font-display); font-size:1.02rem; margin-bottom:.4em; }
.step p{ color:var(--muted-light); font-size:.9rem; }

/* ---------- Trust bar ---------- */
.trust-bar{ background:var(--ink); color:var(--ink-text); position:relative; }
.trust-bar .grid-4{ padding:36px 0; }
.trust-item{ display:flex; gap:14px; align-items:flex-start; padding:10px; border-radius:12px; transition:background .2s ease, transform .2s ease; }
.trust-item:hover{ background:rgba(217,152,47,.06); transform:translateY(-2px); }
.trust-item svg{ width:26px; height:26px; color:var(--amber); flex:none; filter:drop-shadow(0 0 6px rgba(217,152,47,.3)); }
.trust-item b{ display:block; font-size:.95rem; }
.trust-item span{ color:var(--muted-dark); font-size:.84rem; }

/* ---------- Coverage / Locations ---------- */
.coverage-groups{ display:grid; grid-template-columns:repeat(3,1fr); gap:0 34px; }
@media (max-width:900px){ .coverage-groups{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:620px){ .coverage-groups{ grid-template-columns:1fr; } }
.coverage-groups > div{ border-top:1px solid var(--paper-line); padding-top:16px; margin-bottom:30px; }
.coverage-groups h4{ font-family:var(--font-mono); font-size:.74rem; text-transform:uppercase; letter-spacing:.1em; color:var(--muted-light); margin-bottom:12px; }
.coverage-groups li{ margin-bottom:8px; }
.coverage-groups a{ font-size:.98rem; display:flex; justify-content:space-between; padding:6px 8px; margin:0 -8px; border-radius:8px; transition:background .18s ease, padding-left .18s ease, color .18s ease; }
.coverage-groups a:hover{ color:var(--amber-deep); background:rgba(217,152,47,.07); padding-left:14px; }
.coverage-groups a .coord{ font-family:var(--font-mono); font-size:.68rem; color:var(--muted-light); }

/* ---------- Testimonials ---------- */
.testi{ background:var(--paper-panel); border:1px solid var(--paper-line); border-radius:var(--radius-m); padding:28px; }
.testi .stars{ color:var(--amber-deep); font-family:var(--font-mono); font-size:.85rem; margin-bottom:12px; }
.testi p.quote{ font-size:1.02rem; }
.testi .who{ font-family:var(--font-mono); font-size:.76rem; color:var(--muted-light); }

/* ---------- FAQ ---------- */
.faq-item{ border-bottom:1px solid var(--paper-line); }
.faq-item summary{ cursor:pointer; padding:18px 10px; margin:0 -10px; border-radius:10px; font-family:var(--font-display); font-weight:700; font-size:1.02rem; display:flex; justify-content:space-between; align-items:center; list-style:none; transition:background .18s ease; }
.faq-item summary:hover{ background:rgba(217,152,47,.06); }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-family:var(--font-mono); font-size:1.3rem; color:var(--amber-deep); transition:transform .25s ease; flex:none; margin-left:14px; }
.faq-item[open] summary::after{ transform:rotate(135deg); }
.faq-item p{ color:var(--muted-light); padding:0 10px 18px; max-width:70ch; }

/* ---------- CTA band ---------- */
.cta-band{ background:radial-gradient(900px 500px at 50% -20%, rgba(217,152,47,.18), transparent 60%), linear-gradient(120deg,var(--ink) 0%, #1b2740 100%); color:#fff; text-align:center; padding:64px 0; position:relative; overflow:hidden; }
.cta-band::before{ content:""; position:absolute; inset:0; box-shadow:inset 0 1px 0 rgba(255,255,255,.06); pointer-events:none; }
.cta-band h2{ font-size:clamp(1.6rem,3.4vw,2.3rem); color:#fff; }
.cta-band p{ color:var(--muted-dark); max-width:56ch; margin:0 auto 26px; }
.cta-band .hero-ctas{ justify-content:center; }

/* ---------- Breadcrumb ---------- */
.breadcrumb{ font-family:var(--font-mono); font-size:.74rem; color:var(--muted-light); padding:16px 0; }
.breadcrumb a:hover{ color:var(--amber-deep); }
.breadcrumb span{ margin:0 6px; }

/* ---------- Page intro (service/location pages) ---------- */
.page-hero{ background:var(--ink); color:var(--ink-text); padding:44px 0 56px; position:relative; overflow:hidden; }
.page-hero::before{
  content:""; position:absolute; inset:0;
  background-image:repeating-linear-gradient(0deg, rgba(217,152,47,.05) 0 1px, transparent 1px 64px), repeating-linear-gradient(90deg, rgba(217,152,47,.05) 0 1px, transparent 1px 64px);
}
.page-hero .wrap{ position:relative; }
.page-hero h1{ font-size:clamp(1.9rem,4vw,2.7rem); color:#fff; max-width:20ch; }
.page-hero p.lede{ color:var(--muted-dark); max-width:64ch; font-size:1.05rem; }
.page-hero .coord{ font-family:var(--font-mono); font-size:.76rem; color:var(--steel); margin-top:16px; }

.two-col{ display:grid; grid-template-columns:1.4fr .9fr; gap:44px; align-items:start; }
@media (max-width:880px){ .two-col{ grid-template-columns:1fr; } }
.side-box{ background:var(--paper-panel); border:1px solid var(--paper-line); border-radius:14px; padding:24px; box-shadow:0 1px 2px rgba(22,31,43,.04), 0 20px 40px -24px rgba(22,31,43,.2); }
.side-box h3{ font-size:1rem; }
.side-box ul{ display:grid; gap:9px; margin-top:12px; }
.side-box li{ font-size:.92rem; display:flex; gap:8px; }
.side-box li svg{ width:16px; height:16px; color:var(--amber-deep); flex:none; margin-top:3px; }

.check-list{ display:grid; gap:10px; margin:18px 0; }
.check-list li{ display:flex; gap:10px; align-items:flex-start; font-size:.97rem; }
.check-list li svg{ width:18px; height:18px; color:var(--amber-deep); flex:none; margin-top:3px; }

.suburb-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.suburb-tags span{ font-family:var(--font-mono); font-size:.74rem; border:1px solid var(--paper-line); padding:6px 10px; border-radius:20px; color:var(--muted-light); }

/* ---------- Footer ---------- */
footer.site-footer{ background:var(--ink); color:var(--muted-dark); padding:60px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; padding-bottom:44px; border-bottom:1px solid var(--ink-line); }
@media (max-width:820px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-grid h5{ font-family:var(--font-mono); font-size:.74rem; text-transform:uppercase; letter-spacing:.1em; color:var(--ink-text); margin-bottom:14px; }
.footer-grid li{ margin-bottom:9px; font-size:.9rem; }
.footer-grid a{ transition:color .18s ease, padding-left .18s ease; display:inline-block; }
.footer-grid a:hover{ color:var(--amber); padding-left:4px; }
.badge{ font-family:var(--font-mono); font-size:.7rem; text-transform:uppercase; letter-spacing:.05em; border:1px solid rgba(217,152,47,.35); color:var(--amber); background:rgba(217,152,47,.08); padding:6px 12px; border-radius:20px; }
.footer-brand .logo{ margin-bottom:14px; }
.footer-brand p{ font-size:.9rem; max-width:34ch; }
.footer-legal{ display:flex; justify-content:space-between; align-items:center; padding:22px 0; font-size:.78rem; flex-wrap:wrap; gap:10px; }
.footer-legal a{ margin-left:16px; }
.footer-legal a:hover{ color:var(--amber); }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-bar{ position:fixed; left:0; right:0; bottom:0; z-index:60; display:none; background:rgba(13,20,31,.92); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); border-top:1px solid var(--ink-line); box-shadow:0 -12px 30px -14px rgba(0,0,0,.45); }
.mobile-bar .wrap{ display:flex; padding:0; max-width:none; }
.mobile-bar a{ flex:1; display:flex; align-items:center; justify-content:center; gap:8px; padding:14px 6px; font-family:var(--font-mono); font-size:.78rem; text-transform:uppercase; border-right:1px solid var(--ink-line); color:var(--ink-text); }
.mobile-bar a:last-child{ border-right:none; }
.mobile-bar a.wa{ background:var(--whatsapp); color:#fff; }
.mobile-bar a svg{ width:16px; height:16px; }
@media (max-width:760px){
  .mobile-bar{ display:block; }
  body{ padding-bottom:54px; }
}

/* ---------- Scroll reveal (progressive enhancement, see js/main.js) ---------- */
.reveal{ opacity:0; transform:translateY(16px); transition:opacity .6s cubic-bezier(.2,.8,.2,1), transform .6s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.grid-3 .reveal:nth-child(2), .grid-4 .reveal:nth-child(2){ transition-delay:.06s; }
.grid-3 .reveal:nth-child(3), .grid-4 .reveal:nth-child(3){ transition-delay:.12s; }
.grid-4 .reveal:nth-child(4){ transition-delay:.18s; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ---------- Misc ---------- */
.badge-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ---------- Image & Media System ---------- */
.logo-img { height: 64px; width: auto; max-width: 320px; object-fit: contain; filter: drop-shadow(0 3px 10px rgba(0,0,0,0.45)); transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1); }
.logo:hover .logo-img { transform: scale(1.04); }
@media (max-width: 768px) {
  .logo-img { height: 50px; max-width: 240px; }
}
.logo-img-footer { height: 72px; width: auto; max-width: 340px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); }


/* Card Image Headers */
.card-img-wrap {
  width: calc(100% + 56px);
  margin: -28px -28px 20px -28px;
  height: 200px;
  overflow: hidden;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
  position: relative;
  background: var(--ink-soft);
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card:hover .card-img {
  transform: scale(1.06);
}

/* Hero visual container & Viewfinder overlay */
.hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(217, 152, 47, 0.3);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
  background: var(--ink-soft);
}
.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero-hud-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}
.hero-hud-badge {
  background: rgba(13, 20, 31, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(217, 152, 47, 0.35);
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Feature showcase grids & media */
.feature-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 880px) {
  .feature-showcase-grid { grid-template-columns: 1fr; }
}
.showcase-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--paper-line);
  box-shadow: 0 16px 36px -12px rgba(22, 31, 43, 0.18);
  background: var(--ink-soft);
}
.showcase-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.showcase-media:hover img {
  transform: scale(1.03);
}
.dark-card .showcase-media {
  border-color: var(--ink-line);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.6);
}

.proof-banner {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--paper-panel);
  border: 1px solid var(--paper-line);
  border-radius: 16px;
  padding: 24px 32px;
  margin-top: 36px;
}
@media (max-width: 720px) {
  .proof-banner { flex-direction: column; text-align: center; }
}
.proof-banner img {
  max-width: 180px;
  height: auto;
  flex: none;
}

