/* Dark Theme for All Pages */

body.dark-theme {
    background: #0A0E27;
    color: white;
}

/* Page Hero - Consistent across all pages */
.page-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0A0E27 0%, #1A1A2E 50%, #0A0E27 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 166, 156, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

/* Active nav link */
.navbar-dark .nav-link.active {
    color: #00D9FF;
}

.navbar-dark .nav-link.active::after {
    width: 100%;
}

/* Impact Page Specific */
.impact-metrics {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.metric-block {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 166, 156, 0.1) 100%);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

/* Remove floating class from non-orb elements */
.metric-block.floating {
    animation: none !important;
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00D9FF 0%, #00FFF0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 0.25rem;
}

.metric-detail {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: #0A0E27;
}

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

.story-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 14, 39, 0.8) 100%);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    min-height: 400px; /* Prevent height jumps */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fix Alpine.js x-show transition jump - make both content blocks absolute */
.story-card > div[x-show] {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
}

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

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.industry-tag {
    background: rgba(0, 217, 255, 0.2);
    color: #00D9FF;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.story-impact {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card:hover .story-impact {
    padding: 1rem;
    margin-bottom: 0;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00D9FF 0%, #00FFF0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card:hover .impact-number {
    font-size: 2rem;
}

.impact-time {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    transition: font-size 0.4s ease;
}

.story-card:hover .impact-time {
    font-size: 0.75rem;
}

/* Story details - smooth height transition */
.story-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease-in-out,
                margin-top 0.4s ease;
    margin-top: 0;
}

.story-card:hover .story-details {
    max-height: 800px; /* Large enough for all content */
    opacity: 1;
    margin-top: 1.5rem;
}

.story-details h3 {
    color: #00D9FF;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 1rem 0 0.5rem;
}

.story-details h3:first-child {
    margin-top: 0;
}

.story-details p,
.story-details li {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.875rem;
}

.story-details ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.story-details li::before {
    content: '→';
    color: #00D9FF;
    margin-right: 0.5rem;
}

/* Optional: Add a subtle hint that there's more content */
.story-card::after {
    content: '...';
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(0, 217, 255, 0.5);
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.story-card:hover::after {
    opacity: 0;
}

/* ========================================
   IMPACT PAGE - Fix Alpine.js x-show Transition Jump
   ======================================== */

/*
 * Solution: Override Alpine's display:none with visibility + opacity
 * Keep both elements in the layout but visually hidden
 */

/* Force both x-show divs to always occupy space (override display:none) */
.glass.group[x-data] > div[x-show] {
    display: block !important; /* Override Alpine's display:none */
    position: absolute !important;
    top: 6.5rem;
    left: 1.5rem;
    right: 1.5rem;
    visibility: hidden !important;
    opacity: 0 !important;
    transition: opacity 0.25s ease-in-out !important, visibility 0.25s !important;
    pointer-events: none !important;
}

/* When Alpine shows the element (removes display:none), make it visible */
.glass.group[x-data] > div[x-show]:not([style*="display: none"]) {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Ensure card has minimum height to accommodate both views */
.glass.group[x-data] {
    position: relative;
    min-height: 300px;
}

/* Ensure header and title stay positioned above absolute content */
.glass.group[x-data] > .flex.items-center.justify-between,
.glass.group[x-data] > h3 {
    position: relative;
    z-index: 10;
}

/* Live Impact Counter */
.live-impact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #0A0E27 100%);
}

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

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

.counter-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00D9FF 0%, #00FFF0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.counter-label {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

/* Approach Page */
.methodology {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.method-card {
    position: relative;
    padding: 2rem;
}

.method-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00D9FF 0%, #00A69C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.method-content {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem 2rem;
}

/* Industries Page */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Note: .industry-card styles moved to INDUSTRIES PAGE IMPROVEMENTS section below (line 609+)
   and background images are handled by imagery.css */

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.industry-stats {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

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

.stat-value {
    font-size: 1.25rem;
    font-weight: bold;
    color: #00D9FF;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Start/Contact Page */
.contact-form-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

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

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00D9FF;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.form-submit {
    background: linear-gradient(135deg, #00D9FF 0%, #00A69C 100%);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

/* ========================================
   INSIGHTS PAGE STYLES
   ======================================== */

.featured-article {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #0A0E27 100%);
}

.featured-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.featured-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-category {
    background: linear-gradient(135deg, #00D9FF 0%, #00A69C 100%);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-date,
.read-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.featured-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.featured-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00D9FF 0%, #00FFF0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.read-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00D9FF 0%, #00A69C 100%);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 217, 255, 0.5);
}

/* Insights Categories & Filters */
.insights-categories {
    padding: 80px 0;
    background: #0A0E27;
}

.category-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #00D9FF;
    color: white;
    background: rgba(0, 217, 255, 0.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, #00D9FF 0%, #00A69C 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

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

.insight-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.insight-category {
    display: inline-block;
    background: rgba(0, 217, 255, 0.2);
    color: #00D9FF;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.insight-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.insight-excerpt {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Articles Grid Section */
.articles-grid {
    padding: 80px 0;
    background: #0A0E27;
}

.articles-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.article-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

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

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-category {
    display: inline-block;
    background: rgba(0, 217, 255, 0.2);
    color: #00D9FF;
    padding: 0.35rem 0.875rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.article-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-excerpt {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
}

.article-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.read-time {
    color: rgba(255, 255, 255, 0.5);
}

.article-metric {
    color: #00D9FF;
    font-weight: 600;
}

/* Transformation Intelligence Report Section */
.transformation-intelligence {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #0A0E27 100%);
}

.intelligence-report {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.report-cover {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.report-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.report-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

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

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

.report-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00D9FF 0%, #00FFF0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.report-stat .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.report-highlights {
    border-left: 3px solid #00D9FF;
    padding-left: 2rem;
}

.report-highlights h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00D9FF;
    margin-bottom: 1.5rem;
}

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

.report-highlights li {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

.report-highlights li:last-child {
    border-bottom: none;
}

.report-highlights li::before {
    content: '→';
    color: #00D9FF;
    margin-right: 1rem;
    font-weight: bold;
}

.report-cta {
    text-align: center;
    margin-top: 2rem;
}

.report-cta .btn-download {
    display: inline-block;
    background: linear-gradient(135deg, #00D9FF 0%, #00A69C 100%);
    color: white;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

.report-cta .btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.5);
}

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

    .report-highlights {
        border-left: none;
        border-top: 3px solid #00D9FF;
        padding-left: 0;
        padding-top: 2rem;
    }
}

/* ========================================
   INDUSTRIES PAGE IMPROVEMENTS
   ======================================== */

.industries-grid {
    padding: 80px 0;
    background: #0A0E27;
}

.industries-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Override the massive full-screen cards */
.industry-card {
    /* Background images come from imagery.css - don't override them here */
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    max-height: none;
    height: auto;
}

.industry-card.major {
    /* Background images handled by imagery.css with dark overlay */
    border-color: rgba(0, 217, 255, 0.25);
}

.industry-card:hover {
    transform: translateY(-10px);
    border-color: #00D9FF;
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
}

.industry-header {
    margin-bottom: 1.5rem;
}

.industry-header .industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.industry-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.industry-clients {
    color: rgba(0, 217, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

.industry-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 0.5rem;
}

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

.industry-metrics .metric {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00D9FF 0%, #00FFF0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.industry-solutions {
    margin: 1.5rem 0;
}

.industry-solutions h4 {
    color: #00D9FF;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

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

.industry-solutions li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.industry-solutions li:last-child {
    border-bottom: none;
}

.industry-solutions li::before {
    content: '→';
    color: #00D9FF;
    margin-right: 0.75rem;
    font-weight: bold;
}

.industry-case-study {
    background: rgba(0, 217, 255, 0.05);
    border-left: 3px solid #00D9FF;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.industry-case-study strong {
    color: #00D9FF;
    display: block;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive for Insights & Industries */
@media (max-width: 768px) {
    .featured-content {
        padding: 2rem 1.5rem;
    }

    .featured-title {
        font-size: 1.75rem;
    }

    .featured-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-filters {
        justify-content: flex-start;
    }

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

    .industries-layout {
        grid-template-columns: 1fr;
    }

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

    .capability-card {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* ========================================
   CROSS-INDUSTRY CAPABILITIES SECTION
   ======================================== */

.cross-industry {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A0E27 0%, #1A1A2E 100%);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.capability-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.15);
}

.capability-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.capability-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.capability-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
    flex-grow: 1;
}

.capability-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.capability-stats .stat {
    text-align: center;
}

.capability-stats .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00D9FF 0%, #00FFF0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.capability-stats .stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   INDUSTRY SELECTION SECTION
   ======================================== */

.industry-selection {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #0A0E27 100%);
}

.additional-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.industry-tag {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.industry-tag:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00D9FF;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.2);
}

.industry-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #00D9FF;
    color: #00D9FF;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #00D9FF 0%, #00A69C 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 217, 255, 0.4);
}