/* ===================================
   CSS Reset and Base Styles
   =================================== */
/* Updated: CFO Passive Income Lab removed */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #ffffff;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #2d3748;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Override browser default link colors for consistency */
a:link,
a:visited,
a:hover,
a:active {
    color: inherit;
}

/* Specific override for tool directory links to ensure consistency */
.tool-grid a:link,
.tool-grid a:visited,
.tool-grid a:hover,
.tool-grid a:active {
    color: #1a365d;
}

.tool-grid a:hover {
    color: #2d3748;
}

/* ===================================
   Layout Components
   =================================== */

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

/* ===================================
   Header and Navigation
   =================================== */

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .site-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: #2d3748;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1a365d;
    border-bottom-color: #1a365d;
}

/* Mobile menu toggle (hidden by default) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #2d3748;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Navigation Dropdown */
.mobile-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    min-width: 250px;
    overflow: hidden;
}

.mobile-nav-menu.active {
    display: block;
}

.mobile-nav-menu a {
    display: block;
    color: #2d3748;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f7fafc;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:last-child {
    border-bottom: none;
}

.mobile-nav-menu a:hover {
    background-color: #f7fafc;
    color: #1a365d;
}

.mobile-nav-menu a.active {
    background-color: #1a365d;
    color: #ffffff;
}

/* Position hamburger and mobile menu container relatively */
.hamburger {
    position: relative;
}

.mobile-menu-toggle {
    position: relative;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #ffffff;
    padding: 8rem 0 6rem;
    margin-top: 80px; /* Account for fixed header */
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-tagline {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #ffffff;
    opacity: 1;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #ffffff;
}

.hero-description p {
    color: #ffffff;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 200px;
}

.cta-primary {
    background-color: #ffffff;
    color: #1a365d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-secondary:hover {
    background-color: #ffffff;
    color: #1a365d;
}

/* ===================================
   Solutions Section - Updated
   =================================== */

.solutions-section {
    padding: 6rem 0;
    background-color: #f7fafc;
}

.solutions-title {
    text-align: center;
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.solution-card {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    font-size: 3rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.solution-name {
    color: #1a365d;
    margin-bottom: 1rem;
}

.solution-text {
    color: #2d3748;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-button {
    display: inline-block;
    color: #1a365d;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.solution-button:hover {
    color: #2d3748;
    border-bottom-color: #1a365d;
}

/* ===================================
   Services Section (New Clean Version)
   =================================== */

.services-section {
    padding: 6rem 0;
    background-color: #f7fafc;
}

.services-title {
    text-align: center;
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.service-title {
    color: #1a365d;
    margin-bottom: 1rem;
}

.service-description {
    color: #2d3748;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    color: #1a365d;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #2d3748;
    border-bottom-color: #1a365d;
}

/* ===================================
   Data & Org Structure Intelligence Section
   =================================== */

.data-intelligence {
    padding: 6rem 0;
    background-color: #f8fafc;
    border-top: 4px solid #1a365d;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.data-intelligence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1a365d 0%, #2d3748 50%, #1a365d 100%);
}

.data-intelligence-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.intelligence-icon {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #ffffff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
}

.intelligence-icon i {
    font-size: 2.5rem;
}

.data-intelligence .section-title {
    color: #1a365d;
    font-size: 2.25rem;
    margin-bottom: 0;
    text-align: center;
}

.intelligence-description {
    margin-bottom: 3rem;
}

.intelligence-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2d3748;
    max-width: 800px;
    margin: 0 auto;
}

.intelligence-features {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.intelligence-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.intelligence-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #2d3748;
}

.intelligence-features li:last-child {
    margin-bottom: 0;
}

.intelligence-features li i {
    color: #1a365d;
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===================================
   Our Approach Section
   =================================== */

.approach {
    padding: 6rem 0;
    background-color: #ffffff;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.approach-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2d3748;
}

/* ===================================
   Testimonial Section
   =================================== */

.testimonial {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
}

.testimonial-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-quote {
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    font-weight: 300;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background-color: #1a365d;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    text-align: center;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #a0aec0;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2d3748;
    border-radius: 50%;
    color: #a0aec0;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #1a365d;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #a0aec0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
}

.footer-bottom p {
    color: #a0aec0;
    margin: 0;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet styles */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    /* Hide desktop menu on mobile */
    .nav-menu {
        display: none;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger {
        display: flex;
    }
    
    /* Hero section adjustments */
    .hero {
        padding: 6rem 0 4rem;
        text-align: center;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-tagline {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    /* Solutions grid adjustments */
    .solutions-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-card {
        padding: 2rem 1.5rem;
    }
    
    /* Section title adjustments */
    .section-title {
        font-size: 2rem;
    }
    
    /* Footer adjustments */
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile styles */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .solutions-section,
    .approach,
    .testimonial {
        padding: 4rem 0;
    }
    
    .solution-card {
        padding: 2rem 1rem;
    }
    
    .testimonial-quote blockquote {
        font-size: 1.25rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    /* Page-specific mobile adjustments */
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .playbook-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .playbook-stats {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .phases {
        grid-template-columns: 1fr;
    }
    
    /* Data Intelligence mobile adjustments */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .intelligence-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .intelligence-icon i {
        font-size: 2rem;
    }
    
    .data-intelligence .section-title {
        font-size: 1.75rem;
    }
    
    .intelligence-features {
        padding: 1.5rem;
        text-align: center;
    }
    
    .intelligence-features ul {
        text-align: left;
    }
}

/* ===================================
   Page-Specific Styles
   =================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #ffffff;
    padding: 8rem 0 4rem;
    margin-top: 80px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

/* Tools Directory Styles */
.tools-section {
    padding: 6rem 0;
    background-color: #f7fafc;
}

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

.tool-category {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.category-icon {
    font-size: 2rem;
    color: #1a365d;
    margin-right: 1rem;
}

.category-header h3 {
    color: #1a365d;
    margin: 0;
}

.tools-list {
    space-y: 1.5rem;
}

.tool-item {
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.tool-item h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tool-item p {
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tool-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

/* Tool Link Styling */
.tool-link {
    color: #1a365d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
}

.tool-link:link,
.tool-link:visited {
    color: #1a365d;
}

.tool-link:hover,
.tool-link:active {
    color: #2d3748;
    border-bottom-color: #1a365d;
    transform: translateX(2px);
}

.tool-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    justify-content: center;
}

.tool-btn {
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    min-width: 120px;
}

.tool-btn.primary {
    background-color: #1a365d;
    color: #ffffff;
    border: 2px solid #1a365d;
    box-shadow: 0 2px 4px rgba(26, 54, 93, 0.2);
}

.tool-btn.primary:hover {
    background-color: #2d3748;
    border-color: #2d3748;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(26, 54, 93, 0.3);
}

.tool-btn.secondary {
    background-color: #ffffff;
    color: #1a365d;
    border: 2px solid #1a365d;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tool-btn.secondary:hover {
    background-color: #1a365d;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(26, 54, 93, 0.2);
}

.tag {
    background-color: #1a365d;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Framework Integration Styles */
.framework-integration {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.integration-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.integration-header h2 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.integration-header p {
    color: #2d3748;
    font-size: 1.125rem;
    line-height: 1.6;
}

.header-cta {
    margin-top: 1.5rem;
}

.header-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #1a365d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.header-link:hover {
    background-color: #2d3748;
}

/* Phase-based Tools Grid */
.phase-tools-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
}

.phase-tools-category {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.phase-header {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #ffffff;
}

.phase-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    min-width: fit-content;
    white-space: nowrap;
    line-height: 1;
}

.phase-info {
    flex: 1;
}

.phase-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.phase-info p {
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.4;
}

/* Strategic CTA Styles */
.strategic-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
}

.cta-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 180px;
}

.cta-btn.primary {
    background-color: #ffffff;
    color: #1a365d;
}

.cta-btn.primary:hover {
    background-color: #f7fafc;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-btn.secondary:hover {
    background-color: #ffffff;
    color: #1a365d;
    transform: translateY(-2px);
}

/* AI Tool Detail Page Styles */
.breadcrumb {
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #1a365d;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.phase-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: nowrap;
}

.phase-badge {
    background-color: #1a365d;
    color: #ffffff;
    padding: 0.875rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.25rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    min-width: fit-content;
    flex-shrink: 0;
}

.phase-label {
    color: #2d3748;
    font-weight: 500;
}

.tool-overview {
    padding: 6rem 0;
    background-color: #ffffff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-content h2 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.overview-content p {
    color: #2d3748;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.key-benefits {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
}

.key-benefits h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.key-benefits ul {
    list-style: none;
    padding: 0;
}

.key-benefits li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.key-benefits li::before {
    content: "▶";
    color: #1a365d;
    position: absolute;
    left: 0;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background-color: #1a365d;
    color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    opacity: 1;
    line-height: 1.4;
}

.implementation-details {
    padding: 6rem 0;
    background-color: #f7fafc;
}

.implementation-details h2 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.implementation-phase {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.phase-icon {
    font-size: 3rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.implementation-phase h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.implementation-phase p {
    color: #2d3748;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-stack {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-tag {
    background-color: #e2e8f0;
    color: #2d3748;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.templates-tools {
    padding: 6rem 0;
    background-color: #ffffff;
}

.templates-tools h2 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.template-card {
    background-color: #f7fafc;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.template-card:hover {
    border-color: #1a365d;
    transform: translateY(-2px);
}

.template-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.template-header h3 {
    color: #1a365d;
    font-size: 1.25rem;
}

.template-type {
    background-color: #1a365d;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.template-card p {
    color: #2d3748;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.template-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.template-features li {
    color: #2d3748;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.875rem;
}

.template-features li::before {
    content: "✓";
    color: #1a365d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.template-btn {
    display: inline-block;
    background-color: #1a365d !important;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.template-btn:hover {
    background-color: #2d3748 !important;
    color: #ffffff !important;
}

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

.phase-detail {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
}

.phase-detail h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.phase-detail p {
    color: #2d3748;
    line-height: 1.6;
}

.next-steps {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.framework-btn, .consultation-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 200px;
    text-align: center;
}

.framework-btn {
    background-color: #1a365d !important;
    color: #ffffff !important;
}

.framework-btn:hover {
    background-color: #2d3748 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.consultation-btn {
    background-color: transparent !important;
    color: #1a365d !important;
    border: 2px solid #1a365d !important;
}

.consultation-btn:hover {
    background-color: #1a365d !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* AI Embedding Strategy Page Styles */
.ai-embedding-strategy {
    padding: 6rem 0;
    background-color: #f7fafc;
}

.ai-embedding-strategy h2 {
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-intro {
    font-size: 1.25rem;
    color: #2d3748;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.embedding-pillar {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pillar-icon {
    font-size: 4rem;
    color: #1a365d;
    margin-bottom: 2rem;
}

.embedding-pillar h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.embedding-pillar > p {
    color: #2d3748;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.pillar-strategies {
    text-align: left;
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
}

.pillar-strategies h4 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.pillar-strategies ul {
    list-style: none;
    padding: 0;
}

.pillar-strategies li {
    color: #2d3748;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.pillar-strategies li::before {
    content: "▶";
    color: #1a365d;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.ai-effectiveness {
    padding: 6rem 0;
    background-color: #ffffff;
}

.ai-effectiveness h2 {
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.effectiveness-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.effectiveness-category {
    background-color: #f7fafc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.effectiveness-category h3 {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #ffffff;
    padding: 2rem;
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-content {
    padding: 2rem;
}

.category-content > p {
    color: #2d3748;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.use-cases h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.use-cases ul {
    list-style: none;
    padding: 0;
}

.use-cases li {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #1a365d;
}

.use-cases li strong {
    color: #1a365d;
}

.employee-engagement {
    padding: 6rem 0;
    background-color: #f7fafc;
}

.employee-engagement h2 {
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.engagement-models {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.engagement-model {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.model-header {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #ffffff;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.model-header h3 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.model-type {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.model-content {
    padding: 2rem;
}

.model-content > p {
    color: #2d3748;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.model-structure, .model-benefits {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.model-structure h4, .model-benefits h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.model-structure ul, .model-benefits ul {
    list-style: none;
    padding: 0;
}

.model-structure li, .model-benefits li {
    color: #2d3748;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.model-structure li::before, .model-benefits li::before {
    content: "✓";
    color: #1a365d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.implementation-roadmap {
    padding: 6rem 0;
    background-color: #ffffff;
}

.implementation-roadmap h2 {
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.roadmap-phases {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.roadmap-phase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background-color: #f7fafc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.phase-timeline {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #ffffff;
    padding: 2rem;
    display: flex;
    align-items: center;
}

.phase-timeline h3 {
    margin: 0;
    font-size: 1.25rem;
}

.phase-activities {
    padding: 2rem;
}

.phase-activities h4 {
    color: #1a365d;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.phase-activities h4:first-child {
    margin-top: 0;
}

.phase-activities ul {
    list-style: none;
    padding: 0;
}

.phase-activities li {
    color: #2d3748;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.phase-activities li::before {
    content: "▶";
    color: #1a365d;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Additional CTA Styles */
.cta-tertiary {
    background-color: #f7fafc;
    color: #1a365d;
    border: 2px solid #e2e8f0;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 200px;
    text-align: center;
}

.cta-tertiary:hover {
    background-color: #e2e8f0;
    color: #1a365d;
    transform: translateY(-2px);
}

/* Workshop Acceleration Section Styles */
.workshop-acceleration {
    padding: 6rem 0;
    background-color: #ffffff;
}

.workshop-acceleration h2 {
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.acceleration-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.acceleration-category h3 {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #ffffff;
    padding: 2rem;
    margin: 0 0 2rem 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 12px 12px 0 0;
}

.acceleration-category {
    background-color: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.category-content {
    padding: 2rem;
}

.category-content > p {
    color: #2d3748;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.acceleration-tools h4 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

.tool-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.tool-item h5 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.tool-item p {
    color: #2d3748;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tool-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tool-benefits span {
    color: #1a365d;
    font-size: 0.875rem;
    font-weight: 500;
    padding-left: 1rem;
    position: relative;
}

.tool-benefits span::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #1a365d;
}

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

.template-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1a365d;
}

.template-item h5 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.template-item p {
    color: #2d3748;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.template-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.template-features span {
    color: #1a365d;
    font-size: 0.875rem;
    font-weight: 500;
    padding-left: 1rem;
    position: relative;
}

.template-features span::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a365d;
    font-weight: bold;
}

.integration-methods {
    margin: 4rem 0;
    background-color: #f7fafc;
    padding: 3rem;
    border-radius: 16px;
}

.integration-methods h3 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.integration-phase {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #1a365d;
}

.integration-phase h4 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.integration-phase p {
    color: #2d3748;
    line-height: 1.6;
}

.acceleration-benefits {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.acceleration-benefits h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.benefit-stat {
    text-align: center;
}

.benefit-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.benefit-stat .stat-label {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.95;
}

/* Value Proposition Styles */
.value-proposition {
    margin: 3rem 0 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    border-radius: 16px;
    color: #ffffff;
}

.value-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-item .stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.tools-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tools-cta h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.tools-cta p {
    color: #2d3748;
    margin-bottom: 2rem;
}

/* Playbooks Styles */
.playbooks-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.featured-playbook {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.playbook-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.playbook-content h2 {
    color: #1a365d;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.playbook-content p {
    color: #2d3748;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.playbook-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1a365d;
}

.stat-label {
    font-size: 0.875rem;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.playbook-visual {
    text-align: center;
}

.playbook-visual i {
    font-size: 8rem;
    color: #1a365d;
    opacity: 0.3;
}

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

.playbook-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.playbook-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.playbook-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.playbook-icon {
    font-size: 2rem;
    color: #1a365d;
    margin-right: 1rem;
}

.playbook-header h3 {
    color: #1a365d;
    margin: 0;
    flex-grow: 1;
}

.playbook-duration {
    background-color: #e2e8f0;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.playbook-body {
    padding: 0 2rem 2rem;
}

.playbook-body p {
    color: #2d3748;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.playbook-features {
    space-y: 0.5rem;
}

.feature {
    color: #2d3748;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.playbook-footer {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.methodology-tag {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 3px 8px rgba(26, 54, 93, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
}

.playbook-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.playbook-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
}

.playbook-btn.primary {
    background-color: #1a365d;
    color: #ffffff;
    border: 2px solid #1a365d;
}

.playbook-btn.primary:hover {
    background-color: #2d3748;
    border-color: #2d3748;
    transform: translateY(-2px);
}

.playbook-btn.secondary {
    background-color: transparent;
    color: #1a365d;
    border: 2px solid #1a365d;
}

.playbook-btn.secondary:hover {
    background-color: #1a365d;
    color: #ffffff;
    transform: translateY(-2px);
}

.playbook-btn.blue-btn {
    background-color: #3182ce;
    color: #ffffff;
    border: 2px solid #3182ce;
}

.playbook-btn.blue-btn:hover {
    background-color: #2c5aa0;
    border-color: #2c5aa0;
    transform: translateY(-2px);
}

.phase-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    align-items: center;
    width: 100%;
}

.phase-btn {
    padding: 0.8rem 1.4rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 180px;
    white-space: nowrap;
}

.phase-btn.primary {
    background-color: #1a365d;
    color: #ffffff;
    border: 2px solid #1a365d;
    box-shadow: 0 3px 6px rgba(26, 54, 93, 0.25);
}

.phase-btn.primary:hover {
    background-color: #2d3748;
    border-color: #2d3748;
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(26, 54, 93, 0.35);
}

.phase-btn.secondary {
    background-color: #ffffff;
    color: #1a365d;
    border: 2px solid #1a365d;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.phase-btn.secondary:hover {
    background-color: #1a365d;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(26, 54, 93, 0.25);
}

/* Framework Details - Clean Professional Design */
.framework-details {
    margin-top: 4rem;
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    position: relative;
}

.framework-details .section-title {
    color: #ffffff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.framework-phases {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.phase-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.phase-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.phase-group h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.phases {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phase {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border-left: 4px solid #4299e1;
}

.phase:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.phase-number {
    background: linear-gradient(135deg, #1a365d 0%, #4299e1 100%);
    color: #ffffff;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.phase-content h5 {
    color: #1a365d;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.phase-content p {
    color: #2d3748;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Phase Actions Buttons */
.phase-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.phase-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.phase-btn.primary {
    background-color: #1a365d;
    color: #ffffff;
    border: 2px solid #1a365d;
}

.phase-btn.primary:hover {
    background-color: #2d3748;
    border-color: #2d3748;
    transform: translateY(-1px);
}

.phase-btn.secondary {
    background-color: #ffffff;
    color: #1a365d;
    border: 2px solid #1a365d;
}

.phase-btn.secondary:hover {
    background-color: #1a365d;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Color coding for different phase groups */
.phase-group:nth-child(1) .phase {
    border-left-color: #e53e3e;
}

.phase-group:nth-child(1) .phase-number {
    background: linear-gradient(135deg, #e53e3e 0%, #fc8181 100%);
}

.phase-group:nth-child(2) .phase {
    border-left-color: #3182ce;
}

.phase-group:nth-child(2) .phase-number {
    background: linear-gradient(135deg, #3182ce 0%, #63b3ed 100%);
}

.phase-group:nth-child(3) .phase {
    border-left-color: #38a169;
}

.phase-group:nth-child(3) .phase-number {
    background: linear-gradient(135deg, #38a169 0%, #68d391 100%);
}

.framework-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.framework-cta h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.framework-cta p {
    color: #2d3748;
    margin-bottom: 2rem;
}

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

.framework-cta-buttons .cta-secondary {
    background-color: transparent;
    color: #1a365d;
    border: 2px solid #1a365d;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.framework-cta-buttons .cta-secondary:hover {
    background-color: #1a365d;
    color: #ffffff;
    transform: translateY(-2px);
}

/* AI Automation Playbook Styles */
.breadcrumb {
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #1a365d;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.playbook-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.playbook-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-weight: 500;
}

.playbook-meta i {
    color: #1a365d;
}

.executive-summary {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.summary-content h2 {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.key-outcomes {
    margin-top: 3rem;
}

.key-outcomes h3 {
    color: #1a365d;
    margin-bottom: 2rem;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.outcome-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.outcome-icon {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.outcome-card h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.methodology {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.method-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #1a365d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.method-step h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.detailed-framework {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.framework-phase {
    background-color: #ffffff;
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.phase-header {
    background-color: #1a365d;
    color: #ffffff;
    padding: 1.5rem 2rem;
}

.phase-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.phase-num {
    background-color: rgba(255, 255, 255, 0.9);
    color: #1a365d;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-right: 1rem;
}

.phase-content {
    padding: 2rem;
}

.phase-description {
    margin-bottom: 2rem;
}

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

.activities h4, .deliverables h4 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.activities ul, .deliverables ul {
    list-style: none;
    padding: 0;
}

.activities li, .deliverables li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.activities li:before {
    content: "▸";
    color: #1a365d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.deliverables li:before {
    content: "✓";
    color: #48bb78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tools-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.tool-category {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
}

.tool-category h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.tool-category ul {
    list-style: none;
    padding: 0;
}

.tool-category li {
    padding: 0.5rem 0;
    color: #2d3748;
    border-bottom: 1px solid #e2e8f0;
}

.playbook-cta {
    padding: 4rem 0;
    background-color: #1a365d;
    color: #ffffff;
}

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

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-buttons .cta-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

/* Contact Page Styles */
.contact-section {
    padding: 6rem 0;
    background-color: #f7fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h2 {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: #1a365d;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-method h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-method p {
    color: #2d3748;
    margin: 0;
}

.expertise-areas h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.expertise-areas ul {
    list-style: none;
    padding: 0;
}

.expertise-areas li {
    color: #2d3748;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.expertise-areas li:before {
    content: "✓ ";
    color: #1a365d;
    font-weight: 600;
    margin-right: 0.5rem;
}

.contact-form-container {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    color: #1a365d;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #1a365d;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a365d;
}

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

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

/* ===================================
   Accessibility and Focus States
   =================================== */

/* Focus styles for keyboard navigation */
.nav-link:focus,
.cta-primary:focus,
.cta-secondary:focus,
.social-link:focus,
.footer-link:focus {
    outline: 2px solid #1a365d;
    outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #000000;
        color: #ffffff;
    }
    
    .feature-card {
        border: 2px solid #000000;
    }
}

/* AI Adoption Intelligence Detail Page Styles */
.intelligence-features {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

.intelligence-card {
    background-color: #f7fafc;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    background-color: #1a365d;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 1.5rem;
}

.card-header h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin: 0;
}

.card-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #2d3748;
}

.feature-list li:last-child {
    border-bottom: none;
}

.resilience-safe {
    color: #38a169;
    font-weight: 600;
}

.resilience-evolving {
    color: #d69e2e;
    font-weight: 600;
}

.resilience-vulnerable {
    color: #e53e3e;
    font-weight: 600;
}

.transformation-enabler {
    padding: 6rem 0;
    background-color: #f7fafc;
}

.enabler-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.enabler-content h2 {
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.enabler-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 3rem;
}

.enabler-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: left;
}

.enabler-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.enabler-feature .feature-icon {
    background-color: #1a365d;
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.enabler-feature .feature-content h4 {
    color: #1a365d;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.enabler-feature .feature-content p {
    color: #4a5568;
    line-height: 1.6;
}
