/* ===========================
   OSINT CONTENT SECTIONS - TIGHT SPACING
   =========================== */

/* Global Tight Container */
.section-container-tight {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Legal & Ethical Framework */
.legal-framework-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.framework-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.framework-left {
    max-width: 900px;
}

.framework-heading {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.framework-heading::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: #B87333;
}

.framework-intro {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--charcoal);
    line-height: 1.4;
}

.framework-left p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--slate);
}

.framework-pillars {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #DADADA;
    border-left: 3px solid var(--black);
}

.framework-pillars strong {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.framework-pillars ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.framework-pillars li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--slate);
}

.framework-pillars li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--black);
}

.framework-statement {
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--black);
}

.framework-compliance {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #E8E8E8;
    border-left: 3px solid var(--black);
    color: var(--charcoal);
}

.framework-compliance strong {
    color: var(--black);
    font-weight: 700;
}

.framework-right {
    display: none;
}

/* OSINT Capabilities */
.osint-capabilities-section {
    padding: 5rem 0;
    background: #D0D0D0;
}

.capabilities-heading {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    text-align: left;
    position: relative;
    display: inline-block;
}

.capabilities-heading::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: #B87333;
}

.capabilities-intro {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 3rem;
    max-width: 900px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.capability-card {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-left: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.capability-card:hover {
    border-left-color: var(--black);
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.capability-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.capability-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--slate);
    margin-bottom: 0.75rem;
}

.capability-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.capability-list li {
    font-size: 0.85rem;
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--slate);
    line-height: 1.5;
}

.capability-list li::before {
    content: '·';
    position: absolute;
    left: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.data-note {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--charcoal);
    margin-top: 1rem;
}

/* Actionable Intelligence Section */
.actionable-intelligence-section {
    padding: 3.5rem 3rem;
    background: #1a1a1a;
    color: var(--white);
    text-align: center;
}

.intelligence-container {
    max-width: 1000px;
    margin: 0 auto;
}

.actionable-intelligence-section h2 {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.intelligence-statement {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.intelligence-pillars {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.pillar {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.intelligence-conclusion {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2rem;
}

/* Why Paradox Index */
.why-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.why-left h2 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.why-statement {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}

.why-tagline {
    font-size: 1rem;
    margin-top: 1.5rem;
}

.why-intro {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
}

.why-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.why-list li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--slate);
    line-height: 1.5;
}

.why-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.why-approach {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate);
    margin-top: 1.5rem;
}

/* Transparent Engagement Structure */
.engagement-structure-section {
    padding: 5rem 4rem;
    background: #FFFFFF;
}

.structure-container {
    max-width: 900px;
    margin: 0 auto;
}

.structure-container h2 {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.structure-intro {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}

.structure-container p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate);
    margin-bottom: 1rem;
}

.elimination-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--white);
    border-left: 3px solid var(--black);
}

.elimination-list li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--slate);
}

.elimination-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--black);
    font-size: 1.2rem;
}

.structure-conclusion {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    color: var(--black);
}

/* Responsive */
@media (max-width: 1024px) {
    .framework-container,
    .why-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .framework-right {
        min-height: 250px;
    }

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

/* ===========================
   LEGAL PAGES STYLES
   =========================== */

.legal-info-box {
    background: #f8f8f8;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--black);
}

.legal-info-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-list li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 0.5rem;
}

.legal-list li strong {
    color: var(--black);
    font-weight: 600;
}

.legal-statement {
    margin-top: 3rem;
}

.legal-statement h3,
.legal-statement h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--black);
}

.legal-statement p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--slate);
}

.entity-box {
    background: #f8f8f8;
    padding: 2.5rem;
    border-left: 3px solid var(--black);
}

.entity-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.entity-box p,
.entity-box ul {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate);
}

.entity-box a {
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--black);
}

.entity-box a:hover {
    opacity: 0.7;
}

.disclaimer-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    color: var(--black);
}

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--slate);
}

/* ===========================
   PROFESSIONAL LICENSURE
   =========================== */

.licensure-content {
    max-width: 900px;
}

.licensure-intro {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--charcoal);
    line-height: 1.4;
}

.license-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.license-primary {
    background: #D0D0D0;
    padding: 2.5rem;
    border-left: 4px solid var(--black);
}

.license-primary h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--black);
    letter-spacing: -0.01em;
}

.license-primary p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.license-primary p strong {
    color: var(--black);
    font-weight: 700;
}

.license-authority {
    padding: 2.5rem 0;
}

.license-authority p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: var(--slate);
}

.license-authority p strong {
    color: var(--black);
    font-weight: 700;
}

.multi-state {
    font-weight: 600;
    color: var(--charcoal);
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .license-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* Founder Page Styles */
.spec-box,
.client-box {
    background: #f8f8f8;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--black);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spec-box:hover,
.client-box:hover {
    transform: translateX(5px);
    background: #f0f0f0;
}

.spec-box h3,
.client-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.spec-box p,
.client-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate);
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 2.5rem 0 0.75rem;
    color: var(--black);
}

.philosophy-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--slate);
}

.vault-content {
    background: #f8f8f8;
    padding: 3rem;
    border-left: 3px solid var(--black);
}

.vault-intro {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.vault-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.vault-list li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.vault-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: 700;
}

.vault-cta,
.founder-cta {
    margin-top: 2rem;
    text-align: center;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0 0.5rem;
}

.cta-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-secondary:hover {
    background: var(--black);
    color: var(--white);
}

.client-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.positioning-statement {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f8f8;
    border-left: 3px solid var(--black);
    color: var(--black);
}

.contact-cta-content {
    background: #f8f8f8;
    padding: 3rem;
    text-align: center;
    border-left: 3px solid var(--black);
}

.contact-cta-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--slate);
}

.contact-cta-content a {
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--black);
}

.contact-cta-content a:hover {
    opacity: 0.7;
}

/* Methodology Page Styles */
.methodology-box {
    background: #f8f8f8;
    padding: 2.5rem;
    margin: 2rem 0;
    border-left: 3px solid var(--black);
}

.methodology-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.methodology-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.methodology-list li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.methodology-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: 700;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-box {
    background: #f8f8f8;
    padding: 2rem;
    border-left: 3px solid var(--black);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step-box:hover {
    transform: translateY(-5px);
    background: #f0f0f0;
}

.step-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--slate);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.step-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.step-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate);
}

.limitations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.limitation-box {
    background: #f8f8f8;
    padding: 2rem;
    border-left: 3px solid var(--black);
}

.limitation-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.limitation-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate);
}

.ethics-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--black);
}

.ethics-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--slate);
}

.ethics-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
}

.ethics-list li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.ethics-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: 700;
    font-size: 1.2rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tool-category {
    background: #f8f8f8;
    padding: 2rem;
    border-left: 3px solid var(--black);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tool-category:hover {
    transform: translateY(-5px);
    background: #f0f0f0;
}

.tool-category h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.tool-category p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate);
}

.methodology-cta {
    background: #f8f8f8;
    padding: 3rem;
    text-align: center;
    border-left: 3px solid var(--black);
}

.methodology-cta p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--slate);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .section-container-tight,
    .framework-container,
    .why-container,
    .actionable-intelligence-section,
    .engagement-structure-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .intelligence-pillars {
        flex-direction: column;
        gap: 1rem;
    }

    .pillar {
        width: 100%;
    }
}
