/* Logo styles */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 100px;
    width: auto;
}

.nav-brand h1 {
    font-size: 0.9rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background-color: #FFFFFF;
}

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

/* Navigation */
.navbar {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    color: #1B365D;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2D3748;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1B365D;
}

.cta-button {
    background: #1B365D;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #2D5A27;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0FDF4 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    align-items: center;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    color: #1B365D;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #4A5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
}

.cta-primary {
    background: #1B365D;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-primary:hover {
    background: #2D5A27;
}

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

.cta-secondary:hover {
    background: #1B365D;
    color: white;
}

/* Dashboard Preview */
.dashboard-preview {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 2rem;
}

.dashboard-mockup {
    height: 300px;
    background: #F7FAFC;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.chart-placeholder {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 150px;
    background: linear-gradient(45deg, #1B365D, #2D5A27);
    border-radius: 6px;
    opacity: 0.8;
}

.metrics-placeholder {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 80px;
    background: #E2E8F0;
    border-radius: 6px;
}

/* Trust Bar */
.trust-bar {
    background: #F7FAFC;
    padding: 2rem 0;
    text-align: center;
}

.trust-tagline {
    font-size: 1.1rem;
    color: #4A5568;
    margin-bottom: 1rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1B365D;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Case Study Highlight */
.case-study-highlight {
    background: #FFFFFF;
    padding: 50px 0;
}

.case-study-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.case-study-text h3 {
    color: #2D5A27;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.case-study-text h4 {
    color: #1B365D;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.case-study-text p {
    font-size: 1.1rem;
    color: #4A5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.results-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #2D5A27;
    font-weight: 600;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
}

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

.results-list strong {
    color: #1B365D;
    margin-right: 0.5rem;
    min-width: 80px; /* Consistent width for the metrics */
}

.case-study-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.metric-card {
    background: #F7FAFC;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 200px;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B365D;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: #4A5568;
    font-weight: 500;
}

/* Responsive adjustments for case study section */
@media (max-width: 768px) {
    .case-study-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-study-text h4 {
        font-size: 1.5rem;
    }
    
    .results-list li {
        padding: 0.5rem 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .results-list strong {
        min-width: auto;
        display: inline-block;
    }
    
    .metric-card {
        max-width: 100%;
    }
}

/* Three Pillars */
.pillars {
    padding: 80px 0;
}

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

.pillar {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.pillar-icon svg {
    transition: transform 0.3s ease;
}

.pillar:hover .pillar-icon svg {
    transform: scale(1.1);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.pillar h3 {
    color: #1B365D;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.pillar h4 {
    color: #2D3748;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pillar p {
    color: #4A5568;
    line-height: 1.6;
}

/* Differentiation Section */
.differentiation {
    background: #F7FAFC;
    padding: 80px 0;
}

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

.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.diff-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.diff-item h4 {
    color: #1B365D;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.diff-item p {
    color: #4A5568;
    line-height: 1.6;
}

/* Technology Section */
.technology {
    padding: 80px 0;
}

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

.tech-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.tech-list li {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 4px solid #2D5A27;
    color: #4A5568;
    line-height: 1.6;
}

/* Resources Section */
.resources {
    background: #F7FAFC;
    padding: 80px 0;
}

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

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.resource-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.resource-item:hover {
    transform: translateY(-3px);
}

.resource-item h4 {
    color: #1B365D;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1B365D 0%, #2D5A27 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.final-cta .cta-primary {
    background: white;
    color: #1B365D;
}

.final-cta .cta-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

/* Footer */
.footer {
    background: #2D3748;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

.footer-links a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Demo Form Styles */
.demo-form-section {
    padding: 120px 0 80px;
    background: #F7FAFC;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-container h1 {
    color: #1B365D;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container p {
    color: #4A5568;
    text-align: center;
    margin-bottom: 2rem;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2D3748;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #E2E8F0;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    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: #1B365D;
    box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.1);
}

/* Lead Capture Form */
.lead-capture-form {
    margin: 1.5rem 0;
}

.form-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.form-row input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #E2E8F0;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
}

.form-row button {
    white-space: nowrap;
}

.form-note {
    font-size: 0.9rem;
    color: #4A5568;
    text-align: center;
    margin-top: 1rem;
}

.form-note a {
    color: #1B365D;
    text-decoration: none;
}

.disclaimer {
    font-size: 0.8rem;
    color: #4A5568;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E2E8F0;
    font-style: italic;
}

/* Focus States for Accessibility */
.cta-primary:focus,
.cta-secondary:focus,
.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.3);
}

.pillar:focus-within,
.diff-item:focus-within,
.resource-item:focus-within {
    outline: 2px solid #1B365D;
    outline-offset: 2px;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1B365D;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 0.75rem 0;
        border-bottom: 1px solid #E2E8F0;
    }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1B365D 0%, #2D5A27 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Case Studies */
.case-studies {
    padding: 80px 0;
}

.case-study {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    overflow: hidden;
}

.case-header {
    background: #F7FAFC;
    padding: 2rem;
    border-bottom: 1px solid #E2E8F0;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.company-logo {
    background: #1B365D;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
}

.company-details h3 {
    color: #1B365D;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.company-details p {
    color: #4A5568;
}

.case-content {
    padding: 2rem;
}

.challenge, .solution {
    margin-bottom: 2rem;
}

.challenge h4, .solution h4 {
    color: #1B365D;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.solution li {
    padding: 0.5rem 0;
    border-left: 3px solid #2D5A27;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.results {
    background: #F7FAFC;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.results h4 {
    color: #1B365D;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.result-item {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.result-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2D5A27;
    margin-bottom: 0.5rem;
}

.result-label {
    color: #4A5568;
    font-size: 0.9rem;
}

.testimonial {
    background: #1B365D;
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.testimonial blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    font-weight: 600;
    opacity: 0.9;
}

/* ROI Calculator */
.calculator-hero {
    background: linear-gradient(135deg, #1B365D 0%, #2D5A27 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.calculator-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.calculator-section {
    padding: 80px 0;
    background: #F7FAFC;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.calculator-inputs, .calculator-results {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.calculator-inputs h3, .calculator-results h3 {
    color: #1B365D;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.input-group label {
    display: block;
    color: #2D3748;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E2E8F0;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.result-card {
    background: #F7FAFC;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.result-card.total {
    background: #1B365D;
    color: white;
}

.result-header {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2D5A27;
    margin-bottom: 0.5rem;
}

.result-card.total .result-value {
    color: white;
}

.result-detail {
    font-size: 0.85rem;
    opacity: 0.7;
}

.assumptions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E2E8F0;
}

.assumptions h4 {
    color: #1B365D;
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.assumptions li {
    font-size: 0.85rem;
    color: #4A5568;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.assumptions li:before {
    content: "•";
    color: #2D5A27;
    position: absolute;
    left: 0;
}

.calculator-cta {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.calculator-cta h3 {
    color: #1B365D;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-section {
    background: #1B365D;
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-primary {
    background: white;
    color: #1B365D;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .company-info {
        flex-direction: column;
        text-align: center;
    }
    
    .page-hero h1, .calculator-hero h1 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .diff-grid,
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none; /* Mobile menu implementation needed */
    }
    
    .hero-ctas,
    .final-ctas {
        flex-direction: column;
        align-items: center;
    }
}
/* Solutions Page */
.solutions-overview {
    padding: 80px 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-icon {
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    color: #1B365D;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.solution-features li {
    padding: 0.5rem 0;
    border-left: 3px solid #2D5A27;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.solution-results {
    background: #F0FDF4;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #2D5A27;
}

.solution-benefits {
    background: #F7FAFC;
    padding: 80px 0;
}

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

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.benefit-item h4 {
    color: #1B365D;
    margin-bottom: 0.5rem;
}

/* Resources Page */
.resources-section {
    padding: 80px 0;
}

.resource-category {
    margin-bottom: 4rem;
}

.resource-category h2 {
    color: #1B365D;
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #2D5A27;
    padding-bottom: 0.5rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.resource-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-3px);
}

.resource-type {
    background: #1B365D;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.resource-item h3 {
    color: #1B365D;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.resource-details {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #4A5568;
}

.resource-length, .resource-level {
    background: #F7FAFC;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.resource-cta {
    color: #1B365D;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #1B365D;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
}

.resource-cta:hover {
    background: #1B365D;
    color: white;
}

.newsletter-signup {
    background: #1B365D;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    margin-top: 2rem;
}

.newsletter-form .form-row {
    max-width: 500px;
    margin: 0 auto;
}

/* Company Page */
.company-mission {
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    color: #1B365D;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4A5568;
}

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

.stat-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.stat-label {
    color: #4A5568;
    font-weight: 500;
}

.patent-portfolio {
    background: #F7FAFC;
    padding: 80px 0;
}

.patent-portfolio h2 {
    text-align: center;
    color: #1B365D;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #4A5568;
    margin-bottom: 3rem;
}

.patents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.patent-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.patent-number {
    background: #2D5A27;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.patent-item h3 {
    color: #1B365D;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.patent-tech {
    background: #F0FDF4;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #2D5A27;
}

.company-values {
    padding: 80px 0;
}

.company-values h2 {
    text-align: center;
    color: #1B365D;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.value-item h3 {
    color: #1B365D;
    margin-bottom: 1rem;
}

.company-approach {
    background: #F7FAFC;
    padding: 80px 0;
}

.company-approach h2 {
    text-align: center;
    color: #1B365D;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.approach-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.approach-text h3 {
    color: #1B365D;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.approach-text h3:first-child {
    margin-top: 0;
}

.approach-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.metric-title {
    font-size: 0.9rem;
    color: #4A5568;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2D5A27;
    margin-bottom: 0.25rem;
}

.metric-unit {
    font-size: 0.8rem;
    color: #4A5568;
}

.company-timeline {
    padding: 80px 0;
}

.company-timeline h2 {
    text-align: center;
    color: #1B365D;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-date {
    background: #2D5A27;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.timeline-content h3 {
    color: #1B365D;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive for New Pages */
@media (max-width: 768px) {
    .solutions-grid,
    .benefits-grid,
    .resource-grid,
    .patents-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-content,
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-date {
        align-self: flex-start;
    }
}
/* Enhanced Company Page Sections */
.team-expertise {
    background: #F7FAFC;
    padding: 80px 0;
}

.team-expertise h2 {
    text-align: center;
    color: #1B365D;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.expertise-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.expertise-item h3 {
    color: #1B365D;
    margin-bottom: 1rem;
}

.expertise-credentials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.credential {
    background: #2D5A27;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.expertise-quote {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #F0FDF4;
    border-radius: 8px;
    border-left: 4px solid #2D5A27;
}

.expertise-quote blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    color: #2D5A27;
}

.expertise-quote cite {
    font-weight: 600;
    color: #4A5568;
}

.partnerships {
    padding: 80px 0;
}

.partnerships h2 {
    text-align: center;
    color: #1B365D;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.partnership-category {
    text-align: center;
}

.partnership-category h3 {
    color: #1B365D;
    margin-bottom: 1.5rem;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.partner-logo {
    background: #F7FAFC;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: #4A5568;
    text-align: center;
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    border-color: #1B365D;
    color: #1B365D;
}

.press-recognition {
    background: #F7FAFC;
    padding: 80px 0;
}

.press-recognition h2 {
    text-align: center;
    color: #1B365D;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.press-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.press-source {
    background: #1B365D;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.press-item h3 {
    color: #1B365D;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.press-date {
    color: #2D5A27;
    font-weight: 600;
    margin-top: 1rem;
}

/* Mobile Responsive for Enhanced Sections */
@media (max-width: 768px) {
    .expertise-grid,
    .press-grid {
        grid-template-columns: 1fr;
    }
    
    .partnerships-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertise-credentials {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .credential {
        align-self: flex-start;
    }
}
/* Skip Navigation Link */
.skip-nav {
    position: absolute;
    top: -40px;
    left: 0;
    background: #1B365D;
    color: white;
    padding: 8px;
    text-decoration: none;
    transition: top 0.3s;
}

.skip-nav:focus {
    top: 0;
}

/* Visually Hidden - for screen readers only */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Founder's Note Section */
.founder-note {
    background: linear-gradient(135deg, #1B365D 0%, #2D5A27 100%);
    color: white;
    padding: 100px 0;
}

.founder-content {
    max-width: 900px;
    margin: 0 auto;
}

.founder-note h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.founder-message {
    font-size: 1.1rem;
    line-height: 1.8;
}

.founder-greeting {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.founder-message h3 {
    color: white;
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem 0;
    text-align: center;
}

.founder-message p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.founder-points {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.founder-points li {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.founder-points strong {
    color: #A7F3D0;
}

.founder-closing {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.founder-signature {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.signature-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.signature-title {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.signature-contact {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

/* Mobile Responsive for Founder's Note */
@media (max-width: 768px) {
    .founder-note {
        padding: 60px 0;
    }
    
    .founder-note h2 {
        font-size: 2rem;
    }
    
    .founder-message {
        font-size: 1rem;
    }
    
    .founder-message h3 {
        font-size: 1.5rem;
    }
    
    .founder-points li {
        padding: 1rem;
    }
}
