/* --- Base Variables & Resets --- */
:root {
    --primary: #0a192f;      /* Deep Law Enforcement Navy */
    --secondary: #172a45;    /* Dark Slate */
    --accent: #2563eb;       /* Police Blue Accent */
    --accent-hover: #1d4ed8; 
    --light-bg: #f8fafc;     /* Clean Soft White */
    --text-dark: #0f172a;    /* Charcoal Text */
    --text-light: #64748b;   /* Slate Muted Text */
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 32px;
}

/* --- Utilities & Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* --- Compliance Top Banner --- */
.compliance-banner {
    background-color: #1e293b;
    color: #cbd5e1;
    font-size: 13px;
    text-align: center;
    padding: 8px 16px;
    letter-spacing: 0.5px;
}

/* --- Navigation Header --- */
.main-header {
    background-color: var(--primary);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--accent);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--white);
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--white);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 100px 0 120px;
    text-align: center;
}

.hero-container {
    max-width: 800px;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* --- Solutions Section --- */
.solutions-section {
    padding: 90px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    font-size: 16px;
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background-color: var(--light-bg);
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.card-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.card p {
    color: var(--text-light);
    font-size: 15px;
}

/* --- Security / Compliance Section --- */
.compliance-section {
    background-color: var(--light-bg);
    padding: 90px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.compliance-text {
    flex: 1;
}

.compliance-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.compliance-text p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.compliance-list {
    list-style: none;
}

.compliance-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.compliance-list li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.compliance-graphic {
    flex: 1;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.badge-box {
    background-color: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 4px solid var(--accent);
    width: 160px;
}

/* --- Procurement --- */
.procurement-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.procurement-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.procurement-section p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

/* --- Contact Section --- */
.contact-section {
    background-color: var(--secondary);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-section p {
    color: #94a3b8;
    margin-bottom: 32px;
}

.email-box {
    margin-bottom: 32px;
}

.email-link {
    font-size: 28px;
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 8px;
}

.email-link:hover {
    color: var(--accent);
}

.support-notice {
    display: block;
    font-size: 14px;
    color: #cbd5e1;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--primary);
    color: #64748b;
    padding: 40px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.footer-nav a:hover {
    color: var(--white);
}

/* --- Legal / Privacy Page --- */
.legal-page {
    background-color: var(--white);
    padding: 60px 0 90px;
}

.legal-container {
    max-width: 800px;
}

.legal-container h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.legal-updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 32px;
}

.legal-intro {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 36px;
}

.legal-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.legal-section h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 0 8px;
}

.legal-section p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 15px;
}

.legal-section ul {
    color: var(--text-light);
    font-size: 15px;
    margin: 0 0 12px 1.25rem;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--accent);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .split-container {
        flex-direction: column;
        gap: 40px;
    }
    .compliance-graphic {
        width: 100%;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

.email-box {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Soft border radius matching standard tech badges */
    border-radius: 8px; 
    overflow: hidden;
    /* subtle shadow to lift the security asset from the flat background */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3); 
    display: inline-flex; /* Keeps container tight to image width */
    margin: 0 auto 32px auto; /* Centers the inline-flex item */
}

.email-image {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain; 
    /* Slightly wider footprint to allow the shield graphics to look prominent */
    width: 420px; 
    /* Keeps text elements sharp on high-DPI smartphone/tablet screens */
    image-rendering: -webkit-optimize-contrast;
}
