/* CSS Reset & Basics */
:root {
    /* Operator Aesthetic Palette */
    --bg-primary: #0f172a;
    /* Midnight/Slate */
    --bg-secondary: #1e293b;
    /* Slightly lighter for cards */
    --text-primary: #f8fafc;
    /* Off-white */
    --text-secondary: rgba(255, 255, 255, 0.7);
    /* Subtle text */

    /* Accents */
    --accent-orange: #FF8200;
    /* UTK Orange - Preserved */
    --accent-red: #ef4444;
    /* Chaos Red */
    --accent-green: #10b981;
    /* Peace Green */

    /* Legacy variables mapping/overrides */
    --primary-navy: #0f172a;
    --tech-grey: #94a3b8;
    --light-slate: #cbd5e1;
    --white: #ffffff;
}

html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 800;
    /* Extra bold for operator aesthetic */
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    border: 2px solid var(--accent-orange);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-orange);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.2rem;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background-color: rgba(15, 23, 42, 0.95);
    /* Dark background with slight transparency */
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-primary);
}

.nav-links a:not(.btn):hover {
    color: var(--accent-orange);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 4rem;
    /* Larger, bolder */
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.subhead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Hero accent for second line emphasis */
.hero-accent {
    color: var(--accent-orange);
}

.cta-group {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.profile-img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    object-position: center 20%;
}

.photo-credit {
    font-size: 0.55rem;
    color: var(--text-secondary);
    text-align: right;
    margin-top: 6px;
    font-style: italic;
    opacity: 0.6;
}

/* Trust Bar */
.trust-bar {
    padding: 40px 0;
    background-color: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    text-align: center;
}

.trust-caption {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--tech-grey);
    font-weight: 600;
}

.logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.8;
}

.logo-item {
    /* Using text for logos as placeholders */
    font-weight: 700;
    /* Ensure bold if not inherited */
}

.trust-subcaption {
    margin-top: 30px;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    /* Italic accent */
    font-style: italic;
    color: var(--text-secondary);
}

/* Fractional AI Officer Section */
.fractional-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.fractional-hero {
    text-align: center;
    margin-bottom: 60px;
}

.fractional-lead {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.fractional-lead strong {
    color: var(--accent-orange);
}

.fractional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.fractional-card {
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fractional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.fractional-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), #ff9d33);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}

.fractional-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.fractional-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.fractional-value {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fractional-value h4 {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-bottom: 25px;
}

.fractional-value ul {
    list-style: none;
    text-align: left;
}

.fractional-value li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fractional-value li:last-child {
    border-bottom: none;
}

.fractional-value li strong {
    color: var(--text-primary);
}

/* Products Grid (simplified for 2-column) */
.products-grid {
    max-width: 800px;
    margin: 0 auto;
}

/* Is This You? (ICP) Section */
.icp-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.icp-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--accent-orange);
    border-radius: 12px;
    padding: 40px 45px;
}

.icp-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

.icp-content p:last-child {
    margin-bottom: 0;
}

/* Case Study Section */
.case-study {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.case-study-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    gap: 12px;
}

/* Dark container neutralizes the white PNG background */
.case-study-logo-wrap {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.case-study-logo {
    height: 140px;
    width: auto;
    display: block;
    border-radius: 4px;
}

.case-study-title {
    margin-bottom: 0 !important;
}

.case-study-partner {
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-top: 0;
}

.case-study-content {
    max-width: 800px;
    margin: 0 auto 50px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 50px;
}

.case-study-detail {
    margin-bottom: 30px;
}

.case-study-detail:last-child {
    margin-bottom: 0;
}

.case-study-detail h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.case-study-detail p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.case-study-results {
    list-style: none;
    margin: 0;
    padding: 0;
}

.case-study-results li {
    padding: 10px 0 10px 24px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.case-study-results li:last-child {
    border-bottom: none;
}

.case-study-results li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.case-study-diagram {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.case-study-diagram img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.case-study-cta {
    text-align: center;
}

.case-study-cta-text {
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* Service description paragraphs */
.service-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-desc:last-child {
    margin-bottom: 0;
}

.service-highlight {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.solution-card {
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 4px solid var(--tech-grey);
    text-decoration: none !important;
    color: inherit;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Custom Card Borders */
.dynamo-card {
    border-top-color: var(--accent-orange);
}

.protocol-card {
    border-top-color: #3b82f6;
    /* Blue for protocol */
}

.training-card {
    border-top-color: var(--accent-green);
    /* Green for "go" / training */
}

.training-card .solution-tagline {
    color: var(--accent-green);
}

.training-card .btn-link {
    color: var(--accent-green);
}

.solution-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.solution-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-desc {
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.btn-link {
    font-weight: 700;
    color: var(--accent-orange);
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 5px;
}

.protocol-card .btn-link {
    color: #3b82f6;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.about-timeline-centered {
    max-width: 700px;
    margin: 0 auto;
}

.about h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.timeline {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 30px;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 130, 0, 0.4);
}



/* Company Logo Styles */
.trust-logo {
    height: 42px;
    max-height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0.9);
}

.trust-logo:hover {
    filter: brightness(1);
    transform: scale(1.05);
}

/* Specific adjustments for DoD seal */
.trust-logo.dod-logo {
    height: 75px;
    max-height: 75px;
}

/* Specific adjustments for USAA logo */
.trust-logo.usaa-logo {
    height: 64px;
    max-height: 64px;
}

.about-image img {
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.caption-card {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
}

.educator-section {
    margin-top: 80px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

/* When educator is featured (elevated) */
.educator-section.educator-featured {
    margin-top: 0;
    margin-bottom: 60px;
    max-width: 100%;
}

/* Bright accent line on top */
.educator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-orange);
}

.educator-section h3 {
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.educator-lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.educator-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.educator-cta {
    margin-top: 30px;
}

/* About subhead */
.about-subhead {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    align-items: stretch;
}

.services-callout {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--accent-orange);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-card {
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px 35px;
    border-top: 4px solid var(--tech-grey);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.strategy-card {
    border-top-color: var(--accent-orange);
}

.rag-card {
    border-top-color: #8b5cf6;
}

/* Purple for AI/tech */
.data-card {
    border-top-color: #3b82f6;
}

/* Blue for data */

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 130, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.strategy-card .service-icon {
    background: rgba(255, 130, 0, 0.1);
    color: var(--accent-orange);
}

.rag-card .service-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.data-card .service-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.service-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0 8px 20px;
    color: var(--text-secondary);
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}

.services-cta {
    text-align: center;
}

/* Credentials Grid (About Section) */
.bridge-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.bridge-lead {
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.bridge-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.credential-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.credential-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 8px;
}

.credential-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Data Security Section */
.data-security {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.security-card {
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.security-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}

/* Card accent colors */
.ownership-card {
    border-top: 4px solid var(--accent-green);
}

.ownership-card .security-icon {
    background: linear-gradient(135deg, var(--accent-green), #34d399);
}

.no-training-card {
    border-top: 4px solid #3b82f6;
}

.no-training-card .security-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.enterprise-card {
    border-top: 4px solid var(--accent-orange);
}

.enterprise-card .security-icon {
    background: linear-gradient(135deg, var(--accent-orange), #ff9d33);
}

.compliance-card {
    border-top: 4px solid #8b5cf6;
}

.compliance-card .security-icon {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.security-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.security-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Callout Block */
.security-callout {
    background: var(--bg-primary);
    border-left: 4px solid var(--accent-orange);
    border-radius: 12px;
    padding: 30px 35px;
    max-width: 900px;
    margin: 0 auto 40px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.security-callout p {
    margin: 0;
}

.security-cta {
    text-align: center;
}

/* Contact */
.contact {
    padding: 100px 0;
    text-align: center;
    background-color: var(--bg-secondary);
}

.contact h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.contact-subhead {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.feature-icon {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Footer */
footer {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

footer p {
    opacity: 0.7;
}

/* Utility Classes for JS toggles */
.text-error {
    color: var(--accent-red) !important;
}

/* Footer Privacy Link */
.footer-privacy-wrapper {
    margin-bottom: 15px;
}

.footer-privacy-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0 10px;
}

/* Privacy Page Styles */
.privacy-section {
    padding: 120px 0;
    background-color: var(--bg-primary);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.privacy-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.privacy-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.privacy-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.privacy-content li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.privacy-content li::before {
    content: '•';
    color: var(--accent-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.privacy-back-link {
    margin-top: 60px;
}

/* Utilities */
.italic-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--white);
    /* Brighter than accent text */
}

/* Icons */
.icon-svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: text-bottom;
}

.icon-svg.icon-lg {
    width: 32px;
    height: 32px;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 200;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hamburger to X animation when active */
.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive */
@media (max-width: 768px) {

    /* Mobile Navigation */
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .cta-group {
        justify-content: center;
    }

    .grid-2,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .educator-section {
        padding: 30px 20px;
    }

    .contact-features .feature {
        text-align: left;
    }

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

    /* Fractional section mobile */
    .fractional-grid {
        grid-template-columns: 1fr;
    }

    .fractional-lead {
        font-size: 1.1rem;
    }

    /* Services section mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Data security section mobile */
    .security-grid {
        grid-template-columns: 1fr;
    }

    .security-callout {
        padding: 20px 25px;
        font-size: 1rem;
    }

    /* ICP section mobile */
    .icp-content {
        padding: 30px 25px;
    }

    .icp-content p {
        font-size: 1rem;
    }

    /* Case study section mobile */
    .case-study-header {
        gap: 8px;
        margin-bottom: 24px;
    }

    .case-study-logo {
        height: 110px;
    }

    .case-study-logo-wrap {
        padding: 10px 16px;
    }

    .case-study-content {
        padding: 30px 25px;
    }

    .case-study-cta-text {
        font-size: 1.1rem;
    }

    /* Credentials grid mobile */
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Fix company logos: 2x2 grid for better balance */
    .logos {
        justify-content: center;
        gap: 20px;
    }

    .logo-item {
        flex: 0 0 calc(50% - 20px);
        /* 2 items per row */
        display: flex;
        justify-content: center;
    }

    /* Fix bullet alignment on mobile */
    .contact-features .feature {
        align-items: flex-start;
    }

    .feature-icon {
        margin-top: 2px;
        /* Visual alignment with text */
    }
}

/* Improved Contact Form Styles */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.5);
    /* Semi-transparent dark bg */
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 130, 0, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Success Message Animation */
.form-message {
    min-height: 20px;
    margin-top: 15px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.5s ease;
}

.form-message.visible {
    opacity: 1;
}

.success-animation {
    text-align: center;
    padding: 20px;
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.success-icon svg {
    color: white;
    width: 32px;
    height: 32px;
}

.success-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.success-text {
    color: var(--text-secondary);
}

/* Honeypot field for bot protection */
.honey-pot {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}