/* ========================================
   INTELLIGENCE PAGE — STYLES
   Inherits variables from home.css via base.html
   ======================================== */

/* ========================================
   HEADER (reuse from home.css — already loaded)
   ======================================== */

/* ========================================
   HERO
   ======================================== */

.intel-hero {
    min-height: 100vh;
    background-color: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Subtle grid background */
.intel-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79, 179, 191, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 179, 191, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Animated scan line */
.scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(79, 179, 191, 0.4), transparent);
    animation: scan 6s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0%   { top: 0%; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(79, 179, 191, 0.15);
    border: 1px solid rgba(79, 179, 191, 0.4);
    color: var(--turquoise);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.intel-title {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--white);
}

.intel-title .highlight {
    color: var(--electric-yellow);
}

.intel-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    margin-bottom: 45px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 13px 30px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--electric-yellow);
    color: var(--electric-yellow);
    transform: translateY(-2px);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.intel-services {
    padding: 100px 0;
    background-color: var(--light-grey);
}

.services-columns {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 0;
    margin-bottom: 60px;
}

.service-column {
    padding: 0 20px;
}

.column-divider {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.column-divider::after {
    content: '';
    display: block;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--navy), transparent);
    opacity: 0.15;
    margin: 40px 0;
}

.column-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid transparent;
}

.column-header.security {
    border-color: var(--turquoise);
}

.column-header.intelligence {
    border-color: var(--electric-yellow);
}

.column-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.security .column-icon {
    background-color: rgba(79, 179, 191, 0.12);
    color: var(--turquoise);
}

.intelligence .column-icon {
    background-color: rgba(255, 214, 10, 0.12);
    color: var(--electric-yellow);
}

.column-header h2 {
    font-size: 1.6rem;
    color: var(--navy);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.column-tagline {
    color: var(--text-grey);
    font-size: 0.95rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intel-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.service-column:first-child .intel-card {
    border-left-color: var(--turquoise);
}

.service-column:last-child .intel-card {
    border-left-color: var(--electric-yellow);
}

.intel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.intel-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.intel-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-grey);
    background-color: var(--light-grey);
    padding: 4px 12px;
    border-radius: 20px;
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
    background-color: var(--navy);
    border-radius: 20px;
    padding: 45px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-text p {
    color: rgba(255,255,255,0.7);
    max-width: 480px;
}

/* ========================================
   HOW IT WORKS
   ======================================== */

.how-it-works {
    padding: 100px 0;
    background-color: var(--white);
}

.steps-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 50px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: var(--electric-yellow);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.9;
}

.step h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.step p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--turquoise);
    margin-top: 35px;
    flex-shrink: 0;
    opacity: 0.6;
}

/* ========================================
   MODAL — REPORT FORM
   ======================================== */

.report-type-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.report-option {
    cursor: pointer;
    display: flex;
    align-items: stretch;
}

.report-option input[type="radio"] {
    display: none;
}

.option-box {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 16px 20px;
    border: 2px solid #ddd;
    border-radius: 12px;
    width: 100%;
    transition: all 0.2s ease;
}

.report-option input[type="radio"]:checked + .option-box {
    border-color: var(--navy);
    background-color: rgba(30, 58, 95, 0.04);
}

.option-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
}

.option-desc {
    color: var(--text-grey);
    font-size: 0.82rem;
}

.modal-microcopy {
    text-align: center;
    color: var(--text-grey);
    font-size: 0.8rem;
    margin-top: 14px;
    font-style: italic;
}

.success-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(79, 179, 191, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--turquoise);
    margin: 0 auto 20px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 968px) {
    .intel-title { font-size: 2.4rem; }

    .services-columns {
        grid-template-columns: 1fr;
    }

    .column-divider {
        height: 1px;
        width: 100%;
    }

    .column-divider::after {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .steps-row {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
}

@media (max-width: 600px) {
    .intel-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .nav { display: none; }
}
