/* RacterGroup — Private Investigators */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #0f172a;
    --navy-light: #1e293b;
    --blue: #2563eb;
    --blue-hover: #1d4ed8;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #334155;
    line-height: 1.6;
    background: var(--white);
}

a { color: var(--blue); text-decoration: none; }

/* Privacy Banner */
.privacy-banner {
    background: var(--navy-light);
    color: var(--gray-400);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* Navigation */
.site-nav {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    height: 64px;
    gap: 1rem;
}
.nav-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--blue);
}
.nav-phone {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-left: auto;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 2rem;
}
.nav-links a { color: var(--white); font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--blue); }
.nav-cta {
    background: var(--blue) !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
}
.nav-cta:hover { background: var(--blue-hover) !important; }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: transform 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0.75rem;
        border-top: 1px solid var(--navy-light);
    }
    .nav-links.open { display: flex; }
    .nav-phone { margin-left: auto; margin-right: 1rem; }
}

/* Hero */
.hero {
    background: linear-gradient(rgba(15,23,42,0.88), rgba(15,23,42,0.88)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23111827" width="100" height="100"/></svg>');
    background-color: var(--navy);
    color: white;
    padding: 5rem 1.5rem;
    text-align: center;
}
.hero-content { max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; text-transform: uppercase; margin-bottom: 1rem; letter-spacing: -0.02em; }
.hero-subtitle { font-size: 1.3rem; color: #e2e8f0; margin-bottom: 0.75rem; }
.hero-desc { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; }
.hero-urgency { font-size: 0.9rem; color: #93c5fd; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s, transform 0.1s;
    text-align: center;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: var(--blue-hover); color: white; }
.btn-white { background: white; color: var(--navy); }
.btn-white:hover { background: var(--gray-100); color: var(--navy); }

/* Trust Bar */
.trust-bar { background: var(--navy-light); color: white; padding: 1.5rem; }
.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    text-align: center;
}
.trust-item strong { display: block; font-size: 0.95rem; }
.trust-item span { font-size: 0.8rem; color: var(--gray-400); }

/* Sections */
.section { padding: 4rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.section.bg-light { background: var(--gray-50); max-width: none; }
.section.bg-light > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section h2 { font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 0.5rem; text-transform: uppercase; color: var(--navy); }
.section-subtitle { text-align: center; color: var(--gray-600); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Cards */
.cards-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-top: 4px solid var(--blue);
}
.card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; color: var(--navy); }
.card ul { list-style: none; }
.card li { padding: 0.4rem 0; padding-left: 1.5rem; position: relative; color: var(--gray-600); }
.card li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.service-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--navy); }
.service-card p { font-size: 0.9rem; color: var(--gray-600); }

/* Process Steps */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; margin-bottom: 2rem; }
.step-num {
    width: 48px; height: 48px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 0.75rem;
}
.step h4 { font-weight: 700; margin-bottom: 0.4rem; color: var(--navy); }
.step p { font-size: 0.85rem; color: var(--gray-600); }
.center-cta { text-align: center; margin-top: 2rem; }

/* State Badges */
.state-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.badge {
    padding: 0.5rem 1.25rem;
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: var(--navy);
    color: white;
    padding: 4rem 1.5rem;
    text-align: center;
}
.cta-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; text-transform: uppercase; }
.cta-section p { color: #cbd5e1; font-size: 1.1rem; max-width: 700px; margin: 0 auto 2rem; }

/* Footer */
.site-footer { background: var(--navy); color: var(--gray-400); padding: 3rem 1.5rem 1.5rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.footer-grid h3 { color: var(--blue); font-size: 1.3rem; margin-bottom: 0.5rem; }
.footer-grid h4 { color: white; margin-bottom: 0.75rem; }
.footer-grid a, .footer-grid span { display: block; margin-bottom: 0.4rem; color: var(--gray-400); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--blue); }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid #334155; text-align: center; font-size: 0.8rem; }

/* Print */
@media print {
    .site-nav, .privacy-banner, .hamburger, .cta-section { display: none; }
    .hero { background: white; color: black; padding: 1rem; }
    .hero h1 { color: black; }
}
