:root{
--bg:#ffffff;
--accent:#287724;
--accent-2:#6fb16c;
--muted:#6b6b6b;
--dark:#287724;
--max-width:1100px;
}

/* Reset & base */
*{ box-sizing:border-box }

html, body{
height:100%;
}

body{
margin:0;
font-family:'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
color:#17202a;
-webkit-font-smoothing:antialiased;

display:flex;
flex-direction:column;
min-height:100vh;
}

/* Fixed SVG watermark */
body::after{
content:"";
position:fixed;
inset:0;
background-image:url("rfid_watermark.svg");
background-repeat:no-repeat;
background-position:center bottom;
background-size:600px auto;
opacity:0.04;
pointer-events:none;
z-index:0;
}

/* Brand-highlighted 24·7 text */
/* Brand-highlighted 24·7 text */
.brand-247 {
    background: linear-gradient(
        90deg,
        var(--accent),
        var(--accent-2)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Black dot in 24·7 */
.brand-247 .brand-dot {
    -webkit-text-fill-color: #000;
    color: #000;
    background: none;
}

.site-header,
main,
.site-footer{
position:relative;
z-index:1;
}

main{
flex:1 0 auto;
padding-bottom: 72px;
}

.container{
width:90%;
max-width:var(--max-width);
margin:0 auto;
}

/* Header */
.site-header{
position:sticky;
top:0;
background:rgba(255,255,255,0.98);
backdrop-filter:saturate(120%) blur(4px);
box-shadow:0 6px 18px rgba(11,31,51,0.06);
z-index:60;
}

.header-inner{
display:flex;
align-items:center;
height:64px;
gap:16px;
}

.brand{
display:flex;
align-items:center;
}

.brand img{
height:36px;
width:auto;
}

/* Buttons */
.btn{
display:inline-block;
text-decoration:none;
font-weight:500;
}

.btn-solid{
margin-left:auto;
background:var(--dark);
color:#e0e0e0;
padding:8px 14px;
border-radius:8px;
}

.btn-outline{
border:1px solid var(--dark);
color:var(--dark);
padding:8px 12px;
border-radius:8px;
}

.btn.large{
padding:12px 18px;
font-size:16px;
}

/* Hero */
.hero{
padding:56px 0;
background:linear-gradient(135deg,#eaf6ee 0%, #f7faf7 100%);
}

.hero-inner{
display:flex;
align-items:center;
gap:28px;
}

.hero-copy{ flex:1 }

.hero h1{
font-size:32px;
margin:0 0 12px;
}

.lead{
color:var(--muted);
font-size:16px;
margin:0 0 18px;
}

.hero-ctas{
display:flex;
gap:12px;
}

.hero-visual{
    width:320px;
    flex-shrink:0;
}
.hero-icon {
    width: 280px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Panels */
.panel{ padding:24px 0 }
.alt{ background:#fbfcfd }

.grid{
display:grid;
grid-template-columns:1fr 320px;
gap:28px;
}

/* Footer — fixed / sticky */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0b1f33;
    color: rgba(255,255,255,0.85);
    z-index: 50;
}

.footer-inner {
    width: 100%;
    padding: 18px 24px;
    text-align: center;
    font-size: 14px;
}

/* Footer links */
.site-footer a {
    color: var(--accent-2); /* light green from your brand palette */
    text-decoration: underline; /* optional for clarity */
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--accent); /* darker green on hover */
}

/* Responsive */
@media(max-width:900px){
.grid{ grid-template-columns:1fr }
.hero-inner{ flex-direction:column; text-align:center }
.hero-visual{ width:260px }
}

/* ---------- Contact Form ---------- */

form {
    margin-top: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

input,
textarea {
    font-family: inherit;
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e1e5ea;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    grid-column: 1 / -1;
}

input::placeholder,
textarea::placeholder {
    color: #9aa3ad;
}

/* Focus state */
input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-2);
    box-shadow: 0 0 0 3px rgba(111, 177, 108, 0.18);
}

/* Textarea spacing */
textarea {
    resize: vertical;
    min-height: 140px;
}

/* Form container (card look) */
.contact-panel,
form {
    background: #ffffff;
    border-radius: 16px;
}

/* CTA alignment */
.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Button polish */
.form-actions .btn {
    min-width: 160px;
    box-shadow: 0 8px 20px rgba(11, 31, 51, 0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.form-actions .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(11, 31, 51, 0.22);
}

/* reCAPTCHA spacing */
.g-recaptcha {
    transform: scale(0.95);
    transform-origin: left center;
}

/* Mobile */
@media (max-width: 720px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        justify-content: stretch;
    }

    .form-actions .btn {
        width: 100%;
    }
}

/* -------- Cookie Consent (Full-width, floating above footer) -------- */

.cookie-notice {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 84px; /* floats above footer */
    z-index: 9999;

    display: none;

    background: rgba(11, 31, 51, 0.98);
    color: rgba(255,255,255,0.9);
    padding: 18px 22px;
    border-radius: 16px;

    box-shadow: 0 14px 36px rgba(0,0,0,0.28);

    font-size: 14px;
    line-height: 1.5;
}

.cookie-notice p {
    margin: 0 0 12px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Buttons stay compact */
.cookie-notice .btn {
    font-size: 13px;
    padding: 8px 14px;
}

/* Mobile refinement */
@media (max-width: 720px) {
    .cookie-notice {
        left: 12px;
        right: 12px;
        bottom: 72px;
        padding: 16px 18px;
    }
}

.cookie-notice .btn {
    box-shadow: none;
}