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

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
    --bg:           #0b0d0e;
    --bg-alt:       #0f1214;
    --surface:      #151a1c;
    --surface-2:    #1c2226;
    --border:       rgba(255,255,255,0.07);
    --border-hi:    rgba(255,255,255,0.13);
    --green:        #4a6741;
    --green-lt:     #6b8f5e;
    --green-pale:   #9ab890;
    --green-dim:    rgba(74,103,65,0.14);
    --white:        #f2efe8;
    --grey:         #8a918a;
    --muted:        #515951;
    --r:            12px;
    --r-lg:         20px;
    --em-h:         40px;
    --nav-h:        70px;
    --ease:         cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1,h2,h3,h4 {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.sec-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--green-pale);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.sec-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 1.1rem;
}
.sec-sub {
    font-size: 1.02rem;
    color: var(--grey);
    max-width: 560px;
    line-height: 1.78;
}
.sec-header {
    text-align: center;
    margin-bottom: 4rem;
}
.sec-header .sec-sub { margin: 0 auto; }

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--green);
    color: var(--white);
    border: 2px solid var(--green);
    border-radius: var(--r);
    font-family: 'Barlow', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
                transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    white-space: nowrap;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--green-lt);
    border-color: var(--green-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.22);
    border-radius: var(--r);
    font-family: 'Barlow', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
    white-space: nowrap;
    cursor: pointer;
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.88rem; }
.btn-em {
    width: 100%;
    justify-content: center;
    background: #7a1a1a;
    border-color: #7a1a1a;
}
.btn-em:hover { background: #a02222; border-color: #a02222; }
.btn-submit { width: 100%; justify-content: center; font-size: 0.85rem; }
.btn-submit svg { width: 18px; height: 18px; }

/* ============================================================
   LOADING SCREEN
============================================================ */
.site-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #060b06;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease;
}
.site-loader.fade-out { opacity: 0; pointer-events: none; }
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.loader-logo {
    width: 100px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}
.loader-track {
    width: 220px;
    height: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
}
.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--green), var(--green-pale));
    border-radius: 2px;
    transition: width 0.4s ease;
}
.loader-label {
    margin-top: 1.2rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: var(--muted);
    text-transform: uppercase;
}

/* ============================================================
   EMERGENCY BAR
============================================================ */
.emergency-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: linear-gradient(90deg, #0a130a, #131f10, #0a130a);
    border-bottom: 1px solid rgba(74,103,65,0.25);
    height: var(--em-h);
}
.em-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
    padding: 0 1rem;
}
.em-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(154,184,144,0.8);
    text-transform: uppercase;
}
.em-divider { color: rgba(74,103,65,0.5); font-size: 0.8rem; }
.em-number {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--green-pale);
    transition: color 0.2s;
}
.em-number:hover { color: #c5dcc0; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
    position: fixed;
    top: var(--em-h);
    left: 0; right: 0;
    z-index: 999;
    background: rgba(11,13,14,0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar.scrolled {
    background: rgba(11,13,14,0.97);
    box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 2rem;
    max-width: 1280px;
    margin: 0 auto;
}
.logo img { height: 50px; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.nav-link {
    padding: 0.5rem 0.9rem;
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--grey);
    letter-spacing: 0.04em;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-cta {
    padding: 0.6rem 1.4rem;
    background: var(--green);
    color: var(--white);
    border-radius: var(--r);
    font-family: 'Barlow', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--green-lt); transform: translateY(-1px); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--em-h) + var(--nav-h) + 3rem);
    padding-bottom: 5rem;
    overflow: hidden;
}
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5,8,5,0.93) 0%,
        rgba(8,12,8,0.85) 50%,
        rgba(5,8,5,0.78) 100%
    );
}
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent, transparent 18px,
        rgba(255,255,255,0.009) 18px,
        rgba(255,255,255,0.009) 19px
    );
}
.hero-body {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.3rem;
    background: rgba(74,103,65,0.16);
    border: 1px solid rgba(74,103,65,0.32);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--green-pale);
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}
.hero-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.2rem;
}

/* ---- Canvas video-inside-text ---- */
.title-canvas {
    display: block;
    max-width: 100%;
    height: auto;
}
.hero-h2 {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3.8rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-pale);
    line-height: 1.2;
    margin-top: 0.2em;
    white-space: nowrap;
}
.hero-tagline {
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.4rem;
}
.hero-desc {
    font-size: 1.08rem;
    color: var(--grey);
    max-width: 540px;
    margin: 0 auto 2.5rem;
    line-height: 1.78;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4.5rem;
}
.hero-actions .btn-primary,
.hero-actions .btn-ghost { max-width: 100%; }
.hero-nums {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.hero-num { text-align: center; }
.hnum {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.hlabel {
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.hero-num-divider {
    width: 1px;
    height: 44px;
    background: var(--border);
}
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 2;
}
.hero-scroll-hint span {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    color: var(--muted);
    text-transform: uppercase;
}
.scroll-bar {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--green), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    45%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    46%  { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* Hero load animations */
.anim-in {
    opacity: 0;
    transform: translateY(22px);
    animation: animIn 0.75s var(--ease) forwards;
    animation-delay: var(--d, 0s);
}
@keyframes animIn { to { opacity:1; transform:translateY(0); } }

/* ============================================================
   TRUST MARQUEE
============================================================ */
.marquee-wrap {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.marquee-belt {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
.marquee-wrap:hover .marquee-belt { animation-play-state: paused; }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.mq-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    font-size: 0.77rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey);
    border-right: 1px solid var(--border);
    white-space: nowrap;
    flex-shrink: 0;
}
.mq-item svg {
    width: 13px; height: 13px;
    stroke: var(--green-pale);
    flex-shrink: 0;
}

/* ============================================================
   SERVICES
============================================================ */
.services {
    padding: 9rem 0;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}
.ghost-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Barlow', sans-serif;
    font-size: clamp(7rem, 22vw, 22rem);
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    letter-spacing: 0.1em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
}
.ghost-text--right {
    top: auto;
    left: auto;
    bottom: -1rem;
    right: -1rem;
    transform: none;
}
.services .container { position: relative; z-index: 1; }

.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.svc-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.svc-card:hover {
    transform: translateY(-7px);
    border-color: var(--border-hi);
    box-shadow: 0 24px 52px rgba(0,0,0,0.55);
}
.svc-card:hover .svc-img { background-size: 110%; }

/* Service card image areas — each with its own colour personality */
.svc-img {
    position: relative;
    height: 175px;
    background-size: cover;
    background-position: center;
    transition: background-size 0.6s ease;
    overflow: hidden;
}
.svc-img--guard   { background-color: #101810; background-image: url('assets/ProfessionalGuarding.webp'), linear-gradient(135deg,#101810,#070e07); }
.svc-img--exec    { background-color: #0e1018; background-image: url('assets/executiveBodyguards.webp'), linear-gradient(135deg,#0e1018,#07070d); background-position: center 30%; }
.svc-img--escort  { background-color: #0e1210; background-image: url('assets/secureEscorts.webp'), linear-gradient(135deg,#0e1210,#070a08); }
.svc-img--tech    { background-color: #0c1414; background-image: url('assets/technicalService.webp'), linear-gradient(135deg,#0c1414,#060c0c); }
.svc-img--vehicle { background-color: #100e0c; background-image: url('assets/armouredVehicle.webp'), linear-gradient(135deg,#100e0c,#0a0806); }
.svc-img--monitor { background-color: #0c1018; background-image: url('assets/offSiteMonitoring.webp'), linear-gradient(135deg,#0c1018,#06070d); }
.svc-img--invest  { background-color: #101014; background-image: url('assets/investigations.webp'), linear-gradient(135deg,#101014,#08080c); }
.svc-img--risk    { background-color: #0e1212; background-image: url('assets/riskAssesment.webp'), linear-gradient(135deg,#0e1212,#080a0a); }

.svc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
}
.svc-icon-wrap {
    position: absolute;
    bottom: 1rem;
    left: 1.25rem;
    width: 42px; height: 42px;
    background: rgba(74,103,65,0.22);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(74,103,65,0.32);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.svc-icon-wrap svg { width: 20px; height: 20px; stroke: var(--green-pale); }

.svc-body {
    padding: 1.4rem;
    position: relative;
}
.svc-num {
    position: absolute;
    top: 1.2rem; right: 1.2rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--muted);
    font-family: 'Barlow', sans-serif;
}
.svc-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
    color: var(--white);
    padding-right: 2rem;
}
.svc-body > p {
    font-size: 0.84rem;
    color: var(--grey);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.svc-list { display: flex; flex-direction: column; gap: 0.3rem; }
.svc-list li {
    font-size: 0.78rem;
    color: var(--muted);
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}
.svc-list li::before {
    content: ',';
    position: absolute; left: 0;
    color: var(--green);
    font-size: 0.68rem;
    top: 0.1em;
}

/* ============================================================
   STATS
============================================================ */
.stats-sec {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}
.stats-img {
    position: absolute;
    inset: 0;
    background-color: #08090d;
    background-image: url('assets/whoWeAre.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5,7,5,0.87);
}
.stats-inner { position: relative; z-index: 1; }
.stats-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.5rem;
    text-align: center;
}
.stat-box {
    padding: 2.5rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    backdrop-filter: blur(8px);
    transition: border-color 0.3s, background 0.3s;
}
.stat-box:hover {
    border-color: var(--border-hi);
    background: rgba(74,103,65,0.07);
}
.stat-val {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}
.stat-lbl {
    font-size: 0.76rem;
    color: var(--grey);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ============================================================
   ABOUT
============================================================ */
.about {
    padding: 9rem 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.about .container { position: relative; z-index: 1; }
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-img-frame {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--surface);
}
.about-img-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}
.about-img-frame:hover img { transform: scale(1.03); }
.about-img-badge {
    position: absolute;
    bottom: 1.5rem; left: 1.5rem;
    background: rgba(11,13,14,0.92);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-hi);
    border-radius: var(--r);
    padding: 1rem 1.5rem;
    text-align: center;
}
.about-badge-num {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.about-img-badge span {
    font-size: 0.7rem;
    color: var(--grey);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.about-text-col .sec-title { margin-top: 0.5rem; margin-bottom: 1.5rem; }
.about-p {
    font-size: 0.96rem;
    color: var(--grey);
    line-height: 1.82;
    margin-bottom: 0.9rem;
}
.cert-list { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.cert-row { display: flex; align-items: flex-start; gap: 1rem; }
.cert-icon {
    width: 28px; height: 28px;
    background: var(--green-dim);
    border: 1px solid rgba(74,103,65,0.22);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.cert-icon svg { width: 13px; height: 13px; stroke: var(--green-pale); }
.cert-row strong { display: block; font-size: 0.88rem; color: var(--white); margin-bottom: 0.15rem; }
.cert-row p { font-size: 0.8rem; color: var(--muted); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
}
.val-card {
    padding: 1.2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: border-color 0.25s, transform 0.25s;
}
.val-card:hover { border-color: var(--border-hi); transform: translateY(-3px); }
.val-icon {
    width: 36px; height: 36px;
    background: var(--green-dim);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.75rem;
}
.val-icon svg { width: 17px; height: 17px; stroke: var(--green-pale); }
.val-card h4 { font-size: 0.83rem; color: var(--white); margin-bottom: 0.35rem; }
.val-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   TECHNOLOGY
============================================================ */
.technology {
    position: relative;
    padding: 9rem 0;
    overflow: hidden;
}
.tech-bg {
    position: absolute;
    inset: 0;
    background-color: #060a08;
    background-image: url('assets/offSiteMonitoring.webp');
    background-size: cover;
    background-position: center;
}
.tech-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,8,5,0.95) 0%, rgba(8,10,8,0.90) 100%);
}
.tech-inner { position: relative; z-index: 1; }
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.tech-card {
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-lg);
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.tech-card:hover {
    border-color: rgba(74,103,65,0.35);
    background: rgba(74,103,65,0.07);
    transform: translateY(-5px);
}
.tech-icon {
    width: 50px; height: 50px;
    background: var(--green-dim);
    border: 1px solid rgba(74,103,65,0.22);
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
}
.tech-icon svg { width: 22px; height: 22px; stroke: var(--green-pale); }
.tech-card h3 { font-size: 0.98rem; color: var(--white); margin-bottom: 0.55rem; }
.tech-card p { font-size: 0.83rem; color: var(--grey); line-height: 1.65; }
.partners-wrap {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}
.partners-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.partner-pill {
    padding: 0.55rem 1.75rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--grey);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.partner-pill:hover { border-color: var(--border-hi); color: var(--white); background: rgba(255,255,255,0.07); }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background-color: #0a1008;
    background-image: url('assets/ProfessionalGuarding.webp');
    background-size: cover;
    background-position: center 40%;
}
.cta-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(5,8,5,0.97) 40%, rgba(5,8,5,0.82) 100%);
}
.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 620px;
}
.cta-banner h2 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    color: var(--white);
    margin: 0.5rem 0 1.2rem;
}
.cta-banner p {
    font-size: 1.05rem;
    color: var(--grey);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
    padding: 9rem 0;
    background: var(--bg-alt);
}
.contact-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-sidebar h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 2rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon {
    width: 40px; height: 40px;
    background: var(--green-dim);
    border: 1px solid rgba(74,103,65,0.2);
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ci-icon svg { width: 17px; height: 17px; stroke: var(--green-pale); }
.contact-item h4 { font-size: 0.8rem; color: var(--grey); font-weight: 500; margin-bottom: 0.25rem; }
.contact-item a, .contact-item p { font-size: 0.95rem; color: var(--white); font-weight: 600; transition: color 0.2s; }
.contact-item a:hover { color: var(--green-pale); }
.social-links { margin-bottom: 2rem; }
.social-links h4 { font-size: 0.8rem; color: var(--grey); font-weight: 500; margin-bottom: 0.9rem; }
.social-icons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-icons a {
    display: flex; align-items: center; justify-content: center;
    width: 2.2rem; height: 2.2rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: var(--grey);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-icons a:hover { background: var(--green); border-color: var(--green); color: #000; }
.social-icons svg { width: 1rem; height: 1rem; }

.emergency-callout {
    padding: 1.5rem;
    background: rgba(160,30,30,0.08);
    border: 1px solid rgba(160,30,30,0.2);
    border-radius: var(--r-lg);
}
.emergency-callout h4 { font-size: 0.85rem; color: #ff8a8a; margin-bottom: 0.4rem; }
.emergency-callout p { font-size: 0.82rem; color: var(--grey); margin-bottom: 1.2rem; line-height: 1.6; }

/* Form */
.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
}
.form-group:last-of-type { margin-bottom: 1.75rem; }
label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--grey);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
input, select, textarea {
    padding: 0.85rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    color: var(--white);
    font-size: 0.88rem;
    font-family: inherit;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--muted); }
input:focus, select:focus, textarea:focus {
    border-color: rgba(74,103,65,0.5);
    box-shadow: 0 0 0 3px rgba(74,103,65,0.1);
}
select option { background: var(--surface); }
textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: #070909;
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}
.footer-logo { height: 58px; margin-bottom: 1rem; }
.footer-tagline {
    font-family: 'Barlow', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--green-pale);
    margin-bottom: 0.75rem;
}
.footer-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.72; max-width: 280px; }
.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a, .footer-col li { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }
.footer-badges { display: flex; align-items: center; gap: 0.75rem; font-size: 0.76rem; color: var(--muted); }

/* ============================================================
   WHATSAPP
============================================================ */
.wa-btn {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(0,0,0,0.5); }
.wa-btn svg { width: 30px; height: 30px; }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translate(0,0);
}
.stagger-1 { transition-delay: 0.07s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.25s; }
.stagger-4 { transition-delay: 0.34s; }

/* ============================================================
   SCROLLBAR
============================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }
::selection { background: var(--green); color: var(--white); }

/* ============================================================
   RESPONSIVE — 1024px
============================================================ */
@media (max-width: 1024px) {
    .svc-grid    { grid-template-columns: repeat(2,1fr); }
    .tech-grid   { grid-template-columns: repeat(2,1fr); }
    .stats-row   { grid-template-columns: repeat(2,1fr); }
    .about-layout { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-col { order: -1; }
    .about-img-frame { max-width: 520px; aspect-ratio: 16/10; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .contact-layout { grid-template-columns: 1fr; }
    .cta-inner { max-width: 100%; }
}

/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width: 768px) {
    :root { --em-h: 52px; --nav-h: 62px; }
    .container { padding: 0 1.25rem; }

    /* Emergency bar stacks */
    .em-inner { flex-direction: column; gap: 0.1rem; }
    .em-label  { font-size: 0.62rem; }
    .em-number { font-size: 0.82rem; }
    .em-divider { display: none; }

    /* Mobile nav */
    .nav-menu {
        position: fixed;
        top: calc(var(--em-h) + var(--nav-h));
        left: 0; right: 0;
        background: rgba(11,13,14,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.4rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.38s var(--ease), opacity 0.38s ease;
        z-index: 998;
    }
    .nav-menu.active { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-link { width: 100%; padding: 0.75rem 1rem; font-size: 0.95rem; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    /* Hero */
    .hero { padding-top: calc(var(--em-h) + var(--nav-h) + 2rem); }
    .title-canvas { max-width: 92vw; }
    .hero-h2 { font-size: clamp(1.2rem, 5vw, 2rem); white-space: normal; }
    .hero-desc { font-size: 0.98rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost { width: 100%; max-width: 320px; justify-content: center; }
    .hero-nums { gap: 1.5rem; }
    .hero-num-divider { display: none; }

    /* Sections */
    .services, .about, .technology, .contact { padding: 5rem 0; }
    .stats-sec { padding: 4rem 0; }
    .cta-banner { padding: 5rem 0; }
    .svc-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stats-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stats-img { background-attachment: scroll; }
    .values-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 1.5rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .sec-header { margin-bottom: 2.5rem; }
    .wa-btn { bottom: 1.2rem; right: 1.2rem; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
    .tech-grid  { grid-template-columns: 1fr; }
    .stats-row  { grid-template-columns: 1fr 1fr; }
}
