:root {
    /* Color Palette - Updated to match ZD Communication Logo */
    --color-primary: #004098;
    /* ZD Blue (Brand Primary) */
    --color-secondary: #0072CE;
    /* Lighter Blue (Brand Secondary/Gradient) */
    --color-accent: #f59e0b;
    /* Amber for highlights (remains good contrast) */
    --color-text-main: #1e293b;
    --color-text-light: #64748b;
    --color-text-white: #ffffff;
    --color-bg-body: #f8fafc;
    --color-bg-white: #ffffff;
    --color-bg-light: #f1f5f9;
    --color-border: #e2e8f0;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --transition: all 0.3s ease;

    /* Layout */
    --container-width: 1200px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-body);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

h2 {
    font-size: 2.25rem;
}

.product-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.product-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Constrain Product Grid to "shrink" cards as requested, but increase gap to disperse them */
.product-grid-container {
    max-width: 1100px !important;
    /* Forces cards to be narrower */
    margin: 0 auto;
}

.product-grid-container .grid {
    gap: 3rem;
    /* "Slightly dispersed" - larger gap between modules */
}

.section {
    padding: var(--spacing-xl) 0;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.bg-white {
    background-color: var(--color-bg-white);
}

.bg-primary {
    background-color: var(--color-primary);
    color: var(--color-text-white);
}

/* CTA Specific Background for separation from Footer */
.bg-cta {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}

.bg-dark {
    background-color: var(--color-primary);
    color: var(--color-text-white);
}

.grid {
    display: grid;
    gap: var(--spacing-md);
    align-items: stretch;
    /* Ensure cards stretch to full height */
}

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

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

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

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

.items-center {
    align-items: center;
}

.gap-sm {
    gap: var(--spacing-sm);
}

.gap-md {
    gap: var(--spacing-md);
}

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

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

/* Components: Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

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

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

.btn-outline {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-secondary);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--color-primary);
}

.btn-white:hover {
    opacity: 0.9;
}

/* Header & Nav */
.site-header {
    background-color: var(--color-bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.25rem 0;
}

.site-header .container {
    max-width: 1800px !important;
    /* 1.5x standard width (1200px) */
    padding-left: 2rem;
    padding-right: 2rem;
    /* Ensure padding on smaller screens */
}

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

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

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-main);
    position: relative;
}

.nav-link:hover {
    color: var(--color-secondary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 0.5rem 0;
}

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

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background-color: var(--color-bg-light);
    color: var(--color-secondary);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../img/hero-bg.jpg');
    /* Placeholder */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    text-align: left;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* New: Transparent Text Box for Hero */
.hero-text-box {
    background: rgba(255, 255, 255, 0.4);
    /* Higher transparency */
    backdrop-filter: blur(8px);
    padding: 2.5rem;
    /* Reduced from 3rem */
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    /* Center the box horizontally */
    max-width: 1200px;
    text-align: center;
    /* Center text inside */

    /* Consistency Enforcement */
    min-height: 300px;
    /* Reduced from 400px to reduce blank space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Center buttons inside the text box */
.hero-text-box .flex {
    justify-content: center;
    margin-top: auto;
    /* Push buttons to distinct position if needed, or keep standard spacing */
}

.hero-text-box h1 {
    color: var(--color-primary);
    text-shadow: none;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text-box p {
    color: var(--color-text-main);
    opacity: 1;
    margin-bottom: 2.5rem;
    max-width: 90%;
    /* Prevent text from touching edges too much */
}

/* Cards */
.card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-md);
    transition: var(--transition);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    /* height: 100%;  <-- REMOVED Global Height to prevent layout bugs in auto-sized containers */
}

/* Only apply full height to cards in grid columns where alignment is needed */
.grid-3 .card,
.grid-4 .card {
    height: 100%;
}

.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.card .btn {
    width: 100%;
    text-align: center;
    display: block;
    margin-top: auto;
    /* Push button to bottom */
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    min-height: 3.5rem;
    /* Force 2 lines alignment */
    display: flex;
    align-items: center;
    /* Center text vertically if 1 line */
}

.card-title a {
    text-decoration: none;
    transition: var(--transition);
}

.card-title a:hover {
    color: var(--color-secondary);
}

.card-tag {
    display: inline-block;
    background: var(--color-bg-light);
    color: var(--color-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    align-self: flex-start;
    /* Prevent tag from stretching */
}

.card-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    min-height: 5rem;
    /* Force 3 lines alignment */
}

/* Engineering/Matrix Tables */
.tech-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.tech-table th,
.tech-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.tech-table th {
    background: var(--color-bg-light);
    font-weight: 600;
    color: var(--color-primary);
}

.tech-table tr:last-child td {
    border-bottom: none;
}

/* Features List (Why Us) */
.feature-card {
    text-align: left;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

/* Footer Alignment Fixes */
.footer-brand .logo {
    margin-bottom: 0;
    line-height: 0;
    /* Remove image descender space */
    margin-top: -8px;
    /* Fine-tune to align perfectly with H4 headers */
}

.footer-brand .company-name {
    margin-top: 1rem;
    /* Reduced gap */
    color: #94a3b8;
    /* Match slogan color */
    font-size: 1rem;
    font-weight: 400;
    /* Normal weight */
}

/* Footer */
.site-footer {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-col a {
    color: #94a3b8;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Stats Section (AW2S Style) */
.stats-section {
    background-color: var(--color-primary);
    color: white;
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    /* Removed border effects as requested */
    border: none !important;
    transform: none !important;
    transition: none !important;
}

/* Explicitly disable hover effects */
.stat-item:hover {
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
}

.stat-item:last-child {
    border: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    /* Ensure no text effects */
    text-shadow: none !important;
    transform: none !important;
    transition: none !important;
    color: white !important;
    opacity: 1 !important;
}

.stat-number:hover {
    color: white !important;
    transform: none !important;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e2e8f0;
}

/* Image Tiles (Industries) */
.image-tile {
    position: relative;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

.image-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transition: var(--transition);
}

.image-tile:hover::before {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4));
}

.tile-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: white;
    width: 100%;
}

.tile-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.tile-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.25rem;
    }

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

    .stat-item {
        border-right: none;
        border-bottom: none;
        /* Removed mobile border to match desktop */
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .nav-menu {
        display: none;
        /* Mobile menu to be implemented if needed, simple stack for now */
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

/* Social Proof Strip */
.social-proof {
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
}

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

.social-proof-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.social-proof-map {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.map-icon {
    font-size: 1.5rem;
}

/* Mini Process Strip */
.process-strip {
    background-color: white;
    padding: 4rem 0;
    border-top: 1px solid var(--color-border);
}

.process-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: var(--color-border);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    background: white;
    padding: 0 1rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-bg-light);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-main);
}

@media (max-width: 768px) {
    .social-proof-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .process-steps {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .process-steps::before {
        width: 2px;
        height: calc(100% - 60px);
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* --- About Page Component Styles --- */

/* Facility Photo Grid */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: var(--spacing-sm);
}

.facility-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.facility-item.large {
    grid-row: span 2;
    height: auto;
}

/* Timeline (Project Flow) */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

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

.timeline-marker {
    position: absolute;
    left: -2.6rem;
    top: 0;
    width: 1.25rem;
    height: 1.25rem;
    background: var(--color-secondary);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.team-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.team-role {
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

/* NDA Box */
.nda-box {
    background: #f8fafc;
    border: 2px dashed var(--color-border);
    padding: 3rem;
    text-align: center;
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Styles */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    padding: 1.5rem;
}

.faq-question {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    display: block;
}


/* --- Hero Carousel Styles --- */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    /* More reasonable fixed height for banners */
    background-color: white;
    /* Fallback for contain */
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 500px;
    }
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content */
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 3;
}

/* Default Overlay */
.card.has-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Slightly lighter overlay so background is visible but text remains clear */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.85));
    z-index: 1;
    /* Was -1, moved to 1 to sit ON TOP of background image */
}

/* Ensure background covers the whole card */
.card.has-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Ensure content is above overlay */
.card.has-bg .card-content {
    position: relative;
    z-index: 2;
}

/* Adjust text colors for dark background */
.card.has-bg .card-title {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.card.has-bg .card-desc {
    color: #e2e8f0;
    /* Brighter grey/white */
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
    /* Enhance readability */
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.6));
    z-index: 2;
}

/* Modifiers */
.carousel-slide.no-overlay::before {
    display: none;
}

.carousel-slide.bg-contain {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #0b1122;
    /* Matches the deep blue of the product image */
}

/* Content Positioning */
.carousel-slide .hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    /* Force center for better balance */
}

/* Hide Text for Graphic Slides */
.carousel-slide.text-hidden h1,
.carousel-slide.text-hidden p {
    display: none;
}

/* Buttons for Graphic Slides - Positioned at bottom */
.carousel-slide.text-hidden .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 80px;
    /* Space for indicators */
    align-items: center;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
    border-color: white;
}

/* Factory Grid Fix */
.facility-item {
    position: relative;
    /* Ensure overlay is positioned relative to this card */
}

/* Overlay for text labels on images */
.facility-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    /* Gradient for readability */
    color: white;
    font-weight: 500;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    /* Let clicks pass through if needed */
}

/* Spec Card Styles */
.spec-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem 1rem;
    border-radius: var(--radius-sm);
    background-color: var(--color-bg-light);
    border: 1px solid transparent;
    transition: var(--transition);
    height: 100%;
    cursor: default;
}

.section.bg-light .spec-card {
    background-color: var(--color-bg-white);
    box-shadow: var(--shadow-sm);
}

.section.bg-white .spec-card {
    background-color: var(--color-bg-light);
    border-color: var(--color-border);
}

.spec-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);
}

.spec-card .spec-title {
    font-weight: 700;
    font-size: 0.95rem;
    /* Reduced from 1.1rem */
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.spec-card .spec-desc {
    font-size: 0.75rem;
    /* Reduced from 0.85rem */
    color: var(--color-text-light);
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.spec-card .spec-sub {
    font-size: 0.75rem;
    /* Reduced from 0.8rem */
    color: var(--color-text-light);
    opacity: 0.8;
}

/* New Utilities for Engineering Table (User Request) */
.bg-sky-light {
    background-color: #f0f9ff !important;
    /* Very light sky blue */
}

.header-dark-blue {
    color: #004098 !important;
    /* Brand Primary Blue for header title */
}

.table-sky th {
    background-color: #f0f9ff !important;
    /* Light blue header bg */
    color: #004098 !important;
    /* Dark blue header text */
    font-weight: 700;
    border-bottom: 2px solid #e0f2fe;
    /* Light blue border */
}

.table-sky td {
    color: #334155;
    /* Slate-700 for body text */
}