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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

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

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

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-full {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #0066CC, #004499);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0055BB, #003388);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

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

.btn-secondary:hover {
    background: #0066CC;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
}

.btn-outline:hover {
    background: #f8f9fa;
    border-color: #0066CC;
    color: #0066CC;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand .logo {
    height: 40px;
    width: auto;
}

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

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0066CC;
}

.ai-link {
    color: #FF6B35 !important;
    font-weight: 600;
}

.ai-link:hover {
    color: #E55A2B !important;
}

.nav-cta {
    background: #0066CC;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #0055BB;
    transform: translateY(-1px);
}

.emergency-cta {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
    color: white !important;
    border: none !important;
    animation: pulse 2s infinite;
}

.emergency-cta:hover {
    background: linear-gradient(135deg, #c82333, #b21e2a) !important;
    transform: scale(1.05);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    gap: 2rem;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section h4 {
    color: #666;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.dropdown-item:hover {
    background: #f8f9fa;
    transform: translateX(4px);
}

.dropdown-icon {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.dropdown-title {
    font-weight: 600;
    display: block;
}

.dropdown-desc {
    font-size: 0.875rem;
    color: #666;
    display: block;
}

.external-icon {
    font-size: 0.875rem;
    margin-left: 0.25rem;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .navbar .container {
        position: relative;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 999;
        border-radius: 0 0 12px 12px;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
        box-shadow: none;
        padding: 1rem 0;
        flex-direction: column;
        gap: 1rem;
    }
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #0066CC;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
}

.trust-divider {
    color: #ccc;
}

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

.video-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .trust-indicators {
        justify-content: center;
        text-align: center;
    }
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.media-wall {
    text-align: center;
    margin-bottom: 4rem;
}

.featured-in {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.media-logo {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.media-logo:hover {
    opacity: 1;
}

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

.metric-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #666;
    font-weight: 600;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial cite {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-style: normal;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-name {
    font-weight: 600;
    color: #333;
}

.testimonial-title {
    color: #666;
    font-size: 0.875rem;
}

/* 4-Pillars Methodology Section */
.methodology-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
}

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

.methodology-preview .section-title,
.methodology-preview .section-subtitle {
    color: white;
    text-align: left;
}

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

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pillar-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.pillar-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.pillar-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0099FF;
}

.pillar-content p {
    color: #ccc;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.unique-indicator {
    display: inline-block;
    background: #FF6B35;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.methodology-differentiator {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 204, 0.3);
}

.methodology-differentiator p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #0099FF;
}

/* Pillars Visual */
.methodology-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pillars-visual {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 400px;
    height: 300px;
}

.pillar-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
}

.pillar-column {
    width: 40px;
    background: linear-gradient(to top, #0066CC, #0099FF);
    border-radius: 4px 4px 0 0;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.pillar-visual[data-pillar="people"] .pillar-column { height: 180px; }
.pillar-visual[data-pillar="process"] .pillar-column { height: 160px; }
.pillar-visual[data-pillar="technology"] .pillar-column { height: 200px; }
.pillar-visual[data-pillar="collaboration"] .pillar-column { height: 140px; }

.pillar-base {
    width: 60px;
    height: 20px;
    background: #444;
    border-radius: 4px;
}

.pillar-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    color: #ccc;
    transform: rotate(-45deg);
    margin-top: 10px;
}

.security-foundation {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(135deg, #333, #555);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foundation-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #0099FF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .methodology-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .methodology-preview .section-title,
    .methodology-preview .section-subtitle {
        text-align: center;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* Core Services Section */
.core-services {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #0066CC;
}

.service-card.featured {
    border: 2px solid #FF6B35;
    background: linear-gradient(135deg, #fff 0%, #fff8f6 100%);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #FF6B35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0066CC, #0099FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, #FF6B35, #FF8A5A);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.service-pricing {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 1rem;
}

.service-card.featured .service-pricing {
    color: #FF6B35;
}

.price {
    font-size: 2rem;
}

.service-value {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-cta {
    display: inline-block;
    color: #0066CC;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid #0066CC;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #0066CC;
    color: white;
    transform: translateY(-2px);
}

.service-card.featured .service-cta {
    color: #FF6B35;
    border-color: #FF6B35;
}

.service-card.featured .service-cta:hover {
    background: #FF6B35;
    color: white;
}

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

/* AI Automation Section */
.ai-automation {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A5A 100%);
    color: white;
}

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

.ai-automation .section-title {
    color: white;
    text-align: left;
}

.ai-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.ai-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.25rem;
    width: 30px;
    text-align: center;
}

.ai-cta .btn-primary {
    background: white;
    color: #FF6B35;
    border: 2px solid white;
}

.ai-cta .btn-primary:hover {
    background: transparent;
    color: white;
}

.trust-indicator {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Growth Chart Visualization */
.growth-chart {
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.chart-container {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 200px;
    margin-bottom: 2rem;
}

.chart-bar {
    width: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px 4px 0 0;
    animation: growBar 2s ease-out;
    position: relative;
}

.chart-bar:nth-child(1) { height: 30%; animation-delay: 0.2s; }
.chart-bar:nth-child(2) { height: 50%; animation-delay: 0.4s; }
.chart-bar:nth-child(3) { height: 80%; animation-delay: 0.6s; }
.chart-bar:nth-child(4) { height: 100%; animation-delay: 0.8s; }

@keyframes growBar {
    from { height: 0; }
    to { height: var(--height); }
}

.chart-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.chart-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .ai-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ai-automation .section-title {
        text-align: center;
    }
}

/* Lead Generation Section */
.lead-generation {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

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

.lead-generation .section-title,
.lead-generation .section-subtitle {
    color: white;
    text-align: left;
}

.social-proof {
    color: #0099FF;
    font-weight: 600;
    font-size: 1rem;
}

.lead-gen-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
    color: #333;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066CC;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.privacy-note {
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    margin-top: 1rem;
}

.privacy-note a {
    color: #0066CC;
    text-decoration: none;
}

@media (max-width: 768px) {
    .lead-gen-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lead-generation .section-title,
    .lead-generation .section-subtitle {
        text-align: center;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0099FF;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-cta {
    color: #0099FF !important;
    font-weight: 600;
}

.emergency-contact {
    color: #FF6B35 !important;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo img {
    height: 30px;
    opacity: 0.7;
}

.footer-info p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

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

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

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

.footer-social a {
    color: #666;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #0099FF;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        order: 1;
    }
    
    .footer-info {
        order: 2;
    }
    
    .footer-social {
        order: 3;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
a:focus,
button:focus,
input:focus,
select:focus {
    outline: 2px solid #0066CC;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid currentColor;
    }
    
    .service-card {
        border: 2px solid #333;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-cta,
    .lead-gen-form,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* Performance Optimizations */

/* GPU Acceleration for smooth animations */
.service-card,
.metric-card,
.pillar-visual,
.chart-bar,
.btn-primary,
.btn-secondary,
.testimonial,
.nav-dropdown .dropdown-content {
    will-change: transform;
}

/* Optimize fonts loading */
@font-face {
    font-family: 'Inter';
    font-display: swap;
    src: url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
}

/* Critical CSS optimizations */
.container {
    contain: layout style;
}

.hero,
.social-proof,
.methodology-preview,
.core-services,
.ai-automation,
.lead-generation,
.footer {
    contain: layout;
}

/* Lazy loading placeholder */
img[data-src] {
    background: #f0f0f0;
    background-image: linear-gradient(45deg, transparent 35%, rgba(255,255,255,.5) 35%, rgba(255,255,255,.5) 65%, transparent 65%),
                      linear-gradient(-45deg, transparent 35%, rgba(255,255,255,.5) 35%, rgba(255,255,255,.5) 65%, transparent 65%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    animation: loading 1s linear infinite;
}

@keyframes loading {
    0% {
        background-position: 0 0, 10px 10px;
    }
    100% {
        background-position: 20px 20px, 30px 30px;
    }
}

/* Additional About page styles */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #0066CC, #0099FF);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #0066CC;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 3px #0066CC;
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

.timeline-event {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;
}

.leader-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.leader-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #0066CC;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-icon {
    font-size: 0.875rem;
}

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

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.expertise-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.expertise-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.expertise-content p {
    color: #666;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.media-quotes {
    background: rgba(0, 102, 204, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0066CC;
    margin-top: 1.5rem;
}

.media-quotes blockquote {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
}

.media-quotes cite {
    font-size: 0.875rem;
    color: #666;
    font-style: normal;
}

.media-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.media-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.media-item .media-logo {
    width: 60px;
    height: 40px;
    object-fit: contain;
}

.media-content h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.media-content p {
    color: #ccc;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.award-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.award-icon {
    font-size: 2rem;
    width: 60px;
    text-align: center;
    flex-shrink: 0;
}

.award-content h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.award-content p {
    color: #ccc;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.award-detail {
    color: #0099FF;
    font-size: 0.875rem;
    font-weight: 600;
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Responsive optimizations for About page */
@media (max-width: 768px) {
    .mission-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .leadership-profile {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .leader-image {
        order: 1;
    }
    
    .leader-bio {
        order: 2;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr !important;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
        text-align: center;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .media-item {
        flex-direction: column;
        text-align: center;
    }
    
    .award-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr !important;
    }
    
    .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
}

/* Inner Page Styles */

/* Page Hero */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #666;
}

.breadcrumb a {
    color: #0066CC;
    text-decoration: none;
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066CC;
    line-height: 1;
}

.stat-label {
    color: #666;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Services Breakdown */
.services-breakdown {
    padding: 80px 0;
    background: white;
}

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

.service-item {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid #0066CC;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.service-item .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-item h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-item ul li {
    padding: 0.5rem 0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.service-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066CC;
    font-weight: bold;
}

/* Pricing Models */
.pricing-models {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #0066CC;
    background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066CC;
    line-height: 1;
}

.price span {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    margin-left: 0.25rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-description {
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
    font-style: italic;
}

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

.pricing-features ul li {
    padding: 0.75rem 0;
    color: #333;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066CC;
    font-weight: bold;
    width: 20px;
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.value-proposition {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-proposition h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

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

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.value-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.value-item p {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Industry Expertise */
.industry-expertise {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.industry-expertise .section-title,
.industry-expertise .section-subtitle {
    color: white;
}

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

.industry-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.industry-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0099FF;
}

.industry-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-study {
    background: rgba(0, 102, 204, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #0099FF;
    font-size: 0.875rem;
    color: #ddd;
}

.case-study strong {
    color: #0099FF;
}

/* Consultation Process */
.consultation-process {
    padding: 80px 0;
    background: white;
}

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

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #0066CC, #0099FF);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066CC, #0099FF);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-content ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.step-content ul li {
    padding: 0.25rem 0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.875rem;
}

.step-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066CC;
    font-weight: bold;
}

/* Consultation Form */
.consultation-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.form-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.consultation-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.875rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066CC;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #0066CC;
    border-color: #0066CC;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: "✓";
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    margin-top: 1rem;
    line-height: 1.4;
}

.form-disclaimer a {
    color: #0066CC;
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

/* Related Services */
.related-services {
    padding: 80px 0;
    background: white;
}

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

.related-service-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.related-service-card:hover {
    transform: translateY(-4px);
    background: white;
    border-color: #0066CC;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-service-card .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.related-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.related-service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #0066CC;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #0055BB;
}

/* Responsive Design for Inner Pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .value-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-content ul {
        grid-template-columns: 1fr;
    }
    
    .form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .consultation-form {
        padding: 2rem;
    }
    
    .related-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Active Navigation State */
.nav-link.active,
.dropdown-item.active {
    color: #0066CC !important;
    font-weight: 600;
}

.dropdown-item.active {
    background: rgba(0, 102, 204, 0.1);
}

/* Services Page Styles */

/* Service Categories Navigation */
.service-categories {
    background: white;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.categories-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 1rem 2rem;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    color: #0066CC;
    border-bottom-color: #0066CC;
}

/* Services Sections */
.services-section {
    padding: 60px 0;
    display: none;
}

.services-section.active {
    display: block;
}

/* Services Showcase (Core Services) */
.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-showcase-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
}

.service-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-showcase-card.featured {
    border: 2px solid #0066CC;
    background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 3rem;
    background: #0066CC;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-badge.emergency {
    background: #FF6B35;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066CC, #0099FF);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.service-meta {
    flex: 1;
}

.service-meta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-tagline {
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-pricing-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066CC;
}

.service-pricing-large .price {
    font-size: 2rem;
}

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

.service-description p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Pillars Preview */
.pillars-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.pillar-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: rgba(0, 102, 204, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.pillar-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pillar-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: #0066CC;
    margin-bottom: 0.25rem;
}

.pillar-desc {
    font-size: 0.75rem;
    color: #666;
}

/* Service Features */
.service-features {
    margin-bottom: 2rem;
}

.service-features h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.5rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066CC;
    font-weight: bold;
}

/* Service Outcomes */
.service-outcomes {
    margin-bottom: 2rem;
}

.service-outcomes h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.outcome-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-weight: 600;
}

.outcome-icon {
    font-size: 1.25rem;
}

/* Service Specializations */
.service-specializations {
    margin-bottom: 2rem;
}

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

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #0066CC;
}

.spec-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.spec-content h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.spec-content p {
    color: #666;
    font-size: 0.875rem;
    margin: 0;
}

/* Emergency Contact */
.emergency-contact {
    background: #fff5f5;
    border: 1px solid #ffcccc;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.emergency-contact h4 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.emergency-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.emergency-phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc3545;
}

.emergency-note {
    color: #666;
    font-size: 0.875rem;
}

/* vCISO Tiers */
.vciso-tiers {
    margin-bottom: 2rem;
}

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

.tier-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tier-card.featured-tier {
    background: white;
    border-color: #0066CC;
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0066CC;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tier-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.tier-price {
    font-size: 2rem;
    font-weight: 800;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

.tier-hours {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.tier-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tier-features li {
    padding: 0.5rem 0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.tier-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066CC;
    font-weight: bold;
}

/* ROI Calculator */
.roi-calculator {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.comparison-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.highlight {
    background: rgba(0, 102, 204, 0.1);
    font-weight: 700;
    color: #0066CC;
}

.comparison-label {
    font-weight: 600;
}

.comparison-value {
    font-weight: 700;
    color: #0066CC;
}

/* Consulting Areas */
.consulting-areas {
    margin-bottom: 2rem;
}

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

.area-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.area-item:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.area-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.area-item h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Engagement Models */
.engagement-models {
    margin-bottom: 2rem;
}

/* Service CTA */
.service-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-emergency {
    background: #dc3545;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-emergency:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Services Grid (Specialized Services) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #0066CC;
}

.service-card .service-header {
    margin-bottom: 1.5rem;
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066CC, #0099FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card .service-pricing {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0066CC;
}

.service-content {
    flex: 1;
}

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
    color: #1a1a1a;
}

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

.service-list li {
    padding: 0.25rem 0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.875rem;
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066CC;
    font-weight: bold;
}

.service-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.service-link {
    color: #0066CC;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #0055BB;
}

/* Training Services */
.training-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.training-intro h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.training-intro p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.training-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

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

.training-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0066CC;
    line-height: 1;
}

.training-stat .stat-label {
    color: #666;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.training-features h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.feature-icon {
    font-size: 1.25rem;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.feature-content h5 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.feature-content p {
    color: #666;
    font-size: 0.875rem;
    margin: 0;
}

.training-programs h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

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

.program-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.program-duration {
    color: #0066CC;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.program-topics {
    list-style: none;
    padding: 0;
}

.program-topics li {
    padding: 0.5rem 0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.875rem;
}

.program-topics li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066CC;
    font-weight: bold;
}

.training-cta {
    background: linear-gradient(135deg, #0066CC, #0099FF);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

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

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

.cta-buttons .btn-primary {
    background: white;
    color: #0066CC;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: #0066CC;
}

/* Emergency Services */
.emergency-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.emergency-alert {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff5f5;
    border: 2px solid #ffcccc;
    border-radius: 16px;
}

.alert-icon {
    font-size: 3rem;
    color: #dc3545;
}

.alert-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #dc3545;
}

.alert-content p {
    color: #666;
    margin-bottom: 1rem;
}

.emergency-phone {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.emergency-phone:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.response-times {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.response-item {
    flex: 1;
}

.response-time {
    font-size: 2rem;
    font-weight: 800;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

.response-desc {
    color: #666;
    font-weight: 600;
    font-size: 0.875rem;
}

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

.emergency-service-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.emergency-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #dc3545;
}

.emergency-service-card .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #dc3545;
}

.emergency-service-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.emergency-service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.emergency-service-card .service-features {
    text-align: left;
    margin-bottom: 1.5rem;
}

.emergency-service-card .service-pricing {
    font-weight: 700;
    color: #dc3545;
    font-size: 1rem;
}

.insurance-coordination {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
}

.insurance-coordination h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.insurance-coordination p {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.insurance-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.insurance-icon {
    font-size: 1.5rem;
    color: #0066CC;
    flex-shrink: 0;
}

.insurance-item h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.insurance-item p {
    color: #666;
    font-size: 0.875rem;
    margin: 0;
}

/* Service Comparison Tool */
.service-comparison {
    background: #f8f9fa;
    padding: 80px 0;
}

.comparison-tool {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tool-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 2rem;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.filter-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.875rem;
    background: white;
    color: #333;
}

.filter-group select:focus {
    outline: none;
    border-color: #0066CC;
}

#getRecommendations {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.recommendations-results {
    border-top: 2px solid #e9ecef;
    padding-top: 2rem;
}

.recommendations-results h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .categories-nav {
        gap: 1rem;
    }
    
    .category-tab {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .service-showcase-card {
        padding: 2rem;
    }
    
    .service-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .pillars-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .outcomes-grid,
    .specialization-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .service-cta {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .training-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .training-stats {
        gap: 1rem;
    }
    
    .emergency-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .response-times {
        flex-direction: column;
        gap: 1rem;
    }
    
    .emergency-services-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-filters {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}