/* ==========================================================================
   LIPHISE SECURITY SERVICES — UNIQUE PREMIUM REDESIGN
   Diagonal Cuts · Glassmorphism · Gold Particles · Perspective Cards
   Brand: Obsidian #07090F | Maroon #6B0F1A | Gold #C9A84C
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* ─── DESIGN TOKENS ──────────────────────────────────────────────────── */
:root {
  --ink:          #07090F;
  --ink-2:        #0D1018;
  --ink-3:        #121620;
  --ink-4:        #181d2a;
  --ink-5:        #1f2637;
  --ink-glass:    rgba(13, 16, 24, 0.75);

  --crimson:      #6B0F1A;
  --crimson-mid:  #881523;
  --crimson-hot:  #A01B2B;
  --crimson-soft: rgba(107, 15, 26, 0.15);
  --crimson-glow: rgba(107, 15, 26, 0.45);

  --gold:         #C9A84C;
  --gold-light:   #DFC070;
  --gold-pale:    #F0D898;
  --gold-dim:     #8A6E2F;
  --gold-glow:    rgba(201, 168, 76, 0.35);
  --gold-soft:    rgba(201, 168, 76, 0.08);
  --gold-border:  rgba(201, 168, 76, 0.22);

  --slate:        #94a3b8;
  --mist:         #cbd5e1;
  --snow:         #f8fafc;
  --white:        #ffffff;

  --glass-bg:     rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-hover:  rgba(255, 255, 255, 0.07);

  --fh:           'Barlow Condensed', sans-serif;
  --fb:           'Inter', sans-serif;
  --fs:           'Playfair Display', serif;

  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --t:            0.28s;

  --r-xs:         4px;
  --r-sm:         8px;
  --r-md:         14px;
  --r-lg:         22px;
  --r-xl:         32px;
  --r-pill:       9999px;
}

/* ─── RESET ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background: var(--ink); }
body {
  font-family: var(--fb);
  background: var(--ink);
  color: var(--mist);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--t) var(--ease); }
button, input, select, textarea { font-family: inherit; }

/* ─── LAYOUT ─────────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── TYPOGRAPHY UTILITIES ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--fh); color: var(--white); font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
.txt-gold   { color: var(--gold) !important; }
.txt-slate  { color: var(--slate) !important; }
.txt-white  { color: var(--white) !important; }
.txt-mist   { color: var(--mist) !important; }
.italic     { font-style: italic; }
.serif      { font-family: var(--fs) !important; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.display-xl {
  font-family: var(--fh);
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
}

.display-lg {
  font-family: var(--fh);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
}

.body-lg { font-size: 1.1rem; line-height: 1.75; color: var(--slate); }
.body-md { font-size: 0.95rem; line-height: 1.7; color: var(--slate); }
.body-sm { font-size: 0.85rem; line-height: 1.6; color: var(--slate); }

/* Gradient Text */
.grad-gold {
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold accent stroke under heading */
.stroke-gold {
  position: relative;
  display: inline-block;
}
.stroke-gold::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* ─── GOLD DIVIDER LINE ───────────────────────────────────────────────── */
.divider-gold {
  width: 56px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 20px 0;
}
.divider-gold.center { margin: 20px auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); width: 120px; }

/* ─── BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  padding: 13px 26px;
  border-radius: var(--r-xs);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  text-transform: uppercase;
}

/* Primary — Crimson */
.btn-primary {
  background: var(--crimson-hot);
  color: var(--white);
  border-color: var(--crimson-mid);
  box-shadow: 0 0 0 0 var(--crimson-glow);
}
.btn-primary:hover {
  background: var(--crimson-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--crimson-glow);
  color: var(--white);
}

/* Gold */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 4px 16px var(--gold-glow);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--gold-glow);
  color: var(--ink);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  color: var(--white);
}

/* Ghost Gold */
.btn-ghost-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-border);
}
.btn-ghost-gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* WhatsApp */
.btn-wa {
  background: #1da851;
  color: #fff;
  border-color: #18a048;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-wa:hover {
  background: #18a048;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  color: #fff;
}

.btn-lg { padding: 16px 34px; font-size: 0.95rem; }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }
.btn-xs { padding: 7px 14px; font-size: 0.75rem; }
.btn-full { width: 100%; }

/* ─── TOP ALERT BAR ───────────────────────────────────────────────────── */
.alert-bar {
  background: var(--crimson);
  padding: 8px 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.9);
}
.alert-bar a { color: var(--gold-pale); }

/* ─── MAIN NAVIGATION ─────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
}

.site-nav.scrolled {
  background: rgba(7, 9, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-emblem {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--ink-4) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  position: relative;
  overflow: hidden;
}
.brand-emblem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, transparent 60%);
}
.brand-emblem img { width: 30px; height: 30px; object-fit: contain; position: relative; }

.brand-name-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.brand-title {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}
.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--slate);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--t) var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile Toggle */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xs);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}

/* Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--ink-2);
  border-left: 1px solid var(--gold-border);
  z-index: 1200;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s var(--ease);
}
.nav-drawer.open { right: 0; }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: var(--t);
}
.drawer-backdrop.show { opacity: 1; visibility: visible; }

.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 28px;
}
.drawer-close-btn {
  background: transparent;
  border: none;
  color: var(--slate);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}
.drawer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-xs);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate);
  transition: var(--t);
}
.drawer-link i { color: var(--gold); font-size: 0.9rem; width: 16px; }
.drawer-link:hover, .drawer-link.active { background: var(--gold-soft); color: var(--gold); }
.drawer-bottom { padding-top: 20px; border-top: 1px solid var(--glass-border); }

/* ─── HERO SECTION ─────────────────────────────────────────────────────
   Full viewport. Guard photo right. Huge type left. Diagonal cut base.
   ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
  padding-top: 90px;
}

/* Ambient background layers */
.hero__bg-left {
  position: absolute;
  top: 0; left: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(107,15,26,0.28) 0%, transparent 70%);
  pointer-events: none;
}
.hero__bg-right {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* Grid noise texture overlay */
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Diagonal slash accent */
.hero__slash {
  position: absolute;
  top: 0;
  right: 36%;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: 0.12;
  transform: skewX(-8deg);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  align-items: center;
  gap: 0;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Left text content */
.hero__content {
  padding: 60px 0 60px 0;
  padding-right: 60px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107,15,26,0.25);
  border: 1px solid rgba(107,15,26,0.5);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fca5a5;
  margin-bottom: 28px;
}
.hero__badge i { color: var(--crimson-hot); }

.hero__headline {
  font-family: var(--fh);
  font-size: clamp(4rem, 8.5vw, 8.5rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__headline .line-accent {
  display: block;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 60%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Stats ribbon */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0;
  border-top: 1px solid var(--glass-border);
  padding-top: 28px;
}
.hero__stat {
  padding: 0 28px 0 0;
  position: relative;
}
.hero__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--glass-border);
}
.hero__stat-val {
  font-family: var(--fh);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}
.hero__stat-val span { color: var(--gold); }
.hero__stat-lbl {
  font-size: 0.74rem;
  color: var(--slate);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Right: Poster/image panel */
.hero__visual {
  position: relative;
  height: 100%;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* The diagonal clipped image frame */
.hero__img-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 640px;
}

.hero__img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--ink-3) 60%);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero__poster {
  position: absolute;
  inset: 0;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
}
.hero__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  mix-blend-mode: luminosity;
  opacity: 0.85;
  transition: transform 0.8s ease;
}
.hero__poster:hover img { transform: scale(1.02); }

/* Photo overlay gradient */
.hero__poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(107,15,26,0.5) 0%,
    rgba(7,9,15,0.1) 50%,
    transparent 100%
  );
}

/* Gold border accent line */
.hero__img-border {
  position: absolute;
  top: 20px;
  left: calc(8% - 2px);
  width: 3px;
  height: calc(100% - 40px);
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  z-index: 2;
}

/* Live badge on image */
.hero__live-tag {
  position: absolute;
  top: 28px;
  right: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(7,9,15,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: blink 1.8s infinite ease-in-out;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Floating service pills on image */
.hero__pill {
  position: absolute;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 8px;
  right: 20px;
  left: calc(8% + 16px);
  flex-wrap: wrap;
}
.pill-tag {
  background: rgba(7,9,15,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--mist);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pill-tag i { color: var(--gold); margin-right: 4px; }

/* Diagonal bottom cut of hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--ink);
  clip-path: polygon(0 100%, 100% 0%, 100% 100%);
  z-index: 3;
}

/* ─── TRUST STRIP ─────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--ink-2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 28px 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--glass-border);
}
.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.trust-info h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.trust-info p {
  font-size: 0.78rem;
  color: var(--slate);
  line-height: 1.3;
}

/* ─── SERVICES SECTION ────────────────────────────────────────────────── */
.services-section {
  padding: 110px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
.services-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107,15,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-head {
  max-width: 560px;
  margin-bottom: 56px;
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.service-card {
  background: var(--ink-3);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background var(--t) var(--ease);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}

.service-card:hover {
  background: var(--ink-4);
}
.service-card:hover::before {
  opacity: 1;
}

.service-card.is-featured {
  background: linear-gradient(160deg, rgba(107,15,26,0.3) 0%, var(--ink-3) 100%);
  border-color: rgba(107,15,26,0.4);
}
.service-card.is-featured::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--crimson-hot), transparent);
}

.card-number {
  font-family: var(--fh);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  pointer-events: none;
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--r-xs);
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 24px;
}

.card-badge {
  position: absolute;
  top: 20px;
  left: 32px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  padding: 3px 9px;
  border-radius: var(--r-pill);
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 24px;
}

.card-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--mist);
}
.card-features li i {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-top: auto;
  transition: gap var(--t) var(--ease), color var(--t);
}
.card-link:hover { gap: 12px; color: var(--gold-light); }

/* Row 2 Services — wider grid */
.services-grid-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 1px;
}

/* ─── CCTV SECTION — FULL BLEED DARK PANEL ────────────────────────────── */
.cctv-section {
  padding: 110px 0;
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}

.cctv-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.cctv-section::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.cctv-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cctv-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.cctv-pt {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  transition: all var(--t) var(--ease);
}
.cctv-pt:hover {
  border-color: var(--gold-border);
  background: var(--gold-soft);
  transform: translateX(6px);
}
.cctv-pt-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.cctv-pt-body h4 { font-size: 1.05rem; margin-bottom: 4px; }
.cctv-pt-body p { font-size: 0.83rem; color: var(--slate); line-height: 1.5; margin: 0; }

/* CCTV monitor mockup */
.cctv-monitor {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 0 60px rgba(201,168,76,0.1), 0 24px 56px rgba(0,0,0,0.6);
  background: var(--ink);
}

.monitor-topbar {
  background: var(--ink-3);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0.5px;
}

.monitor-feed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #000;
}

.feed-cell {
  position: relative;
  height: 170px;
  background: var(--ink-3);
  overflow: hidden;
}
.feed-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.feed-label {
  position: absolute;
  top: 7px;
  left: 8px;
  background: rgba(0,0,0,0.7);
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 3px;
}
.feed-ts {
  position: absolute;
  bottom: 7px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: rgba(255,255,255,0.8);
  font-size: 0.62rem;
  font-family: monospace;
  padding: 2px 6px;
  border-radius: 3px;
}

.monitor-statusbar {
  padding: 12px 18px;
  background: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  border-top: 1px solid var(--glass-border);
  color: var(--slate);
}

/* ─── SHIFT ESTIMATOR SECTION ──────────────────────────────────────────── */
.estimator-section {
  padding: 110px 0;
  background: var(--ink);
}

.estimator-box {
  background: var(--ink-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.estimator-top {
  padding: 44px 52px;
  border-bottom: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(107,15,26,0.12) 0%, transparent 60%);
}

.estimator-body {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
}

.estimator-controls {
  padding: 44px 52px;
  border-right: 1px solid var(--glass-border);
}

.est-step {
  margin-bottom: 34px;
}
.est-step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mist);
  margin-bottom: 14px;
}
.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold);
}

.svc-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.svc-chip-label { cursor: pointer; }
.svc-chip-label input { display: none; }
.svc-chip-box {
  background: var(--ink-4);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  transition: all var(--t) var(--ease);
}
.svc-chip-box i { color: var(--gold); font-size: 1rem; }
.svc-chip-label input:checked + .svc-chip-box {
  background: var(--crimson-soft);
  border-color: var(--crimson-mid);
  color: var(--white);
  box-shadow: 0 0 14px var(--crimson-glow);
}

.slider-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.slider-val {
  background: var(--ink-5);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 3px 12px;
  border-radius: var(--r-pill);
}

.est-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--ink-5);
  border-radius: 3px;
  outline: none;
  border: 1px solid var(--glass-border);
}
.est-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 2px solid var(--ink);
  box-shadow: 0 0 10px var(--gold-glow);
  transition: transform var(--t);
}
.est-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.est-select {
  width: 100%;
  background: var(--ink-4);
  border: 1px solid var(--glass-border);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t);
}
.est-select:focus { border-color: var(--gold); box-shadow: 0 0 10px var(--gold-glow); }

/* Dossier panel */
.dossier {
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(107,15,26,0.08) 0%, var(--ink-4) 100%);
}

.dossier-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 22px;
}
.dossier-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.dossier-title span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.dossier-title h4 { font-size: 1.1rem; }

.dossier-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  flex: 1;
}
.dossier-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dossier-row-label { color: var(--slate); white-space: nowrap; }
.dossier-row-val { font-weight: 700; color: var(--white); text-align: right; }
.dossier-row-val.gold { color: var(--gold); }

.dossier-actions { display: flex; flex-direction: column; gap: 10px; }

/* ─── AUDIT SECTION ─────────────────────────────────────────────────────── */
.audit-section {
  padding: 110px 0;
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}
.audit-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.audit-shell {
  background: var(--ink-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 52px;
  overflow: hidden;
}

.audit-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 40px 0;
}

.audit-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--ink-4);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.audit-row:hover { border-color: var(--gold-border); }
.audit-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}
.audit-row-body strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 3px;
}
.audit-row-body small {
  font-size: 0.78rem;
  color: var(--slate);
  line-height: 1.4;
}

.audit-result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--ink-4);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 28px 36px;
}

.audit-score-display {
  display: flex;
  align-items: center;
  gap: 20px;
}
.audit-score-num {
  font-family: var(--fh);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.audit-score-text h4 { font-size: 1.3rem; margin-bottom: 4px; }
.audit-score-text p { font-size: 0.85rem; color: var(--slate); margin: 0; }

/* ─── ABOUT SECTION ─────────────────────────────────────────────────────── */
.about-section {
  padding: 110px 0;
  background: var(--ink);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

/* Unique stacked frame effect */
.about-img-stack {
  position: relative;
}
.about-img-stack::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  z-index: 0;
}
.about-img-stack::after {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  z-index: 2;
  pointer-events: none;
}
.about-img-stack img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-lg);
}

.about-floater {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 3;
  background: var(--ink-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.floater-icon {
  width: 44px;
  height: 44px;
  background: var(--crimson-soft);
  border: 1px solid rgba(107,15,26,0.4);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fca5a5;
  font-size: 1.2rem;
}
.floater-text h5 { font-size: 0.9rem; margin: 0 0 2px; }
.floater-text p { font-size: 0.75rem; color: var(--gold); margin: 0; font-weight: 600; }

.about-text .body-lg { max-width: 500px; margin-bottom: 18px; }

.pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.pillar {
  background: var(--ink-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  padding: 20px 16px;
  text-align: center;
  transition: border-color var(--t) var(--ease);
}
.pillar:hover { border-color: var(--gold-border); }
.pillar i { font-size: 1.5rem; color: var(--gold); margin-bottom: 10px; }
.pillar strong { display: block; font-size: 0.9rem; color: var(--white); margin-bottom: 4px; }
.pillar small { font-size: 0.75rem; color: var(--slate); }

/* ─── CONTACT SECTION ────────────────────────────────────────────────────── */
.contact-section {
  padding: 110px 0;
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--ink-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  padding: 18px 22px;
  transition: all var(--t) var(--ease);
  text-decoration: none;
}
.contact-row:hover {
  border-color: var(--gold-border);
  transform: translateX(5px);
  background: var(--ink-4);
}
.contact-row-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-xs);
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-row-icon.wa-icon {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.3);
  color: #22c55e;
}
.contact-row-lbl {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--slate);
  font-weight: 600;
}
.contact-row-val {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

/* Form card */
.form-card {
  background: var(--ink-3);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: 0 0 40px rgba(201,168,76,0.06);
}
.form-card-head {
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--glass-border);
}
.form-card-head h3 { font-size: 1.9rem; margin-bottom: 6px; }
.form-card-head p { font-size: 0.88rem; color: var(--slate); }

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.fgroup {
  margin-bottom: 16px;
}
.fgroup label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--mist);
  margin-bottom: 8px;
}
.finput, .fselect, .ftextarea {
  width: 100%;
  background: var(--ink-4);
  border: 1px solid var(--glass-border);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.finput::placeholder, .ftextarea::placeholder { color: var(--ink-5); }
.finput:focus, .fselect:focus, .ftextarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
  background: var(--ink-3);
}
.ftextarea { resize: vertical; min-height: 108px; }
.form-note-line {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  color: var(--slate);
  margin-top: 12px;
}
.form-note-line i { color: var(--gold); }

/* ─── PAGE BANNER ─────────────────────────────────────────────────────────── */
.page-banner {
  background: var(--ink-2);
  padding: 70px 0 56px;
  border-bottom: 1px solid var(--glass-border);
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--ink);
  clip-path: polygon(0 100%, 100% 0%, 100% 100%);
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--slate);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }

.page-title { font-size: clamp(2.8rem, 6vw, 5rem); margin-bottom: 16px; text-transform: uppercase; }
.page-lead { font-size: 1.05rem; color: var(--slate); max-width: 640px; line-height: 1.7; }

/* ─── FOOTER ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink-2);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand-block .brand { margin-bottom: 18px; }
.footer-desc { font-size: 0.88rem; color: var(--slate); line-height: 1.7; margin-bottom: 20px; max-width: 320px; }
.footer-psira-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mist);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--glass-border);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-block { display: flex; flex-direction: column; gap: 12px; }
.fcontact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--slate);
}
.fcontact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--slate);
}
.footer-bottom-motto { color: var(--gold); font-weight: 600; font-style: italic; }

/* ─── TOAST NOTIFICATION ──────────────────────────────────────────────────── */
.app-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: var(--ink-3);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
  max-width: 380px;
}
.app-toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.toast-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
}
.toast-text h6 { font-size: 0.9rem; margin: 0 0 3px; color: var(--white); }
.toast-text p { font-size: 0.78rem; color: var(--slate); margin: 0; }

/* ─── FLOATING WA BTN ─────────────────────────────────────────────────────── */
.fab-wa {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 22px rgba(37,211,102,0.4);
  z-index: 1500;
  transition: all var(--t) var(--ease);
  text-decoration: none;
}
.fab-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
  color: #fff;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__content { padding-right: 0; padding-bottom: 0; }
  .hero__visual { min-height: 420px; }
  .hero__img-frame { min-height: 420px; }
  .cctv-inner { grid-template-columns: 1fr; }
  .estimator-body { grid-template-columns: 1fr; }
  .dossier { border-right: none; border-top: 1px solid var(--glass-border); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-ctas .btn:not(.btn-primary) { display: none; }
  .nav-burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-wide { grid-template-columns: 1fr; }
  .trust-items { grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--glass-border); }
  .audit-checklist { grid-template-columns: 1fr; }
  .pillars-row { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; gap: 16px; }
  .hero__stat::after { display: none; }
  .estimator-controls { padding: 28px 24px; }
  .dossier { padding: 28px 24px; }
  .audit-shell { padding: 28px 24px; }
  .form-card { padding: 28px 24px; }
  .estimator-top { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero::after { height: 40px; }
  .cctv-section::before, .cctv-section::after { height: 40px; }
  .audit-section::before { height: 40px; }
  .contact-section::before { height: 40px; }
  .page-banner::after { height: 36px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__pill { flex-wrap: wrap; }
}
