/* =================================================================
   QRF SECURITY SOLUTIONS — Theme
   Dark · tactical · red accent · low-poly geometry
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
    --bg:           #0a0c10;
    --bg-1:         #0e1117;
    --bg-2:         #12161f;
    --surface:      #161b25;
    --surface-2:    #1b212d;
    --border:       rgba(255, 255, 255, .08);
    --border-2:     rgba(255, 255, 255, .15);

    --red:          #d4111f;
    --red-bright:   #ff2a37;
    --red-dark:     #9e0c16;
    --red-soft:     rgba(212, 17, 31, .12);
    --red-glow:     rgba(212, 17, 31, .45);
    --gold:         #c9a24c;

    --heading:      #ffffff;
    --text:         #d3d8e0;
    --muted:        #99a1b0;
    --muted-2:      #6c7585;

    --font-head:    'Oswald', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;

    --radius:       4px;
    --shadow:       0 20px 55px rgba(0, 0, 0, .5);
    --shadow-sm:    0 8px 24px rgba(0, 0, 0, .35);
    --ease:         cubic-bezier(.22, .61, .36, 1);
    --nav-h:        76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--red-bright); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--heading);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: .01em;
    margin: 0 0 .6em;
}

p { margin: 0 0 1rem; }

::selection { background: var(--red); color: #fff; }

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

.skip-link {
    position: fixed; top: 12px; left: 12px; z-index: 2000;
    background: var(--red); color: #fff; padding: .5rem 1rem; border-radius: var(--radius);
}

/* ---------- Layout helpers ---------- */
.container { max-width: 1200px; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section--tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.bg-1 { background: var(--bg-1); }
.bg-2 { background: var(--bg-2); }
.bg-surface { background: var(--surface); }

/* faint low-poly texture overlay */
.bg-grid { position: relative; }
.bg-grid::before {
    content: ""; position: absolute; inset: 0;
    background: url('../img/texture.jpg') center/cover;
    opacity: .06; pointer-events: none; mix-blend-mode: luminosity;
}
.bg-grid > * { position: relative; z-index: 1; }

/* angled tactical corner clip */
.clip-corner {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

/* ---------- Typography utilities ---------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: var(--font-head); font-weight: 600;
    text-transform: uppercase; letter-spacing: .22em;
    font-size: .8rem; color: var(--red); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--red); display: inline-block; }
.eyebrow--center { justify-content: center; }

.section-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    text-transform: uppercase; font-weight: 700; letter-spacing: .015em;
}
.section-title .accent { color: var(--red); }

.lead { font-size: 1.12rem; color: var(--muted); max-width: 62ch; }

.text-red { color: var(--red) !important; }
.text-white-90 { color: rgba(255,255,255,.9); }
.text-muted-2 { color: var(--muted) !important; }

.divider-red { width: 64px; height: 3px; background: var(--red); border: 0; opacity: 1; margin: 1.2rem 0; }
.divider-red.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn-qrf, .btn-ghost, .btn-outline-qrf {
    --bs-btn-focus-shadow-rgb: 212,17,31;
    font-family: var(--font-head); font-weight: 600;
    text-transform: uppercase; letter-spacing: .12em; font-size: .9rem;
    padding: .8rem 1.9rem; border: 0; border-radius: 0;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    transition: all .28s var(--ease); position: relative;
}
.btn-qrf { background: var(--red); color: #fff; }
.btn-qrf:hover, .btn-qrf:focus {
    background: var(--red-bright); color: #fff;
    transform: translateY(-3px); box-shadow: 0 12px 30px var(--red-glow);
}
.btn-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px var(--border-2); }
.btn-ghost:hover, .btn-ghost:focus { color: #fff; box-shadow: inset 0 0 0 2px var(--red); transform: translateY(-3px); background: var(--red-soft); }
.btn-outline-qrf { background: transparent; color: var(--red); box-shadow: inset 0 0 0 2px var(--red); }
.btn-outline-qrf:hover { background: var(--red); color: #fff; }
.btn-lg { padding: 1rem 2.3rem; font-size: 1rem; }
.btn-sm { padding: .6rem 1.3rem; font-size: .82rem; }
@media (min-width: 576px) { .w-sm-auto { width: auto !important; } }

/* ---------- Top bar ---------- */
.topbar { background: #070a0e; border-bottom: 1px solid var(--border); font-size: .85rem; }
.topbar .container { padding-top: .55rem; padding-bottom: .55rem; }
.topbar-info { display: flex; gap: 1.6rem; align-items: center; flex-wrap: wrap; }
.topbar-info a, .topbar-info span { color: var(--muted); }
.topbar-info a:hover { color: #fff; }
.topbar-info i { color: var(--red); margin-right: .35rem; }
.topbar-socials { display: flex; gap: .35rem; }
.topbar-socials a {
    width: 30px; height: 30px; display: grid; place-items: center; color: var(--muted);
    border: 1px solid var(--border); transition: all .25s var(--ease);
}
.topbar-socials a:hover { color: #fff; background: var(--red); border-color: var(--red); }

/* ---------- Navbar ---------- */
.site-nav {
    position: sticky; top: 0; z-index: 1030;
    background: rgba(10, 12, 16, .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: .55rem 0; min-height: var(--nav-h);
    transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-nav--overlay { position: absolute; top: auto; left: 0; right: 0; background: transparent; border-bottom-color: transparent; backdrop-filter: none; }
.site-nav--overlay.scrolled {
    position: fixed; top: 0; background: rgba(10, 12, 16, .96); backdrop-filter: blur(10px);
    border-bottom-color: var(--border); box-shadow: var(--shadow-sm);
    animation: navDrop .4s var(--ease);
}
@keyframes navDrop { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.brand-logo {
    height: 42px; width: auto;
    /* glow so the dark logo separates from the dark header */
    filter:
        drop-shadow(0 0 1px rgba(255, 255, 255, .95))
        drop-shadow(0 0 4px rgba(255, 255, 255, .55))
        drop-shadow(0 0 14px rgba(212, 17, 31, .75));
}
@media (max-width: 575.98px) { .brand-logo { height: 34px; } }

.site-nav .nav-link {
    font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em;
    font-size: .92rem; color: #cfd4dd !important; padding: .6rem 1rem !important;
    position: relative;
}
.site-nav .nav-link::after {
    content: ""; position: absolute; left: 1rem; right: 1rem; bottom: .35rem; height: 2px;
    background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.site-nav .nav-link:hover, .site-nav .nav-link.active { color: #fff !important; }
.site-nav .nav-link:hover::after, .site-nav .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler { border: 1px solid var(--border-2); padding: .4rem .55rem; border-radius: var(--radius); }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .3s var(--ease); }

@media (max-width: 991.98px) {
    .site-nav { background: rgba(10, 12, 16, .98); }
    .navbar-collapse {
        background: var(--bg-1); margin-top: .75rem; padding: 1rem;
        border: 1px solid var(--border); border-radius: var(--radius);
    }
    .site-nav .nav-link::after { display: none; }
    .site-nav .nav-link.active { color: var(--red) !important; }
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: calc(var(--nav-h) + 3rem) 0 4rem;
    background: radial-gradient(120% 120% at 75% 30%, #1a1f2b 0%, var(--bg) 60%);
    overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
    position: absolute; right: -4%; bottom: 0; height: 100%; width: auto; max-width: none;
    object-fit: cover; transform: scaleX(-1); /* operator faces the copy */
    filter: contrast(1.05) brightness(.92);
}
.hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(90deg, var(--bg) 18%, rgba(10,12,16,.82) 42%, rgba(10,12,16,.25) 70%, rgba(10,12,16,.6) 100%),
        linear-gradient(0deg, var(--bg) 2%, transparent 32%);
}
.hero__overlay::after { /* red diagonal accent */
    content: ""; position: absolute; top: 0; bottom: 0; left: 58%; width: 2px;
    background: linear-gradient(180deg, transparent, var(--red), transparent);
    transform: skewX(-12deg); opacity: .5;
}
.hero .container { position: relative; z-index: 2; }
.hero__content { max-width: 660px; }
.hero__title {
    font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 700; text-transform: uppercase;
    line-height: 1.02; color: #fff; margin-bottom: 1.2rem;
    text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.hero__title .accent { color: var(--red); display: inline-block; }
.hero__subtitle { font-size: 1.18rem; color: var(--text); max-width: 54ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; }
.hero__badge { display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; color: #e8ebf0; }
.hero__badge i { color: var(--red); font-size: 1.15rem; }

.hero__scroll {
    position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%); z-index: 2;
    color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .25em;
    display: grid; justify-items: center; gap: .4rem; animation: bob 2s infinite;
}
.hero__scroll i { font-size: 1.2rem; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

@media (max-width: 991.98px) {
    .hero { min-height: auto; padding: calc(var(--nav-h) + 4rem) 0 4rem; text-align: left; }
    .hero__media img { right: -30%; opacity: .35; }
    .hero__overlay { background: linear-gradient(90deg, var(--bg) 30%, rgba(10,12,16,.7) 100%), linear-gradient(0deg, var(--bg), transparent 40%); }
    .hero__scroll { display: none; }
}

/* =================================================================
   STATS
   ================================================================= */
.stats { background: var(--bg-1); border-top: 3px solid var(--red); position: relative; }
.stat { text-align: center; padding: 2.4rem 1rem; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 25%; bottom: 25%; width: 1px; background: var(--border); }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.6rem); color: #fff; line-height: 1; }
.stat__num .suffix { color: var(--red); }
.stat__label { text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; color: var(--muted); margin-top: .6rem; font-family: var(--font-head); }
@media (max-width: 767.98px) { .stat + .stat:nth-child(odd)::before { display: none; } }

/* =================================================================
   SPLIT (image + text)
   ================================================================= */
.feature-img { position: relative; }
.feature-img img { width: 100%; object-fit: cover; }
.feature-img--framed::before {
    content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--red);
    z-index: -1; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}
.feature-img .badge-float {
    position: absolute; left: -10px; bottom: 24px; background: var(--red); color: #fff;
    padding: 1rem 1.4rem; font-family: var(--font-head); text-transform: uppercase;
    box-shadow: var(--shadow); clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
}
.badge-float .num { font-size: 2.2rem; font-weight: 700; line-height: 1; display: block; }
.badge-float .lbl { font-size: .72rem; letter-spacing: .14em; }

.check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.check-list li { position: relative; padding: .35rem 0 .35rem 2rem; color: var(--text); }
.check-list li::before {
    content: "\F26E"; font-family: "bootstrap-icons"; position: absolute; left: 0; top: .35rem;
    color: var(--red); font-weight: bold;
}

/* =================================================================
   SERVICE CARDS
   ================================================================= */
.service-card {
    background: var(--surface); border: 1px solid var(--border); height: 100%;
    padding: 2.2rem 1.8rem; position: relative; overflow: hidden;
    transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}
.service-card::before {
    content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
    background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); border-color: var(--red); background: var(--surface-2); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
    width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 1.3rem;
    background: var(--red-soft); color: var(--red); font-size: 1.8rem;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all .35s var(--ease);
}
.service-card:hover .service-card__icon { background: var(--red); color: #fff; transform: rotate(-4deg); }
.service-card__title { font-size: 1.22rem; text-transform: uppercase; letter-spacing: .02em; margin-bottom: .6rem; }
.service-card__text { color: var(--muted); font-size: .96rem; margin: 0; }
.service-card__num {
    position: absolute; right: 1rem; top: .6rem; font-family: var(--font-head); font-weight: 700;
    font-size: 2.6rem; color: rgba(255,255,255,.04); line-height: 1;
}
.service-card .more { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; opacity: 0; transform: translateX(-6px); transition: all .35s var(--ease); }
.service-card:hover .more { opacity: 1; transform: translateX(0); }

/* =================================================================
   WHY CHOOSE
   ================================================================= */
.why-card {
    display: flex; gap: 1.1rem; padding: 1.6rem; background: var(--surface);
    border: 1px solid var(--border); border-left: 3px solid var(--red); height: 100%;
    transition: transform .3s var(--ease), background .3s var(--ease);
}
.why-card:hover { transform: translateY(-5px); background: var(--surface-2); }
.why-card__icon { flex: 0 0 auto; font-size: 1.7rem; color: var(--red); }
.why-card h3 { font-size: 1.1rem; text-transform: uppercase; margin-bottom: .35rem; }
.why-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* =================================================================
   WORKFLOW
   ================================================================= */
.workflow { position: relative; }
.wf-step { text-align: center; padding: 1rem; position: relative; }
.wf-step__node {
    width: 90px; height: 90px; margin: 0 auto 1.4rem; position: relative;
    display: grid; place-items: center; border: 2px solid var(--red); border-radius: 50%;
    background: var(--bg-1); font-size: 2rem; color: var(--red); z-index: 2;
}
.wf-step__no {
    position: absolute; top: -10px; right: calc(50% - 62px);
    font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: #fff;
    background: var(--red); width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
}
.wf-step h3 { font-size: 1.2rem; text-transform: uppercase; }
.wf-step p { color: var(--muted); font-size: .95rem; }
/* connector line on desktop */
.workflow .wf-row { position: relative; }
.workflow .wf-row::before {
    content: ""; position: absolute; top: 45px; left: 16%; right: 16%; height: 2px;
    background: linear-gradient(90deg, var(--red), rgba(212,17,31,.25)); z-index: 0;
}
@media (max-width: 767.98px) { .workflow .wf-row::before { display: none; } }

/* =================================================================
   VISION / MISSION
   ================================================================= */
.vm-card {
    background: var(--surface); border: 1px solid var(--border); padding: 2.5rem; height: 100%;
    position: relative; overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}
.vm-card::after { content: ""; position: absolute; top: 0; right: 0; border-width: 0 46px 46px 0; border-style: solid; border-color: transparent var(--red) transparent transparent; }
.vm-card__icon { font-size: 2.4rem; color: var(--red); margin-bottom: 1rem; }
.vm-card h3 { font-size: 1.6rem; text-transform: uppercase; }
.vm-card p { color: var(--muted); margin-bottom: 1rem; }
.vm-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .2rem; }

/* =================================================================
   COMPANY CREDENTIALS
   ================================================================= */
.cred-box { background: var(--bg-2); border: 1px solid var(--border); padding: 1.6rem; text-align: center; height: 100%; }
.cred-box__label { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; color: var(--muted); font-family: var(--font-head); }
.cred-box__value { font-family: var(--font-head); font-size: 1.25rem; color: #fff; margin-top: .3rem; word-break: break-word; }
.accredited-seal {
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    width: 170px; height: 170px; border-radius: 50%; border: 2px dashed var(--red);
    color: #fff; text-align: center; padding: 1rem; font-family: var(--font-head); text-transform: uppercase;
    letter-spacing: .08em; font-size: .82rem; background: var(--red-soft);
}
.accredited-seal i { font-size: 2rem; color: var(--red); margin-bottom: .4rem; }

/* =================================================================
   PAGE HERO (inner pages)
   ================================================================= */
.page-hero {
    position: relative; padding: calc(var(--nav-h) + 4.5rem) 0 3.5rem;
    background-color: var(--bg);
    background-position: center; background-size: cover;
    background-repeat: no-repeat; background-attachment: fixed;
    overflow: hidden;
}
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,12,16,.86), rgba(10,12,16,.92)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero__title { font-size: clamp(2.2rem, 5vw, 3.6rem); text-transform: uppercase; font-weight: 700; }
.page-hero__subtitle { color: var(--muted); font-size: 1.1rem; max-width: 60ch; }
.qrf-breadcrumb { --bs-breadcrumb-divider-color: var(--muted-2); margin: .6rem 0 0; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; }
.qrf-breadcrumb .breadcrumb-item a { color: var(--muted); }
.qrf-breadcrumb .breadcrumb-item.active { color: var(--red); }
.qrf-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--muted-2); }
@media (max-width: 991.98px) { .page-hero { background-attachment: scroll; } }

/* =================================================================
   GALLERY
   ================================================================= */
.gallery-filter { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.gallery-filter button {
    font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem;
    background: transparent; color: var(--muted); border: 1px solid var(--border); padding: .5rem 1.2rem;
    cursor: pointer; transition: all .25s var(--ease);
}
.gallery-filter button:hover { color: #fff; border-color: var(--border-2); }
.gallery-filter button.active { background: var(--red); color: #fff; border-color: var(--red); }

.gallery-item { position: relative; overflow: hidden; cursor: pointer; clip-path: polygon(0 0,100% 0,100% calc(100% - 14px),calc(100% - 14px) 100%,0 100%); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .6s var(--ease); }
.gallery-item__overlay {
    position: absolute; inset: 0; background: linear-gradient(0deg, rgba(212,17,31,.85), rgba(10,12,16,.2));
    display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
    opacity: 0; transition: opacity .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay h3 { font-size: 1.15rem; text-transform: uppercase; margin: 0; color: #fff; }
.gallery-item__overlay .zoom { position: absolute; top: 1.2rem; right: 1.2rem; width: 42px; height: 42px; display: grid; place-items: center; background: rgba(0,0,0,.4); color: #fff; font-size: 1.2rem; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(6,8,11,.95); display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; box-shadow: var(--shadow); border: 1px solid var(--border-2); }
.lightbox__close, .lightbox__nav { position: absolute; background: var(--red); color: #fff; border: 0; width: 50px; height: 50px; font-size: 1.4rem; cursor: pointer; display: grid; place-items: center; transition: background .25s var(--ease); }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--red-bright); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: 1.5rem; }
.lightbox__nav.next { right: 1.5rem; }
.lightbox__caption { position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em; }

/* =================================================================
   CONTACT
   ================================================================= */
.contact-form { background: var(--surface); border: 1px solid var(--border); padding: clamp(1.6rem, 4vw, 2.6rem); }
.form-label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; color: var(--text); margin-bottom: .4rem; }
.form-control, .form-select {
    background: var(--bg-1); border: 1px solid var(--border-2); color: #fff; border-radius: 0;
    padding: .8rem 1rem; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form-control::placeholder { color: var(--muted-2); }
.form-control:focus, .form-select:focus {
    background: var(--bg-1); color: #fff; border-color: var(--red);
    box-shadow: 0 0 0 .2rem var(--red-soft);
}
.form-select option { background: var(--bg-1); }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.info-card { background: var(--surface); border: 1px solid var(--border); padding: 2rem; height: 100%; }
.info-card h3 { text-transform: uppercase; font-size: 1.2rem; }
.contact-line { display: flex; gap: 1rem; align-items: flex-start; padding: .8rem 0; border-bottom: 1px solid var(--border); }
.contact-line:last-child { border-bottom: 0; }
.contact-line__icon { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; background: var(--red-soft); color: var(--red); font-size: 1.1rem; }
.contact-line a { color: var(--text); }
.contact-line a:hover { color: var(--red); }
.contact-line .label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: .76rem; color: var(--muted); }

.person-card { background: var(--bg-2); border: 1px solid var(--border); padding: 1.2rem 1.4rem; transition: border-color .3s var(--ease); }
.person-card:hover { border-color: var(--red); }
.person-card .name { font-family: var(--font-head); text-transform: uppercase; color: #fff; font-size: 1.05rem; }
.person-card a { display: block; color: var(--muted); font-size: .92rem; }
.person-card a:hover { color: var(--red); }

.map-wrap { position: relative; border: 1px solid var(--border); line-height: 0; }
.map-wrap iframe { width: 100%; height: 420px; filter: grayscale(1) invert(.9) contrast(.85); transition: filter .4s var(--ease); }
.map-wrap:hover iframe { filter: grayscale(0) invert(0) contrast(1); }

.alert-qrf { border-radius: 0; border: 0; border-left: 4px solid; font-size: .95rem; }
.alert-qrf.alert-success { background: rgba(40,167,69,.12); border-color: #28a745; color: #b6f0c4; }
.alert-qrf.alert-danger { background: var(--red-soft); border-color: var(--red); color: #ffc7cc; }

/* =================================================================
   CTA BAND
   ================================================================= */
.cta-band { position: relative; padding: clamp(3rem, 6vw, 5rem) 0; background: var(--red-dark); overflow: hidden; }
.cta-band__overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(10,12,16,.92), rgba(158,12,22,.75)), url('../img/texture.jpg') center/cover; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band__title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); text-transform: uppercase; color: #fff; }
.cta-band__text { color: rgba(255,255,255,.85); margin-top: .5rem; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: #070a0e; border-top: 1px solid var(--border); padding-top: clamp(3rem,5vw,4.5rem); }
.footer-logo {
    height: 46px;
    filter:
        drop-shadow(0 0 1px rgba(255, 255, 255, .95))
        drop-shadow(0 0 5px rgba(255, 255, 255, .5))
        drop-shadow(0 0 16px rgba(212, 17, 31, .7));
}
.footer-blurb { color: var(--muted); font-size: .94rem; max-width: 36ch; }
.footer-socials { display: flex; gap: .5rem; margin-top: 1.2rem; }
.footer-socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--border); color: var(--muted); transition: all .25s var(--ease); }
.footer-socials a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }
.footer-heading { font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; color: #fff; position: relative; padding-bottom: .6rem; margin-bottom: 1.2rem; }
.footer-heading::after { content: ""; position: absolute; left: 0; bottom: 0; width: 32px; height: 2px; background: var(--red); }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: var(--muted); transition: all .25s var(--ease); display: inline-block; }
.footer-links a:hover { color: #fff; transform: translateX(4px); }
.footer-contact li { color: var(--muted); margin-bottom: .7rem; font-size: .92rem; display: flex; gap: .6rem; }
.footer-contact i { color: var(--red); }
.footer-contact a { color: var(--muted); }
.footer-contact a:hover { color: #fff; }
.footer-credentials { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: .85rem; color: var(--muted); }
.footer-credentials i { color: var(--red); margin-right: .35rem; }
.footer-bottom { margin-top: 2rem; padding: 1.2rem 0; background: #050709; font-size: .85rem; color: var(--muted-2); }
.footer-motto { font-style: italic; color: var(--gold); }

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 1040;
    width: 48px; height: 48px; background: var(--red); color: #fff; border: 0; font-size: 1.2rem;
    display: grid; place-items: center; cursor: pointer; opacity: 0; visibility: hidden;
    transform: translateY(12px); transition: all .3s var(--ease);
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--red-bright); }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

/* =================================================================
   CCTV PROMO BAND (home) + OFFER STRIP
   ================================================================= */
.promo-cctv {
    position: relative; padding: clamp(3.5rem, 7vw, 6rem) 0;
    background-position: center; background-size: cover; background-repeat: no-repeat;
    overflow: hidden; border-top: 3px solid var(--red);
}
.promo-cctv__overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8,10,14,.96) 30%, rgba(8,10,14,.78) 55%, rgba(158,12,22,.55) 100%); }
.promo-cctv .container { position: relative; z-index: 1; }
.promo-cctv__title { font-size: clamp(2rem, 4.6vw, 3.4rem); text-transform: uppercase; color: #fff; line-height: 1.05; }
.promo-cctv__title .accent { color: var(--red); }
.promo-cctv__text { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 60ch; }
.promo-cctv__list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; margin: 1.3rem 0 2rem; }
.promo-cctv__list li { color: #fff; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-size: .85rem; }
.promo-cctv__list i { color: var(--red); margin-right: .45rem; }

.offer-strip {
    background: var(--red); color: #fff; padding: 1.6rem 2rem; position: relative; overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}
.offer-strip h3 { color: #fff; text-transform: uppercase; margin: 0; font-size: clamp(1.3rem, 2.6vw, 1.9rem); }
.offer-strip p { color: rgba(255,255,255,.9); margin: .3rem 0 0; }
.offer-strip .btn-ghost { box-shadow: inset 0 0 0 2px rgba(255,255,255,.8); color: #fff; }
.offer-strip .btn-ghost:hover { background: #fff; color: var(--red); box-shadow: inset 0 0 0 2px #fff; }

/* =================================================================
   RENTAL PRICING CARDS
   ================================================================= */
.price-card {
    background: var(--surface); border: 1px solid var(--border); padding: 2rem 1.8rem; height: 100%;
    position: relative; transition: transform .3s var(--ease), border-color .3s var(--ease);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}
.price-card:hover { transform: translateY(-6px); border-color: var(--red); }
.price-card.is-featured { border-color: var(--red); background: var(--surface-2); box-shadow: var(--shadow-sm); }
.price-card__tag { position: absolute; top: 0; right: 0; background: var(--red); color: #fff; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; padding: .4rem .9rem; }
.price-card__name { font-family: var(--font-head); text-transform: uppercase; font-size: 1.6rem; color: #fff; margin-bottom: .15rem; }
.price-card__blurb { color: var(--muted); font-size: .92rem; margin-bottom: 1.2rem; }
.price-card__price { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; color: #fff; font-size: 1.05rem; padding-bottom: 1.1rem; margin-bottom: 1.1rem; border-bottom: 1px solid var(--border); }
.price-card__price .poa { color: var(--red); }
.price-card .check-list { margin-top: 0; margin-bottom: 1.5rem; }

/* accreditation strip */
.finance-note { color: var(--muted-2); font-size: .85rem; }
