@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&display=swap');

/* ==========================================================================
   YS CIRCUIT - PRO MAX High-Tech Edition
   Clean, Professional Tech Aesthetic (Apple/Tesla Style)
   ========================================================================== */

/* CSS Variables - Clean High-Tech Palette */
:root {
    /* Deep Space Backgrounds */
    --bg-deep: #000000;
    --color-bg-primary: #0A0A0A;
    --color-bg-secondary: #141414;
    --color-bg-tertiary: #1A1A1A;
    --color-bg-gradient-start: #0A0A0A;
    --color-bg-gradient-end: #0F0F0F;

    /* Clean Tech Blue - Subtle accent */
    --color-blue: #2997FF;
    --color-blue-hover: #0071E3;
    --color-blue-subtle: rgba(41, 151, 255, 0.1);

    /* Legacy support */
    --color-cyan: var(--color-blue);
    --color-cyan-glow: rgba(41, 151, 255, 0.3);
    --color-cyan-dim: rgba(41, 151, 255, 0.1);
    --color-magenta: #BF5AF2;
    --color-magenta-glow: rgba(191, 90, 242, 0.3);
    --color-yellow: #FFD60A;
    --color-yellow-glow: rgba(255, 214, 10, 0.3);
    --color-green: #30D158;
    --color-green-glow: rgba(48, 209, 88, 0.3);

    --color-accent: var(--color-blue);
    --color-accent-hover: var(--color-blue-hover);
    --color-accent-glow: rgba(41, 151, 255, 0.3);
    --color-accent-secondary: #5AC8FA;
    --accent-gradient: linear-gradient(135deg, #2997FF 0%, #5AC8FA 100%);

    /* Text Colors */
    --color-text-primary: #F5F5F7;
    --color-text-secondary: #86868B;
    --color-text-muted: #6E6E73;

    /* Clean Borders */
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-solid: rgba(255, 255, 255, 0.08);

    /* Clean Glass Effect */
    --color-glass: rgba(20, 20, 20, 0.8);
    --color-glass-border: rgba(255, 255, 255, 0.05);

    /* Typography - Clean, professional fonts */
    --font-display: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Menlo', monospace;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-glow: all 0.4s ease-out;
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Subtle shadows instead of glow */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-blue: 0 4px 20px rgba(41, 151, 255, 0.15);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    /* Clean subtle gradient - no pattern overlay */
    background: linear-gradient(180deg, #0A0A0A 0%, #0F0F0F 50%, #0A0A0A 100%);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--color-text-primary);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-blue);
    border-radius: 2px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-text-primary);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-family: var(--font-display);
    font-weight: 600;
}

p {
    color: var(--color-text-secondary);
    max-width: 65ch;
}

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

a:hover {
    color: var(--color-accent-secondary);
}

/* Skip to Content Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--color-accent);
    color: var(--color-bg-primary);
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10000;
    transition: top 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0 0 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Focus Visible Styles for Accessibility */
*:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Remove default focus for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: linear-gradient(180deg, rgba(10, 14, 23, 0.95) 0%, transparent 100%);
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: var(--color-glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 30px rgba(0, 240, 255, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: 0.1em;
}

.nav-logo img,
.footer-logo img {
    display: block;
    width: 220px;
    height: 44px;
    max-width: 100%;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.nav-logo-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 4px;
}

.nav-logo-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    position: relative;
    padding: 0.5rem 0;
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px var(--color-accent);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.25rem;
    background: var(--color-blue);
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 980px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--color-blue-hover);
    transform: scale(1.02);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    border: none;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text-primary);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Section - SpaceX/Tesla Style Full Screen
   ========================================================================== */
.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--color-bg-primary);
}

/* Animated circuit grid background */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Large glowing orbs */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    animation: glowFloat 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: 30%;
    background: radial-gradient(circle, #0088FF 0%, transparent 70%);
    animation: glowFloat 10s ease-in-out infinite reverse;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 4rem 6rem;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--color-accent); }
    50% { opacity: 0.4; box-shadow: 0 0 0 var(--color-accent); }
}

.hero-title {
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero-title .line {
    display: block;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--color-accent) 0%, #00E5FF 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-number span {
    color: var(--color-accent);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--color-blue);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 980px;
    padding: 12px 24px;
    border: none;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--color-blue-hover);
    transform: scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 980px;
    padding: 12px 24px;
    transition: all 0.2s ease;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-cyan);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.btn-secondary:hover {
    background: var(--color-blue);
    color: #fff;
}

/* PCB Circuit Visual - Large Background Element */
.hero-visual {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: 48%;
    max-width: 600px;
    aspect-ratio: 1;
    opacity: 0.18;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

@media (max-width: 1200px) {
    .hero-visual {
        right: -5%;
        width: 55%;
        opacity: 0.12;
    }
}

@media (max-width: 992px) {
    .hero-visual {
        display: none;
    }
}

.pcb-board {
    width: 100%;
    height: 100%;
    position: relative;
}

.pcb-bg {
    fill: rgba(0, 212, 255, 0.02);
}

/* Static traces */
.traces-static {
    opacity: 0.4;
}

/* Active pads */
.pads-glow .pad-active {
    animation: padPulse 1.5s ease-in-out infinite;
}

.pads-glow .pad {
    opacity: 0.7;
    animation: padGlow 2s ease-in-out infinite alternate;
}

@keyframes padPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.2);
        filter: brightness(1.5);
    }
}

@keyframes padGlow {
    from {
        filter: drop-shadow(0 0 3px var(--color-accent));
    }
    to {
        filter: drop-shadow(0 0 8px var(--color-accent));
    }
}

/* Chip assembly */
.chip-assembly {
    transform-origin: center;
}

.chip-body {
    fill: rgba(10, 14, 23, 0.95);
}

.chip-core {
    animation: coreGlow 1.5s ease-in-out infinite alternate;
}

@keyframes coreGlow {
    from {
        filter: drop-shadow(0 0 5px var(--color-accent));
    }
    to {
        filter: drop-shadow(0 0 20px var(--color-accent)) drop-shadow(0 0 40px var(--color-accent));
    }
}

.chip-pins {
    opacity: 0.8;
}

/* Sparks animation */
.spark {
    filter: drop-shadow(0 0 4px #FFFFFF);
}

/* Current flow animation enhancement */
.electric-pulse {
    stroke-linecap: round;
}

/* Outer glow ring animation */
.core-glow {
    transform-origin: center;
}

/* Pulse ring */
.pulse-ring {
    transform-origin: center;
    filter: drop-shadow(0 0 10px var(--color-accent));
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================================================
   Sections Common
   ========================================================================== */
.section {
    padding: 8rem 2rem;
    position: relative;
}

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

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services {
    background: var(--color-bg-secondary);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.02) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--color-accent);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--color-border);
    border-radius: 12px;
}

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

.service-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-feature {
    padding: 0.5rem 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-feature::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats {
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: var(--color-border);
}

.stat-card:last-child::after {
    display: none;
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.25rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-us {
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-us-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.why-us-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    background: rgba(0, 0, 0, 0.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.why-us-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.why-us-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.why-us-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
   Industries Section
   ========================================================================== */
.industries {
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.industry-card {
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    transition: var(--transition-smooth);
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    background: rgba(0, 0, 0, 0.02);
}

.industry-media {
    position: relative;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
}

.industry-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(17, 17, 17, 0.12) 100%);
    pointer-events: none;
}

.industry-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.industry-card:hover .industry-media img {
    transform: scale(1.04);
}

.industry-body {
    padding: 1.45rem 1.45rem 1.6rem;
}

.industry-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.industry-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.capabilities-industries-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 1400px;
}

/* ==========================================================================
   Certifications Section
   ========================================================================== */
.certifications {
    background: var(--color-bg-primary);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cert-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.cert-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    background: rgba(0, 0, 0, 0.02);
}

.cert-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-bg-primary);
}

.cert-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.cert-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--color-accent);
    background: rgba(0, 212, 255, 0.03);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-bg-primary);
    font-size: 1rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 1rem;
}

/* ==========================================================================
   Process Flow Section
   ========================================================================== */
.process-flow {
    background: var(--color-bg-primary);
    padding: 6rem 2rem;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-item {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
    transition: var(--transition-smooth);
}

.process-item:hover .process-icon {
    background: var(--color-accent);
    color: var(--color-bg-primary);
    border-color: var(--color-accent);
    box-shadow: 0 0 30px var(--color-accent-glow);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0, 212, 255, 0.15);
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.process-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.process-item p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-border) 0%, var(--color-accent) 50%, var(--color-border) 100%);
    margin-top: 3.5rem;
    flex-shrink: 0;
}

/* ==========================================================================
   Stats Extended Section
   ========================================================================== */
.stats-extended {
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
    padding: 4rem 2rem;
}

.stats-extended-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-extended-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-extended-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    background: rgba(0, 0, 0, 0.02);
}

.stat-extended-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
}

.stat-extended-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-extended-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.stat-extended-card p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq {
    background: var(--color-bg-primary);
    padding: 6rem 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--color-accent);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
}

.faq-question svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--color-border);
    margin-top: -0.5rem;
    padding-top: 1rem;
    margin-left: 2.75rem;
}

.faq-answer p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.partners {
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
    padding: 6rem 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.partner-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    background: rgba(0, 212, 255, 0.03);
}

.partner-logo {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.partner-item span {
    font-weight: 600;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* ==========================================================================
   About Page
   ========================================================================== */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 10rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.page-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.page-hero-title {
    margin-bottom: 1.5rem;
}

.page-hero-description {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-story {
    background: var(--color-bg-secondary);
}

.about-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, var(--color-bg-secondary) 100%);
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
}

.about-badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
}

.about-badge-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.about-title {
    margin-bottom: 1.5rem;
}

.about-description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.value-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-primary);
    font-weight: bold;
}

.value-text {
    font-weight: 600;
    color: var(--color-text-primary);
}

/* ==========================================================================
   Timeline
   ========================================================================== */
.timeline-section {
    background: var(--color-bg-primary);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-accent), var(--color-accent-secondary));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 30px);
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 30px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--color-accent);
    border-radius: 50%;
    border: 3px solid var(--color-bg-primary);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.timeline-content {
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 400px;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.timeline-title {
    margin-bottom: 0.5rem;
}

.timeline-description {
    font-size: 0.95rem;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    background: var(--color-bg-secondary);
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(13, 26, 20, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    font-weight: 600;
    color: var(--color-text-primary);
}

/* ==========================================================================
   Capabilities Page
   ========================================================================== */
.caps-hero {
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
}

.caps-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.cap-card {
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.cap-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

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

.cap-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.02) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cap-title {
    margin-bottom: 0.25rem;
}

.cap-subtitle {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

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

.cap-spec {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.cap-spec-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.cap-spec-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* ==========================================================================
   About Page - Core Values
   ========================================================================== */
.core-values {
    background: var(--color-bg-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    background: rgba(0, 0, 0, 0.02);
}

.value-icon-large {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.value-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* ==========================================================================
   About Page - Equipment
   ========================================================================== */
.equipment {
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.equipment-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    background: rgba(0, 0, 0, 0.02);
}

.equipment-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 212, 255, 0.1);
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    line-height: 1;
}

.equipment-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
    position: relative;
}

.equipment-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    position: relative;
}

/* ==========================================================================
   About Page - Leadership
   ========================================================================== */
.leadership {
    background: var(--color-bg-primary);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.leader-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    background: rgba(0, 0, 0, 0.02);
}

.leader-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--color-border);
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
    display: block;
}

.leader-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.leader-title {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.leader-bio {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ==========================================================================
   Mission Vision Section
   ========================================================================== */
.mission-vision {
    background: var(--color-bg-primary);
    padding: 6rem 2rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    background: rgba(0, 0, 0, 0.02);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--color-accent);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

.mission-card p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* ==========================================================================
   Sustainability Section
   ========================================================================== */
.sustainability {
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
    padding: 6rem 2rem;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sustainability-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.sustainability-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    background: rgba(0, 0, 0, 0.02);
}

.sustainability-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
}

.sustainability-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.sustainability-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* Materials Section */
.materials-section {
    background: var(--color-bg-primary);
}

.materials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.material-card {
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.material-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.material-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.material-name {
    margin-bottom: 0.5rem;
}

.material-value {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Process Flow */
.process-section {
    background: var(--color-bg-secondary);
}

.process-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-secondary));
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 1rem;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    position: relative;
    transition: var(--transition-smooth);
}

.process-step:hover .step-number {
    border-color: var(--color-accent);
    box-shadow: 0 0 30px var(--color-accent-glow);
    transform: scale(1.1);
}

.step-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Quote Page
   ========================================================================== */
.quote-section {
    min-height: calc(100vh - 80px);
    padding-top: 120px;
}

.quote-container {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
}

.quote-header {
    padding: 2rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quote-header h2 {
    margin: 0;
}

.quote-badge {
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-accent);
}

.quote-iframe {
    width: 100%;
    min-height: 700px;
    border: none;
}

/* ==========================================================================
   Footer - Cyberpunk Edition
   ========================================================================== */
.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-cyan), var(--color-magenta), var(--color-green), transparent);
    box-shadow: 0 0 20px var(--color-cyan-glow);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
    border-radius: 6px;
    position: relative;
}

.footer-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--color-accent);
    color: var(--color-bg-primary);
}

.footer-column h4 {
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-link {
    display: block;
    padding: 0.5rem 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--color-cyan);
    transform: translateX(5px);
    text-shadow: 0 0 10px var(--color-cyan);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--color-text-muted);
}

.footer-legal a:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   Enhanced Footer (New)
   ========================================================================== */
.footer {
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, #0a0f1a 100%);
    border-top: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.footer-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.footer-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.footer-glow-1 {
    top: -200px;
    left: -100px;
    background: var(--color-accent);
}

.footer-glow-2 {
    bottom: -200px;
    right: -100px;
    background: #0088FF;
}

.footer-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin: 0.5rem 0 1.25rem;
    text-transform: uppercase;
}

.footer-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p,
.contact-item a {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

.contact-item a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-accent-hover);
}

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

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-accent);
    color: var(--color-bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.footer-columns {
    display: contents;
}

.footer-column {
    padding-top: 0.5rem;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    padding: 0.4rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links li a svg {
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: var(--color-accent);
}

.footer-links li a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.footer-links li a:hover svg {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-copyright p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    color: var(--color-accent);
    letter-spacing: 0.5px;
}

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

.footer-legal a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-accent);
}

.footer-legal a:hover::after {
    width: 100%;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

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

/* ==========================================================================
   Animations & Effects - Cyberpunk Edition
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal.active::before {
    opacity: 1;
}

.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px var(--color-accent-glow); }
    to { box-shadow: 0 0 40px var(--color-accent-glow); }
}

/* Circuit Pattern */
.circuit-bg {
    position: relative;
    overflow: hidden;
}

.circuit-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v30M0 30h30' stroke='rgba(0,212,255,0.1)' stroke-width='1' fill='none'/%3E%3Ccircle cx='30' cy='30' r='3' fill='rgba(0,212,255,0.2)'/%3E%3C/svg%3E");
    animation: circuitMove 30s linear infinite;
}

@keyframes circuitMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Data Visualization Effect */
.data-line {
    position: relative;
    overflow: hidden;
}

.data-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    animation: dataFlow 3s linear infinite;
}

@keyframes dataFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-secondary));
    z-index: 1001;
    transition: width 0.1s;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }

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

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

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

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

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

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

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

    /* New responsive for capabilities page at 1200px */
    .cap-specs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-content {
        padding: 3rem 2rem;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        text-align: center;
        font-size: clamp(2.5rem, 7vw, 4rem);
        line-height: 1.1;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(1rem, 1.8vw, 1.2rem);
    }

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

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

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

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

    .process-connector {
        display: none;
    }

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

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

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

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

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

    /* New responsive for capabilities page at 992px */
    .cap-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Technical Capabilities Section - Tablet */
    .tech-specs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }

    /* Nav logo responsive */
    .nav-logo svg,
    .nav-logo img {
        width: 150px !important;
        height: 32px !important;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0.75rem 1rem;
        position: relative;
        overflow: visible;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        position: relative;
        min-height: 44px;
    }

    .nav-logo svg,
    .nav-logo img {
        width: 130px !important;
        height: 28px !important;
    }

    /* Hide desktop nav elements on mobile */
    .nav-links:not(.active) {
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
    }

    /* Mobile nav links - drawer style */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--color-bg-primary);
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        gap: 0;
        border-left: 1px solid var(--color-border);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    /* Overlay backdrop */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--color-border);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-link::after {
        content: '→';
        color: var(--color-accent);
        opacity: 0;
        transform: translateX(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--color-accent);
    }

    /* Get Quote button in drawer */
    .nav-links .nav-cta {
        display: flex;
        margin-top: 1.5rem;
        justify-content: center;
        font-size: 1rem;
        padding: 1rem;
    }

    /* Hide desktop nav CTA (will show in drawer) */
    .nav-cta {
        display: none !important;
    }

    /* Hamburger menu */
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        cursor: pointer;
        z-index: 1001;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        padding: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }

    .mobile-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--color-text-primary);
        border-radius: 2px;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        transform-origin: center;
    }

    .mobile-toggle span:nth-child(1) {
        transform-origin: top left;
    }

    .mobile-toggle span:nth-child(3) {
        transform-origin: bottom left;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 3px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -3px);
    }

    .nav-cta {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 70px;
    }

    .hero-content {
        padding: 2rem 1.25rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
    }

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

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-number span {
        font-size: 1.25rem;
    }

    .hero-stat-label {
        font-size: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

    .stat-card {
        padding: 1.25rem 1rem;
    }

    .stat-card-icon {
        width: 48px;
        height: 48px;
    }

    .stat-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .stat-card-value {
        font-size: 1.5rem;
    }

    .stat-card-label {
        font-size: 0.8rem;
    }

    .stat-card::after {
        display: none;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-dot {
        left: 20px;
        width: 16px;
        height: 16px;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo svg,
    .footer-logo img {
        width: 120px !important;
        height: 28px !important;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        font-size: 0.8rem;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .cap-specs {
        grid-template-columns: 1fr;
    }

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

    /* Core Values Tablet */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-icon-large {
        width: 60px;
        height: 60px;
    }

    /* Equipment Tablet */
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    /* Testing Capabilities Tablet */
    .testing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testing-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .testing-icon {
        margin-bottom: 0;
    }

    /* Industries Tablet */
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Quote Section Tablet */
    .quote-container {
        padding: 1.5rem;
    }

    .quote-header h2 {
        font-size: 1.35rem;
    }

    .quote-iframe {
        height: 550px;
    }

    /* Page Hero Tablet */
    .page-hero {
        padding: 7rem 2rem 4rem;
    }

    .page-hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .page-hero-description {
        font-size: 1rem;
    }

    /* About page tablet */
    .about-content h2 {
        font-size: 1.75rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    /* Quality Badges */
    .quality-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .quality-badge {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    /* Sustainability Tablet */
    .sustainability-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .sustainability-item {
        padding: 1.25rem;
    }

    /* Timeline Tablet */
    .timeline {
        padding: 0 1rem;
    }

    .timeline-item {
        padding: 1.5rem;
    }

    .timeline-year {
        font-size: 2rem;
    }

    .timeline-content h3 {
        font-size: 1.15rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }

    /* Features Row Tablet */
    .section[style*="background: var(--color-bg-secondary)"] > div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem;
    }

    .section[style*="background: var(--color-bg-secondary)"] > div[style*="grid-template-columns: repeat(4, 1fr)"] > div {
        padding: 1.25rem;
    }

    /* CTA Section Tablet */
    .section[style*="max-width: 800px"], .section[style*="max-width: 1000px"] {
        padding: 4rem 2rem;
    }

    .section[style*="max-width: 800px"] h2,
    .section[style*="max-width: 1000px"] h2 {
        font-size: 1.75rem;
    }

    .section[style*="max-width: 800px"] p,
    .section[style*="max-width: 1000px"] p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    /* Core Values Mobile */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .value-card {
        padding: 1.25rem;
    }

    .value-icon-large {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .value-icon-large svg {
        width: 24px;
        height: 24px;
    }

    .value-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .value-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    /* Equipment Mobile */
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .equipment-card {
        padding: 1.25rem;
    }

    .equipment-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .equipment-card h3 {
        font-size: 1rem;
    }

    .equipment-card ul {
        font-size: 0.85rem;
    }

    .equipment-card ul li {
        padding: 0.25rem 0;
    }

    /* Testing Capabilities Mobile */
    .testing-grid {
        grid-template-columns: 1fr;
    }

    .testing-card {
        padding: 1.25rem;
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
    }

    .testing-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .testing-content h3 {
        font-size: 1rem;
    }

    .testing-content p {
        font-size: 0.85rem;
    }

    /* Industries Mobile */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .industry-item {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .industry-item svg {
        width: 20px;
        height: 20px;
        margin-bottom: 0.5rem;
    }

    /* Timeline Mobile */
    .timeline {
        padding: 0;
    }

    .timeline-item {
        padding: 1.25rem;
    }

    .timeline-year {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .timeline-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Features Row Mobile */
    .section[style*="background: var(--color-bg-secondary)"] > div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    .section[style*="background: var(--color-bg-secondary)"] > div[style*="grid-template-columns: repeat(4, 1fr)"] > div {
        padding: 1rem;
    }

    .section[style*="background: var(--color-bg-secondary)"] > div[style*="grid-template-columns: repeat(4, 1fr)"] > div h4 {
        font-size: 0.95rem;
    }

    .section[style*="background: var(--color-bg-secondary)"] > div[style*="grid-template-columns: repeat(4, 1fr)"] > div p {
        font-size: 0.8rem;
    }

    .section[style*="background: var(--color-bg-secondary)"] > div[style*="grid-template-columns: repeat(4, 1fr)"] > div svg {
        width: 24px;
        height: 24px;
    }

    /* CTA Section Mobile */
    .section[style*="max-width: 800px"], .section[style*="max-width: 1000px"] {
        padding: 3rem 1rem;
    }

    .section[style*="max-width: 800px"] h2,
    .section[style*="max-width: 1000px"] h2 {
        font-size: 1.5rem;
    }

    .section[style*="max-width: 800px"] p,
    .section[style*="max-width: 1000px"] p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Quote Section Mobile */
    .quote-container {
        padding: 1.25rem;
    }

    .quote-header {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .quote-header h2 {
        font-size: 1.25rem;
    }

    .quote-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }

    .quote-iframe {
        height: 500px;
        border-radius: 8px;
    }

    /* Gallery Mobile */
    .gallery-item {
        padding: 1rem;
    }

    .gallery-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .gallery-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .gallery-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* FAQ Mobile */
    .faq-item {
        padding: 1.25rem;
    }

    .faq-question {
        font-size: 1rem;
        line-height: 1.4;
    }

    .faq-answer {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-top: 0.75rem;
    }

    /* Contact Info in footer */
    .footer-contact {
        margin-top: 1rem !important;
    }

    .footer-contact p {
        font-size: 0.8rem !important;
        margin: 0 0 0.5rem 0 !important;
    }

    /* Page Hero for inner pages */
    .page-hero {
        padding: 6rem 1rem 3rem;
        min-height: 40vh;
    }

    .page-hero-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .page-hero-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    /* About page sections */
    .about-content h2 {
        font-size: 1.5rem;
    }

    .about-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .about-stats {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .about-stat {
        padding: 0.75rem 1rem;
    }

    .about-stat-value {
        font-size: 1.25rem;
    }

    .about-stat-label {
        font-size: 0.75rem;
    }

    /* Materials Grid */
    .materials-grid {
        gap: 1rem;
    }

    .material-item {
        padding: 1rem;
    }

    .material-item h4 {
        font-size: 0.95rem;
    }

    .material-item p {
        font-size: 0.8rem;
    }

    /* Quality Badges Mobile */
    .quality-badges {
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
    }

    .quality-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    /* Sustainability Mobile */
    .sustainability-item {
        padding: 1rem;
    }

    .sustainability-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }

    .sustainability-item h4 {
        font-size: 0.95rem;
    }

    .sustainability-item p {
        font-size: 0.8rem;
    }

    .stats-extended-grid {
        grid-template-columns: 1fr;
    }

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

    .partner-item {
        padding: 1.25rem;
    }

    /* Technical Specs section mobile */
    .section > div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    /* Industries section mobile */
    .section > div[style*="grid-template-columns: repeat(6, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

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

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

    /* New responsive for capabilities page */
    .cap-specs {
        grid-template-columns: 1fr;
    }

    /* Why YS CIRCUIT section */
    .section > div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    /* Technical Specs section on index */
    .section > div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 1rem;
    }

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

    .section-description {
        font-size: 0.9rem;
    }

    .nav {
        padding: 0.5rem 0.75rem;
    }

    .nav-logo svg,
    .nav-logo img {
        width: 110px !important;
        height: 24px !important;
    }

    .mobile-toggle {
        width: 24px;
        height: 18px;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-content {
        padding: 1.5rem 0.875rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
        margin-bottom: 1rem;
    }

    .hero-badge-dot {
        width: 6px;
        height: 6px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        line-height: 1.05;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-stat {
        flex: 0 0 calc(50% - 0.5rem);
        text-align: center;
    }

    .hero-stat-number {
        font-size: 1.25rem;
    }

    .hero-stat-number span {
        font-size: 1.1rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.05em;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.6rem;
    }

    .btn {
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .services-grid {
        gap: 1rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .service-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

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

    .stat-card {
        padding: 1rem;
    }

    .stat-card-value {
        font-size: 1.25rem;
    }

    .stat-card-label {
        font-size: 0.75rem;
    }

    .process-step {
        flex: 0 0 100%;
        padding: 1rem;
    }

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

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

    .partner-item {
        padding: 1.25rem;
    }

    .partner-logo {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }

    .partner-item span {
        font-size: 0.85rem;
    }

    /* Technical Specs section mobile */
    .section > div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    /* Industries section mobile */
    .section > div[style*="grid-template-columns: repeat(6, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    /* Footer */
    .footer-logo svg,
    .footer-logo img {
        width: 100px !important;
        height: 24px !important;
    }

    .footer-description {
        font-size: 0.85rem;
    }

    .footer-contact p {
        font-size: 0.8rem !important;
    }

    .footer-links {
        gap: 0.5rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    /* Core Values */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .value-card {
        padding: 1.25rem;
    }

    .value-icon-large {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .value-icon-large svg {
        width: 24px;
        height: 24px;
    }

    .value-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .value-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    /* Equipment Grid */
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .equipment-card {
        padding: 1.25rem;
    }

    .equipment-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .equipment-card h3 {
        font-size: 1rem;
    }

    .equipment-card ul {
        font-size: 0.85rem;
    }

    .equipment-card ul li {
        padding: 0.25rem 0;
    }

    /* Testing Capabilities */
    .testing-grid {
        grid-template-columns: 1fr;
    }

    .testing-card {
        padding: 1.25rem;
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
    }

    .testing-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .testing-content h3 {
        font-size: 1rem;
    }

    .testing-content p {
        font-size: 0.85rem;
    }

    /* Industries Section */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .industry-item {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .industry-item svg {
        width: 20px;
        height: 20px;
        margin-bottom: 0.5rem;
    }

    /* Timeline */
    .timeline {
        padding: 0;
    }

    .timeline-item {
        padding: 1.25rem;
    }

    .timeline-year {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .timeline-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Features Row */
    .section[style*="background: var(--color-bg-secondary)"] > div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    .section[style*="background: var(--color-bg-secondary)"] > div[style*="grid-template-columns: repeat(4, 1fr)"] > div {
        padding: 1rem;
    }

    .section[style*="background: var(--color-bg-secondary)"] > div[style*="grid-template-columns: repeat(4, 1fr)"] > div h4 {
        font-size: 0.95rem;
    }

    .section[style*="background: var(--color-bg-secondary)"] > div[style*="grid-template-columns: repeat(4, 1fr)"] > div p {
        font-size: 0.8rem;
    }

    .section[style*="background: var(--color-bg-secondary)"] > div[style*="grid-template-columns: repeat(4, 1fr)"] > div svg {
        width: 24px;
        height: 24px;
    }

    /* CTA Section */
    .section[style*="max-width: 800px"], .section[style*="max-width: 1000px"] {
        padding: 3rem 1rem;
    }

    .section[style*="max-width: 800px"] h2,
    .section[style*="max-width: 1000px"] h2 {
        font-size: 1.5rem;
    }

    .section[style*="max-width: 800px"] p,
    .section[style*="max-width: 1000px"] p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Quote Section */
    .quote-container {
        padding: 1.25rem;
    }

    .quote-header {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .quote-header h2 {
        font-size: 1.25rem;
    }

    .quote-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }

    .quote-iframe {
        height: 500px;
        border-radius: 8px;
    }

    /* Gallery */
    .gallery-item {
        padding: 1rem;
    }

    .gallery-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .gallery-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .gallery-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* FAQ */
    .faq-item {
        padding: 1.25rem;
    }

    .faq-question {
        font-size: 1rem;
        line-height: 1.4;
    }

    .faq-answer {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-top: 0.75rem;
    }

    /* Contact Info in footer */
    .footer-contact {
        margin-top: 1rem !important;
    }

    .footer-contact p {
        font-size: 0.8rem !important;
        margin: 0 0 0.5rem 0 !important;
    }

    /* Page Hero for inner pages */
    .page-hero {
        padding: 6rem 1rem 3rem;
        min-height: 40vh;
    }

    .page-hero-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .page-hero-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    /* About page sections */
    .about-content h2 {
        font-size: 1.5rem;
    }

    .about-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .about-stats {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .about-stat {
        padding: 0.75rem 1rem;
    }

    .about-stat-value {
        font-size: 1.25rem;
    }

    .about-stat-label {
        font-size: 0.75rem;
    }

    /* Materials Grid */
    .materials-grid {
        gap: 1rem;
    }

    .material-item {
        padding: 1rem;
    }

    .material-item h4 {
        font-size: 0.95rem;
    }

    .material-item p {
        font-size: 0.8rem;
    }

    /* Quality Badges */
    .quality-badges {
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
    }

    .quality-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    /* Sustainability */
    .sustainability-item {
        padding: 1rem;
    }

    .sustainability-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }

    .sustainability-item h4 {
        font-size: 0.95rem;
    }

    .sustainability-item p {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Mobile Navigation Enhancements
   ========================================================================== */
@media (max-width: 768px) {
    /* Smooth scroll for anchor links */
    html {
        scroll-behavior: smooth;
    }

    /* Better tap highlight */
    * {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.14);
    }

    /* Prevent text selection on buttons */
    .btn {
        -webkit-user-select: none;
        user-select: none;
    }

    /* Improved touch targets */
    .nav-link {
        position: relative;
        padding: 1rem 0.5rem;
        min-height: 44px;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0.5rem;
        width: 0;
        height: 2px;
        background: var(--color-accent);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 30px;
    }

    /* Mobile hero improvements */
    .hero {
        position: relative;
        overflow: hidden;
    }

    .hero-particles {
        display: none;
    }

    .hero-glow {
        filter: blur(80px);
    }

    .hero-glow-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -50px;
    }

    .hero-glow-2 {
        width: 200px;
        height: 200px;
        bottom: -50px;
        left: 20%;
    }

    /* Better button touch */
    .btn {
        position: relative;
        overflow: hidden;
    }

    .btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s, height 0.3s;
    }

    .btn:active::after {
        width: 300px;
        height: 300px;
    }

    /* Card improvements */
    .service-card,
    .stat-card,
    .value-card,
    .equipment-card,
    .testing-card,
    .material-item,
    .sustainability-item,
    .faq-item {
        position: relative;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .service-card:active,
    .stat-card:active,
    .value-card:active,
    .equipment-card:active {
        transform: scale(0.98);
    }

    /* Icon button scale on tap */
    .service-icon,
    .stat-card-icon,
    .value-icon-large,
    .equipment-icon,
    .testing-icon,
    .gallery-icon,
    .sustainability-icon {
        transition: transform 0.2s ease;
    }

    .service-card:active .service-icon,
    .stat-card:active .stat-card-icon,
    .value-card:active .value-icon-large,
    .equipment-card:active .equipment-icon {
        transform: scale(0.9);
    }

    /* Link improvements */
    a {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.06);
    }

    .footer-link {
        position: relative;
        display: inline-block;
        padding: 0.5rem 0;
    }

    .footer-link::after {
        content: '';
        position: absolute;
        bottom: 0.25rem;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--color-accent);
        transition: width 0.3s ease;
    }

    .footer-link:hover::after {
        width: 100%;
    }

    /* Better form inputs if any */
    input,
    textarea,
    select {
        font-size: 16px;
    }

    /* Scroll snap for horizontal sections */
    .services-grid,
    .stats-grid,
    .partners-grid {
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    .services-grid > *,
    .stats-grid > *,
    .partners-grid > * {
        scroll-snap-align: start;
    }

    /* Hide scrollbar but keep functionality */
    .services-grid::-webkit-scrollbar,
    .stats-grid::-webkit-scrollbar,
    .partners-grid::-webkit-scrollbar {
        height: 4px;
    }

    .services-grid::-webkit-scrollbar-track,
    .stats-grid::-webkit-scrollbar-track,
    .partners-grid::-webkit-scrollbar-track {
        background: var(--color-bg-secondary);
        border-radius: 2px;
    }

    .services-grid::-webkit-scrollbar-thumb,
    .stats-grid::-webkit-scrollbar-thumb,
    .partners-grid::-webkit-scrollbar-thumb {
        background: var(--color-accent);
        border-radius: 2px;
    }

    /* Footer improvements */
    .footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid var(--color-border);
    }

    /* Social icons tap area */
    .social-link {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background 0.2s ease;
    }

    .social-link:active {
        background: rgba(0, 212, 255, 0.1);
    }

    /* Equipment list improvements */
    .equipment-card ul li {
        padding: 0.4rem 0;
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .equipment-card ul li::before {
        content: '→';
        color: var(--color-accent);
        flex-shrink: 0;
    }

    /* Quote iframe container */
    .quote-container {
        -webkit-overflow-scrolling: touch;
    }

    .quote-iframe {
        -webkit-overflow-scrolling: touch;
    }

    /* Section spacing */
    section {
        margin-bottom: 1rem;
    }

    /* Technical Capabilities Section - Mobile */
    .tech-specs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .tech-specs-grid > div {
        padding: 1.25rem !important;
    }

    .tech-specs-grid h4 {
        font-size: 0.85rem !important;
    }

    .tech-specs-grid > div > div {
        gap: 0.6rem !important;
    }

    /* Certifications bar - mobile */
    .certifications-bar {
        gap: 1.5rem !important;
    }

    .certifications-bar > div {
        flex: 0 0 calc(50% - 0.75rem) !important;
        justify-content: flex-start !important;
    }

    /* Partners wrap - mobile */
    .partners-grid {
        gap: 1rem !important;
    }

    .partner-item {
        flex: 0 0 calc(33.333% - 0.667rem) !important;
    }

    /* Quality bar wrap - mobile */
    .quality-bar-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    /* Footer compact - mobile */
    .footer-grid {
        gap: 2rem !important;
    }

    .footer-brand {
        text-align: center !important;
        padding-bottom: 1.5rem !important;
        border-bottom: 1px solid var(--color-border) !important;
    }

    .footer-logo {
        justify-content: center !important;
    }

    .footer-description {
        text-align: center !important;
    }

    .footer-contact {
        text-align: center !important;
    }

    .footer-social {
        justify-content: center !important;
    }
}

/* ==========================================================================
   Small Mobile (< 480px) Ultra Compact
   ========================================================================== */
@media (max-width: 480px) {
    /* Ultra compact spacing */
    .section {
        padding: 2.5rem 0.875rem;
    }

    /* Ultra compact hero */
    .hero {
        padding-top: 60px;
    }

    .hero-content {
        padding: 1.25rem 0.75rem;
    }

    /* Smaller badges */
    .section-label,
    .hero-badge,
    .quote-badge,
    .quality-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    /* Compact stats grid */
    .hero-stats {
        gap: 0.75rem;
    }

    .hero-stat {
        flex: 0 0 calc(50% - 0.375rem);
        padding: 0.75rem 0.5rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        border: 1px solid var(--color-border);
    }

    /* Ultra compact buttons */
    .hero-buttons .btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }

    /* Compact cards */
    .service-card,
    .stat-card,
    .value-card,
    .equipment-card,
    .material-item,
    .sustainability-item,
    .faq-item,
    .gallery-item {
        padding: 1rem;
    }

    /* Smaller icons */
    .service-icon,
    .stat-card-icon,
    .value-icon-large,
    .equipment-icon,
    .testing-icon,
    .gallery-icon,
    .sustainability-icon {
        width: 40px;
        height: 40px;
    }

    .service-icon svg,
    .stat-card-icon svg,
    .value-icon-large svg,
    .equipment-icon svg,
    .testing-icon svg,
    .gallery-icon svg,
    .sustainability-icon svg {
        width: 20px;
        height: 20px;
    }

    /* Compact grid gaps */
    .values-grid,
    .equipment-grid,
    .materials-grid,
    .sustainability-grid {
        gap: 0.75rem;
    }

    /* Compact footer */
    .footer {
        padding: 2.5rem 0.875rem 1.25rem;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    /* Ultra compact text */
    .section-title {
        font-size: 1.35rem;
    }

    .section-description {
        font-size: 0.85rem;
    }

    /* Timeline ultra compact */
    .timeline-item {
        padding: 1rem;
    }

    .timeline-year {
        font-size: 1.25rem;
    }

    .timeline-content h3 {
        font-size: 0.95rem;
    }

    .timeline-content p {
        font-size: 0.8rem;
    }

    /* Quote section compact */
    .quote-container {
        padding: 1rem;
    }

    .quote-header h2 {
        font-size: 1.1rem;
    }

    .quote-iframe {
        height: 450px;
    }

    /* CTA section compact */
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Industries ultra compact */
    .industries-grid {
        gap: 0.5rem;
    }

    .industry-item {
        padding: 0.75rem;
        font-size: 0.8rem;
    }

    .industry-item svg {
        width: 18px;
        height: 18px;
        margin-bottom: 0.35rem;
    }

    /* Partners ultra compact */
    .partners-grid {
        gap: 0.75rem;
    }

    .partner-item {
        padding: 1rem;
    }

    .partner-logo {
        width: 36px;
        height: 36px;
    }

    .partner-item span {
        font-size: 0.8rem;
    }

    /* Process steps */
    .process-steps {
        gap: 0.75rem;
    }

    .process-step {
        padding: 1rem;
    }

    .process-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .process-step h4 {
        font-size: 0.95rem;
    }

    .process-step p {
        font-size: 0.8rem;
    }

    /* Testing cards */
    .testing-card {
        padding: 1rem;
    }

    .testing-icon {
        width: 40px;
        height: 40px;
    }

    .testing-content h3 {
        font-size: 0.95rem;
    }

    .testing-content p {
        font-size: 0.8rem;
    }

    /* Core values compact */
    .value-card {
        padding: 1rem;
    }

    .value-icon-large {
        width: 44px;
        height: 44px;
        margin-bottom: 0.75rem;
    }

    .value-card h3 {
        font-size: 0.9rem;
    }

    .value-card p {
        font-size: 0.75rem;
    }

    /* Page hero compact */
    .page-hero {
        padding: 5rem 0.875rem 2.5rem;
        min-height: 35vh;
    }

    .page-hero-title {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
    }

    .page-hero-description {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }

    /* About page compact */
    .about-content h2 {
        font-size: 1.35rem;
    }

    .about-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .about-stats {
        gap: 0.75rem;
        margin-top: 1.25rem;
    }

    .about-stat {
        padding: 0.6rem 0.875rem;
    }

    .about-stat-value {
        font-size: 1.1rem;
    }

    .about-stat-label {
        font-size: 0.7rem;
    }

    /* Technical Capabilities Section - Mobile */
    .tech-specs-grid,
    .tech-specs-grid > div {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .tech-specs-grid > div {
        padding: 1rem !important;
    }

    .tech-specs-grid h4 {
        font-size: 0.8rem !important;
        margin-bottom: 0.75rem !important;
    }

    .tech-specs-grid > div > div {
        gap: 0.5rem !important;
        font-size: 0.8rem !important;
    }

    .tech-specs-grid > div > div span:first-child {
        font-size: 0.8rem !important;
    }

    .tech-specs-grid > div > div span:last-child {
        font-size: 0.75rem !important;
    }
}

/* ==========================================================================
   Content Pages (Privacy, Terms, Quality)
   ========================================================================== */
.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.content-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.content-block h2 {
    color: var(--color-text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-block h3 {
    color: var(--color-accent);
    font-size: 1.15rem;
    margin: 1.5rem 0 0.75rem;
    font-weight: 500;
}

.content-block h4 {
    color: var(--color-text-primary);
    font-size: 1rem;
    margin: 1.25rem 0 0.5rem;
    font-weight: 500;
}

.content-block p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-block ul {
    list-style: none;
    margin: 1rem 0;
}

.content-block ul li {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
}

.content-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

.content-block a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-block a:hover {
    color: var(--color-accent-hover);
}

.contact-info-box {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.contact-info-box p {
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

/* Quality Certification Page */
.cert-subtitle {
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cert-features {
    margin-top: 1.5rem;
}

.cert-features li {
    font-size: 0.85rem;
    padding: 0.4rem 0;
    padding-left: 1.25rem;
}

.cert-features li::before {
    top: 0.55rem;
    width: 5px;
    height: 5px;
}

.cert-card-small {
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.cert-card-small:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.cert-card-small h4 {
    color: var(--color-text-primary);
    font-size: 1rem;
    margin: 0 0 0.5rem;
}

.cert-card-small p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.testing-card {
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testing-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
}

.testing-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.testing-card h3 {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    margin: 0 0 0.75rem;
}

.testing-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsive for content pages */
@media (max-width: 768px) {
    .content-container {
        padding: 0 0.875rem;
    }

    .content-block {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .content-block h2 {
        font-size: 1.35rem;
    }

    .content-block h3 {
        font-size: 1.05rem;
    }

    .content-block p,
    .content-block ul li {
        font-size: 0.9rem;
    }

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

    .cert-card-small {
        padding: 1.25rem;
    }

    .cert-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .content-block h2 {
        font-size: 1.2rem;
    }

    .content-block h3 {
        font-size: 1rem;
    }

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

    .contact-info-box {
        padding: 1.25rem;
    }
}

/* ==========================================================================
   Careers Page
   ========================================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.benefit-card h3 {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    margin: 0 0 0.75rem;
}

.benefit-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Jobs Section */
.jobs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.job-category {
    margin-bottom: 2.5rem;
}

.job-category:last-child {
    margin-bottom: 0;
}

.job-category-title {
    color: var(--color-text-primary);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-accent);
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.job-card:hover {
    border-color: var(--color-accent);
}

.job-info h4 {
    color: var(--color-text-primary);
    font-size: 1.05rem;
    margin: 0 0 0.35rem;
}

.job-location {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin: 0 0 0.75rem;
}

.job-tags {
    display: flex;
    gap: 0.5rem;
}

.job-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--color-accent);
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

/* Culture Section */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.culture-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.culture-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
}

.culture-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.culture-card h3 {
    color: var(--color-text-primary);
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
}

.culture-card p {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

/* Apply Steps */
.apply-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.apply-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: var(--color-bg-primary);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.apply-step h3 {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}

.apply-step p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.apply-step a {
    color: var(--color-accent);
    text-decoration: none;
}

.apply-step a:hover {
    text-decoration: underline;
}

/* Mobile responsive for careers page */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .benefit-card {
        padding: 1.5rem;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .job-card .btn {
        width: 100%;
        text-align: center;
    }

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

    .apply-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NEWS ARTICLE PAGE STYLES
   ============================================ */

.article-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0 40px;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 20px;
}

.article-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.article-breadcrumb a:hover {
    color: #fff;
}

.article-breadcrumb span {
    color: rgba(255,255,255,0.5);
}

.article-category {
    display: inline-block;
    background: rgba(0, 102, 204, 0.3);
    color: #4da3ff;
    padding: 5px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.article-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.article-meta i {
    margin-right: 5px;
}

.article-featured-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    position: relative;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image .image-caption {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 0;
}

.article-content {
    padding: 60px 0;
}

.article-content .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    max-width: 1200px;
}

.article-body {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.article-body h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #1a1a2e;
    margin: 40px 0 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.article-body h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.article-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #1a1a2e;
    margin: 30px 0 15px;
}

.article-body p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.article-lead {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #0066cc;
}

.article-body ul, .article-body ol {
    margin: 20px 0 30px;
    padding-left: 25px;
}

.article-body li {
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
}

.article-body li strong {
    color: #1a1a2e;
}

.article-cta {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
}

.article-cta h3 {
    font-family: var(--font-display);
    color: #1a1a2e;
    margin-bottom: 10px;
}

.article-cta p {
    color: #666;
    margin-bottom: 20px;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.sidebar-widget h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0066cc;
}

.related-articles {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-articles li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.related-articles li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-articles a {
    color: #444;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s;
    display: block;
}

.related-articles a:hover {
    color: #0066cc;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tags a {
    display: inline-block;
    background: #f0f4f8;
    color: #0066cc;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.category-tags a:hover {
    background: #0066cc;
    color: #fff;
}

/* Newsletter in articles */
.article-content .newsletter-section {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    padding: 50px 0;
    margin-top: 60px;
}

.article-content .newsletter-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.article-content .newsletter-content h2 {
    color: #fff;
    margin-bottom: 10px;
}

.article-content .newsletter-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.article-content .newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.article-content .newsletter-form input {
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    width: 250px;
}

.article-content .newsletter-form .btn-primary {
    background: #1a1a2e;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
}

/* Responsive for article pages */
@media (max-width: 1024px) {
    .article-content .container {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .article-hero {
        padding: 40px 0 30px;
    }

    .article-body {
        padding: 25px;
    }

    .article-content .newsletter-form {
        flex-direction: column;
    }

    .article-content .newsletter-form input {
        width: 100%;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Trust Badges Section
======================================= */
.trust-badges {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.trust-badge-card {
    background: var(--bg-tertiary);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-badge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

.trust-badge-icon {
    margin-bottom: 20px;
}

.trust-badge-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.trust-badge-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.trust-guarantees {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding: 30px;
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.guarantee-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

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

.payment-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icon {
    background: var(--bg-tertiary);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.payment-icon svg {
    display: block;
}

/* Responsive for Trust Badges */
@media (max-width: 1024px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-guarantees {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .trust-badges {
        padding: 60px 0;
    }

    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .guarantee-item {
        font-size: 0.85rem;
    }

    .payment-icons {
        gap: 10px;
    }

    .payment-icon {
        padding: 8px 10px;
    }

    .payment-icon svg {
        width: 30px;
        height: 20px;
    }
}

/* ========================================
   Trusted By Section
======================================= */
.trusted-by {
    background: var(--bg-tertiary);
    padding: 60px 0;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.trusted-logo-item {
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.trusted-logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.trusted-count {
    text-align: center;
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border);
    max-width: 500px;
    margin: 0 auto;
}

.trusted-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.trusted-text {
    color: var(--text-secondary);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .trusted-logos {
        gap: 30px;
    }

    .trusted-logo-item svg {
        width: 80px;
        height: 30px;
    }

    .trusted-number {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Brand Refresh Overrides - Editorial Warm Tech
   ========================================================================== */
:root {
    --bg-deep: #f2e9dc;
    --color-bg-primary: #f6efe4;
    --color-bg-secondary: #ede3d3;
    --color-bg-tertiary: #e2d4bf;
    --color-bg-gradient-start: #faf5ed;
    --color-bg-gradient-end: #eadfce;

    --color-blue: #16110d;
    --color-blue-hover: #000000;
    --color-blue-subtle: rgba(22, 17, 13, 0.08);
    --color-accent: #16110d;
    --color-accent-hover: #000000;
    --color-accent-glow: rgba(22, 17, 13, 0.16);
    --color-accent-secondary: #3a3028;
    --accent-gradient: linear-gradient(135deg, #1b1511 0%, #000000 100%);

    --color-cyan: var(--color-accent);
    --color-cyan-glow: rgba(22, 17, 13, 0.16);
    --color-cyan-dim: rgba(22, 17, 13, 0.08);
    --color-magenta: #4a4138;
    --color-magenta-glow: rgba(74, 65, 56, 0.14);
    --color-yellow: #6a5d52;
    --color-yellow-glow: rgba(106, 93, 82, 0.14);
    --color-green: #35302b;
    --color-green-glow: rgba(53, 48, 43, 0.16);

    --color-text-primary: #1f1812;
    --color-text-secondary: #5f5449;
    --color-text-muted: #7f7468;

    --color-border: rgba(58, 38, 20, 0.12);
    --color-border-solid: rgba(58, 38, 20, 0.1);
    --color-glass: rgba(248, 242, 234, 0.82);
    --color-glass-border: rgba(58, 38, 20, 0.08);

    --font-display: 'Fraunces', 'Times New Roman', serif;
    --font-body: 'Albert Sans', 'Segoe UI', sans-serif;

    --shadow-sm: 0 8px 22px rgba(68, 46, 28, 0.08);
    --shadow-md: 0 18px 50px rgba(68, 46, 28, 0.12);
    --shadow-lg: 0 26px 70px rgba(68, 46, 28, 0.14);
    --shadow-blue: 0 18px 40px rgba(22, 17, 13, 0.14);
}

body {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(198, 145, 94, 0.12), transparent 28%),
        linear-gradient(180deg, #fbf7f1 0%, #f6efe4 34%, #efe5d6 100%);
    color: var(--color-text-primary);
    isolation: isolate;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(72, 49, 31, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(72, 49, 31, 0.025) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
    opacity: 0.5;
    z-index: -1;
}

p {
    color: var(--color-text-secondary);
}

.nav {
    padding: 1.15rem 2rem;
    background: linear-gradient(180deg, rgba(251, 247, 241, 0.96) 0%, rgba(251, 247, 241, 0.55) 72%, transparent 100%);
}

.nav.scrolled {
    background: rgba(248, 242, 234, 0.84);
    border-bottom: 1px solid rgba(58, 38, 20, 0.1);
    box-shadow: 0 12px 40px rgba(63, 42, 24, 0.08);
}

.nav-logo {
    gap: 0.9rem;
    letter-spacing: 0.03em;
    font-size: 1.35rem;
    text-transform: none;
}

.nav-logo img,
.footer-logo img {
    display: block;
    width: 220px;
    height: 44px;
    max-width: 100%;
}

.nav-logo-icon,
.footer-logo-icon {
    background: linear-gradient(145deg, #2a221c 0%, #000000 100%);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 12px 30px rgba(58, 41, 27, 0.16);
}

.nav-logo-icon::before {
    width: 22px;
    height: 22px;
    border-color: rgba(250, 246, 240, 0.78);
}

.nav-logo-icon::after {
    background: #f8f2ea;
}

.nav-link {
    color: rgba(31, 24, 18, 0.72);
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
}

.nav-link::after {
    height: 1px;
    background: linear-gradient(90deg, var(--color-accent), transparent 90%);
    box-shadow: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-primary);
}

.nav-cta,
.btn-primary {
    background: linear-gradient(135deg, #1d1713 0%, #000000 100%);
    color: #f8f3ed;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.nav-cta:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    transform: translateY(-1px);
}

.btn {
    letter-spacing: 0.01em;
    text-transform: none;
    border-radius: 999px;
}

.btn-secondary {
    background: rgba(255, 252, 247, 0.76);
    color: var(--color-text-primary);
    border: 1px solid rgba(58, 38, 20, 0.14);
    box-shadow: 0 10px 24px rgba(76, 50, 28, 0.06);
}

.btn-secondary::before {
    display: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-text-primary);
    border-color: rgba(58, 38, 20, 0.2);
}

.hero {
    min-height: 100svh;
    height: auto;
    justify-content: center;
    padding-top: 7rem;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.7), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(198, 145, 94, 0.18), transparent 24%),
        linear-gradient(180deg, #fbf7f1 0%, #f5ecde 58%, #efe3d1 100%);
}

.hero-bg {
    background: transparent;
}

.hero-grid {
    background-image:
        linear-gradient(rgba(90, 63, 43, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 63, 43, 0.05) 1px, transparent 1px);
    background-size: 84px 84px;
    opacity: 0.55;
}

.hero-glow {
    filter: blur(140px);
    opacity: 0.7;
}

.hero-glow-1 {
    background: radial-gradient(circle, rgba(198, 145, 94, 0.32) 0%, transparent 70%);
}

.hero-glow-2 {
    background: radial-gradient(circle, rgba(98, 72, 50, 0.14) 0%, transparent 72%);
}

.hero-badge {
    background: rgba(255, 250, 244, 0.82);
    border: 1px solid rgba(58, 38, 20, 0.1);
    color: var(--color-accent);
    box-shadow: 0 12px 32px rgba(73, 48, 28, 0.08);
}

.hero-badge-dot {
    background: var(--color-accent);
}

.hero-title,
.page-hero-title,
h1,
h2,
h3 {
    color: var(--color-text-primary);
}

.hero-title {
    max-width: 11ch;
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.045em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #2e241d 0%, #16110d 58%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description,
.page-hero-description {
    color: var(--color-text-secondary);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 58ch;
}

.page-hero {
    min-height: 58vh;
    padding: 11rem 2rem 5rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.65), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(198, 145, 94, 0.14), transparent 22%),
        linear-gradient(180deg, #fbf7f1 0%, #f2e8da 100%);
}

.page-hero-content {
    max-width: 980px;
}

.page-hero-title {
    max-width: 12ch;
    margin: 0 auto 1.5rem;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-weight: 600;
}

.hero-stat-number span,
.stat-number {
    color: var(--color-accent);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.hero-stat-label,
.stat-label {
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
}

.hero-visual {
    opacity: 0.12;
}

.pcb-bg {
    fill: rgba(151, 99, 61, 0.035);
}

.section-label {
    padding: 0.55rem 1.05rem;
    background: rgba(255, 250, 244, 0.78);
    border: 1px solid rgba(58, 38, 20, 0.1);
    color: #1f1812;
    letter-spacing: 0.14em;
}

.services,
.stats,
.why-us,
.industries,
.testimonials,
.certifications,
.trusted-by {
    background: transparent;
}

.service-card,
.why-us-card,
.industry-card,
.cert-card,
.testimonial-card,
.trusted-count {
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.88) 0%, rgba(248, 240, 228, 0.82) 100%);
    border: 1px solid rgba(58, 38, 20, 0.1);
    box-shadow: 0 18px 45px rgba(84, 57, 34, 0.06);
}

.service-card:hover,
.why-us-card:hover,
.industry-card:hover,
.cert-card:hover,
.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(22, 17, 13, 0.16);
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.96) 0%, rgba(245, 234, 219, 0.92) 100%);
    box-shadow: 0 26px 60px rgba(84, 57, 34, 0.1);
}

.service-icon,
.why-us-icon,
.industry-icon,
.stat-icon {
    background: linear-gradient(180deg, rgba(22, 17, 13, 0.09) 0%, rgba(22, 17, 13, 0.03) 100%);
    color: var(--color-accent);
    border: 1px solid rgba(22, 17, 13, 0.07);
}

.service-icon::after {
    border-color: rgba(58, 38, 20, 0.08);
}

.service-feature,
.industry-card p,
.why-us-card p,
.testimonial-text,
.trusted-text {
    color: var(--color-text-secondary);
}

.cert-badge,
.testimonial-avatar {
    background: linear-gradient(135deg, #1f1812 0%, #000000 100%);
    color: #fff8f0;
}

.testimonial-stars {
    color: #16110d;
}

.footer,
.footer {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 24%),
        linear-gradient(180deg, #14100d 0%, #000000 100%);
    border-top: 1px solid rgba(255, 240, 220, 0.08);
}

.footer::before {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
    box-shadow: none;
}

.footer-grid-pattern {
    background-image:
        linear-gradient(rgba(255, 243, 228, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 243, 228, 0.03) 1px, transparent 1px);
    background-size: 84px 84px;
}

.footer-tagline,
.footer-badge,
.contact-item svg,
.footer-links li a svg {
    color: #f2e5d5;
}

.footer-description,
.contact-item p,
.footer-links li a,
.footer-copyright p,
.footer-legal a {
    color: rgba(243, 229, 212, 0.72);
}

.contact-item a,
.contact-item a:visited {
    color: #fff8ef;
}

.contact-item strong,
.footer-column h4,
.footer-logo,
.footer-logo a,
.footer-legal a:hover,
.footer-links li a:hover {
    color: #fff8ef;
}

.footer-column h4::after,
.footer-legal a::after {
    background: #ffffff;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 240, 220, 0.1);
}

.social-link {
    background: #ffffff;
    border-color: rgba(17, 17, 17, 0.08);
    color: #111111;
}

.social-link:hover {
    background: #f6ebdd;
    color: #000000;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.about-title {
    max-width: 12ch;
    line-height: 1;
}

@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding-bottom: 5rem;
    }

    .hero-title {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        background: rgba(251, 247, 241, 0.98);
        border-left: 1px solid rgba(58, 38, 20, 0.08);
        box-shadow: -24px 0 40px rgba(63, 42, 24, 0.06);
    }

    .hero {
        padding-top: 6rem;
    }

    .hero-content {
        padding: 0 1.5rem 4rem;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .nav {
        padding: 0.8rem 1rem;
    }

    .nav-container {
        gap: 0.75rem;
        min-height: 48px;
    }

    .nav-logo img,
    .footer-logo img {
        width: 136px !important;
        height: auto !important;
    }

    .nav-links {
        width: min(88vw, 320px);
        padding: 5.5rem 1.25rem 1.5rem;
        overflow-y: auto;
    }

    .nav-links .nav-cta,
    .nav-cta {
        width: 100%;
        justify-content: center;
    }

    .hero,
    .page-hero {
        min-height: auto;
        height: auto;
        padding-top: 6.5rem;
        padding-bottom: 3rem;
    }

    .hero-content,
    .page-hero-content {
        width: 100%;
        max-width: 100%;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .hero-title,
    .page-hero-title {
        max-width: none;
        font-size: clamp(2.3rem, 12vw, 3.4rem);
        line-height: 1;
        letter-spacing: -0.05em;
    }

    .hero-description,
    .page-hero-description {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 1.25rem;
        width: 100%;
    }

    .hero-stat-number {
        font-size: 1.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 4.5rem 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .services-grid,
    .why-us-grid,
    .industries-grid,
    .cert-grid,
    .testimonials-grid,
    .trust-badges-grid,
    .partners-grid,
    .about-grid,
    .gallery-grid,
    .timeline-grid,
    .values-grid,
    .equipment-grid,
    .team-grid,
    .impact-grid,
    .caps-grid,
    .materials-grid,
    .process-grid,
    .testing-grid,
    .contact-grid,
    .news-grid {
        grid-template-columns: 1fr !important;
    }

    .tech-specs-grid,
    .section > div[style*="grid-template-columns: repeat(4, 1fr)"],
    .section > div[style*="grid-template-columns: repeat(3, 1fr)"],
    div[style*="grid-template-columns: repeat(4, 1fr)"],
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .trusted-logos {
        gap: 1.5rem;
    }

    .trusted-logo-item svg {
        width: 92px;
        height: 30px;
    }

    .footer-container {
        padding: 4rem 1rem 2rem;
    }

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

    .footer-badges,
    .footer-legal {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .nav-logo img,
    .footer-logo img {
        width: 120px !important;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-title,
    .page-hero-title {
        font-size: clamp(2rem, 11.5vw, 2.8rem);
    }

    .section {
        padding: 4rem 0.9rem;
    }
}

/* ==========================================================================
   Anthropic-Inspired Soft Editorial Overrides
   ========================================================================== */
:root {
    --color-bg-primary: #f4efe7;
    --color-bg-secondary: #efe8dd;
    --color-bg-tertiary: #e8dfd2;
    --color-bg-gradient-start: #faf6f0;
    --color-bg-gradient-end: #ece2d5;
    --color-accent: #191513;
    --color-accent-hover: #050505;
    --color-accent-secondary: #49413a;
    --color-border: rgba(41, 31, 24, 0.11);
    --color-border-solid: rgba(41, 31, 24, 0.09);
    --color-glass: rgba(255, 252, 247, 0.72);
    --color-glass-border: rgba(41, 31, 24, 0.08);
    --shadow-sm: 0 10px 26px rgba(58, 42, 30, 0.05);
    --shadow-md: 0 20px 48px rgba(58, 42, 30, 0.08);
    --shadow-lg: 0 30px 72px rgba(58, 42, 30, 0.1);
}

body {
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.82), transparent 24%),
        radial-gradient(circle at 78% 10%, rgba(236, 228, 216, 0.9), transparent 26%),
        linear-gradient(180deg, #fbf8f3 0%, #f5eee4 42%, #efe6d8 100%);
}

body::before {
    background-image:
        linear-gradient(rgba(78, 61, 45, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 61, 45, 0.02) 1px, transparent 1px);
    background-size: 160px 160px;
    opacity: 0.42;
}

.nav {
    background: linear-gradient(180deg, rgba(252, 248, 242, 0.96) 0%, rgba(252, 248, 242, 0.72) 70%, transparent 100%);
}

.nav.scrolled {
    background: rgba(251, 247, 241, 0.82);
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 34px rgba(50, 37, 27, 0.06);
}

.nav-link {
    font-weight: 550;
}

.nav-link::after {
    background: linear-gradient(90deg, rgba(25, 21, 19, 0.85), transparent 92%);
}

.nav-cta,
.btn-primary {
    background: #151210;
    color: #f7f1e8;
    border: 1px solid rgba(15, 10, 8, 0.14);
    box-shadow: 0 10px 24px rgba(18, 14, 12, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.nav-cta:hover,
.btn-primary:hover {
    background: #050505;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(18, 14, 12, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-secondary {
    background: rgba(255, 252, 247, 0.88);
    border: 1px solid rgba(41, 31, 24, 0.12);
    box-shadow: 0 8px 20px rgba(58, 42, 30, 0.04);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(58, 42, 30, 0.08);
}

.hero {
    background:
        radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.82), transparent 25%),
        radial-gradient(circle at 84% 18%, rgba(230, 220, 205, 0.78), transparent 24%),
        linear-gradient(180deg, #fbf8f3 0%, #f4ece1 54%, #ece1d3 100%);
}

.hero-grid {
    background-image:
        linear-gradient(rgba(81, 65, 50, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(81, 65, 50, 0.035) 1px, transparent 1px);
    background-size: 96px 96px;
    opacity: 0.42;
}

.hero-glow-1 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, transparent 72%);
}

.hero-glow-2 {
    background: radial-gradient(circle, rgba(214, 201, 185, 0.32) 0%, transparent 70%);
}

.hero-badge,
.section-label {
    background: rgba(255, 252, 247, 0.9);
    border: 1px solid rgba(41, 31, 24, 0.1);
    color: #27201c;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 18px rgba(67, 50, 35, 0.04);
}

.hero-title .highlight {
    background: linear-gradient(135deg, #1b1714 0%, #3b3027 55%, #16110d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.78), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(229, 220, 208, 0.78), transparent 24%),
        linear-gradient(180deg, #fbf8f3 0%, #f0e7db 100%);
}

.service-card,
.why-us-card,
.industry-card,
.cert-card,
.testimonial-card,
.trusted-count,
.trust-badge-card,
.faq-item,
.cap-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.96) 0%, rgba(249, 242, 233, 0.92) 100%);
    border: 1px solid rgba(41, 31, 24, 0.09);
    border-radius: 28px;
    box-shadow: 0 10px 24px rgba(62, 46, 31, 0.04), 0 22px 54px rgba(62, 46, 31, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.service-card::before,
.why-us-card::before,
.industry-card::before,
.cert-card::before,
.testimonial-card::before,
.trusted-count::before,
.trust-badge-card::before,
.faq-item::before,
.cap-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent 28%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 28%);
    pointer-events: none;
    opacity: 0.9;
}

.service-media {
    position: relative;
    margin: -2.5rem -2.5rem 1.5rem;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
}

.service-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(17, 17, 17, 0.12) 100%);
    pointer-events: none;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.service-card:hover .service-media img {
    transform: scale(1.04);
}

.service-card:hover,
.why-us-card:hover,
.industry-card:hover,
.cert-card:hover,
.testimonial-card:hover,
.trusted-count:hover,
.trust-badge-card:hover,
.faq-item:hover,
.cap-card:hover {
    transform: translateY(-8px);
    border-color: rgba(24, 20, 17, 0.14);
    background: linear-gradient(180deg, rgba(255, 253, 250, 1) 0%, rgba(245, 237, 227, 0.95) 100%);
    box-shadow: 0 14px 34px rgba(62, 46, 31, 0.06), 0 30px 72px rgba(62, 46, 31, 0.1);
}

.service-icon,
.why-us-icon,
.industry-icon,
.stat-icon,
.trust-badge-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(243, 238, 231, 0.96) 0%, rgba(232, 224, 214, 0.82) 100%);
    border: 1px solid rgba(41, 31, 24, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 22px rgba(67, 50, 35, 0.05);
    transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover .service-icon,
.why-us-card:hover .why-us-icon,
.industry-card:hover .industry-icon,
.trust-badge-card:hover .trust-badge-icon {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(180deg, rgba(248, 244, 238, 1) 0%, rgba(236, 228, 217, 0.9) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 16px 28px rgba(67, 50, 35, 0.08);
}

.service-title,
.why-us-card h3,
.industry-card h3,
.cert-card h3,
.testimonial-name,
.faq-question h3,
.cap-title {
    letter-spacing: -0.02em;
}

.stats-grid .stat-card {
    border-radius: 24px;
    background: rgba(255, 251, 245, 0.7);
    border: 1px solid rgba(41, 31, 24, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.trusted-logo-item {
    opacity: 0.75;
    transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
    filter: saturate(0) contrast(1.05);
}

.trusted-logo-item:hover {
    opacity: 1;
    transform: translateY(-2px);
    filter: saturate(0) contrast(1.15);
}

.trusted-logo-item img {
    width: 120px;
    height: 88px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(41, 31, 24, 0.08);
    box-shadow: 0 18px 40px rgba(63, 44, 27, 0.08);
}

.trusted-logo-item span {
    display: block;
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.section-header,
.hero-content,
.page-hero-content {
    animation: fadeInUp 0.7s ease-out both;
}

.services-grid > *,
.why-us-grid > *,
.industries-grid > *,
.cert-grid > *,
.testimonials-grid > *,
.trust-badges-grid > *,
.partners-grid > * {
    animation: fadeInUp 0.55s ease-out both;
}

.services-grid > *:nth-child(1),
.why-us-grid > *:nth-child(1),
.industries-grid > *:nth-child(1),
.cert-grid > *:nth-child(1),
.testimonials-grid > *:nth-child(1),
.trust-badges-grid > *:nth-child(1),
.partners-grid > *:nth-child(1) { animation-delay: 0.03s; }

.services-grid > *:nth-child(2),
.why-us-grid > *:nth-child(2),
.industries-grid > *:nth-child(2),
.cert-grid > *:nth-child(2),
.testimonials-grid > *:nth-child(2),
.trust-badges-grid > *:nth-child(2),
.partners-grid > *:nth-child(2) { animation-delay: 0.08s; }

.services-grid > *:nth-child(3),
.why-us-grid > *:nth-child(3),
.industries-grid > *:nth-child(3),
.cert-grid > *:nth-child(3),
.testimonials-grid > *:nth-child(3),
.trust-badges-grid > *:nth-child(3),
.partners-grid > *:nth-child(3) { animation-delay: 0.13s; }

.services-grid > *:nth-child(4),
.why-us-grid > *:nth-child(4),
.industries-grid > *:nth-child(4),
.cert-grid > *:nth-child(4),
.testimonials-grid > *:nth-child(4),
.trust-badges-grid > *:nth-child(4),
.partners-grid > *:nth-child(4) { animation-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
    .section-header,
    .hero-content,
    .page-hero-content,
    .services-grid > *,
    .why-us-grid > *,
    .industries-grid > *,
    .cert-grid > *,
    .testimonials-grid > *,
    .trust-badges-grid > *,
    .partners-grid > * {
        animation: none;
    }
}

@media (max-width: 768px) {
    .service-card,
    .why-us-card,
    .industry-card,
    .cert-card,
    .testimonial-card,
    .trusted-count,
    .trust-badge-card,
    .faq-item,
    .cap-card {
        border-radius: 24px;
        padding: 1.5rem;
    }

    .service-icon,
    .why-us-icon,
    .industry-icon,
    .stat-icon,
    .trust-badge-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .service-media {
        margin: -1.5rem -1.5rem 1.15rem;
    }
}

/* ==========================================================================
   Homepage Hero Refinement
   ========================================================================== */
.hero {
    align-items: center;
}

.hero-content {
    position: relative;
    padding: 0 4rem 5.5rem;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.72fr);
    gap: 3rem;
    align-items: end;
}

.hero-copy {
    max-width: 760px;
}

.hero-kicker {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(31, 24, 18, 0.62);
}

.hero-title {
    max-width: 9.6ch;
    font-size: clamp(3.6rem, 8.2vw, 6.6rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
    margin-bottom: 1.25rem;
}

.hero-description {
    max-width: 46ch;
    font-size: clamp(1.08rem, 1.8vw, 1.24rem);
    line-height: 1.72;
    margin-bottom: 2rem;
}

.hero-buttons {
    margin-bottom: 2.25rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 820px;
}

.hero-stat {
    padding: 1rem 1.1rem 0 0;
    border-top: 1px solid rgba(41, 31, 24, 0.1);
}

.hero-stat-number {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 0.35rem;
}

.hero-stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.09em;
}

.hero-proof {
    align-self: center;
    position: relative;
}

.hero-proof-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.96) 0%, rgba(248, 240, 231, 0.92) 100%);
    border: 1px solid rgba(41, 31, 24, 0.08);
    box-shadow: 0 12px 28px rgba(58, 42, 30, 0.05), 0 26px 56px rgba(58, 42, 30, 0.08);
    backdrop-filter: blur(8px);
}

.hero-proof-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 34%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.42), transparent 28%);
    pointer-events: none;
}

.hero-proof-label {
    position: relative;
    z-index: 1;
    margin-bottom: 1.1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(31, 24, 18, 0.6);
}

.hero-proof-item {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.35rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(41, 31, 24, 0.08);
}

.hero-proof-item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.hero-proof-key {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.hero-proof-value {
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
}

.hero-proof-note {
    margin-top: 1rem;
    padding-left: 0.2rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(31, 24, 18, 0.58);
}

.hero-visual {
    opacity: 0.08;
    right: 1%;
    top: 52%;
}

.hero-grid {
    background-size: 110px 110px;
    opacity: 0.34;
}

.hero-glow {
    filter: blur(160px);
}

@media (max-width: 1100px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-proof {
        max-width: 620px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 1.25rem 3.75rem;
    }

    .hero-layout {
        gap: 1.5rem;
    }

    .hero-kicker {
        font-size: 0.76rem;
        letter-spacing: 0.1em;
    }

    .hero-title {
        max-width: none;
        font-size: clamp(2.7rem, 13vw, 4rem);
        line-height: 0.96;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        margin-bottom: 1.75rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem 1rem;
    }

    .hero-proof-card {
        padding: 1.2rem;
        border-radius: 24px;
    }

    .hero-proof-key {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-proof-note {
        font-size: 0.86rem;
    }
}

/* ==========================================================================
   Inner Page Editorial Heroes
   ========================================================================== */
.page-hero {
    align-items: center;
}

.page-hero-content {
    width: 100%;
    max-width: 1220px;
}

.page-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
    gap: 2.75rem;
    align-items: center;
}

.page-hero-copy {
    max-width: 740px;
}

.page-hero-kicker {
    margin: 1rem 0 0.95rem;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(31, 24, 18, 0.58);
}

.page-hero-title {
    max-width: 10.2ch;
    margin: 0 0 1.25rem;
    font-size: clamp(3rem, 6.4vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.page-hero-description {
    max-width: 44ch;
    margin: 0;
    font-size: clamp(1.04rem, 1.8vw, 1.22rem);
    line-height: 1.7;
}

.page-hero-proof {
    align-self: stretch;
    display: flex;
    align-items: center;
}

.page-hero-proof-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 1.45rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.96) 0%, rgba(248, 240, 231, 0.92) 100%);
    border: 1px solid rgba(41, 31, 24, 0.08);
    box-shadow: 0 12px 28px rgba(58, 42, 30, 0.05), 0 26px 56px rgba(58, 42, 30, 0.08);
}

.page-hero-proof-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.48), transparent 32%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.4), transparent 30%);
    pointer-events: none;
}

.page-hero-proof-label {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(31, 24, 18, 0.58);
}

.page-hero-proof-item {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.35rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(41, 31, 24, 0.08);
}

.page-hero-proof-item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.page-hero-proof-key {
    font-family: var(--font-display);
    font-size: 1.04rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.page-hero-proof-value {
    font-size: 0.95rem;
    line-height: 1.62;
    color: var(--color-text-secondary);
}

@media (max-width: 1100px) {
    .page-hero-layout {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .page-hero-proof {
        max-width: 620px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding-top: 6.5rem;
        padding-bottom: 3rem;
    }

    .page-hero-content {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .page-hero-kicker {
        font-size: 0.76rem;
        letter-spacing: 0.1em;
    }

    .page-hero-title {
        max-width: none;
        font-size: clamp(2.4rem, 11vw, 3.6rem);
    }

    .page-hero-description {
        max-width: 100%;
        font-size: 1rem;
    }

    .page-hero-proof-card {
        padding: 1.2rem;
        border-radius: 24px;
    }
}

/* ==========================================================================
   Homepage Editorial News Cards
   ========================================================================== */
.editorial-news {
    background: linear-gradient(180deg, rgba(244, 238, 229, 0.72) 0%, rgba(239, 231, 220, 0.92) 100%);
}

.editorial-news-shell {
    max-width: 1240px;
    margin: 0 auto;
}

.editorial-news-header {
    margin-bottom: 3rem;
}

.editorial-news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.editorial-news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.96) 0%, rgba(248, 240, 231, 0.92) 100%);
    border: 1px solid rgba(41, 31, 24, 0.09);
    box-shadow: 0 10px 24px rgba(62, 46, 31, 0.04), 0 22px 54px rgba(62, 46, 31, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.editorial-news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(24, 20, 17, 0.14);
    box-shadow: 0 14px 34px rgba(62, 46, 31, 0.06), 0 30px 72px rgba(62, 46, 31, 0.1);
}

.editorial-news-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.42 / 1;
    background: rgba(0, 0, 0, 0.04);
}

.editorial-news-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.06) 100%);
    pointer-events: none;
}

.editorial-news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.editorial-news-card:hover .editorial-news-media img {
    transform: scale(1.04);
}

.editorial-news-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.35rem;
}

.editorial-news-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(41, 31, 24, 0.08);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(25, 21, 19, 0.8);
}

.editorial-news-title {
    margin: 0 0 0.8rem;
    font-size: 1.06rem;
    line-height: 1.28;
    color: var(--color-text-primary);
}

.editorial-news-copy {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
}

.editorial-news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 1.15rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
}

.editorial-news-link svg {
    transition: transform 0.22s ease;
}

.editorial-news-card:hover .editorial-news-link svg {
    transform: translateX(3px);
}

.editorial-news-cta {
    text-align: center;
    margin-top: 2.5rem;
}

@media (max-width: 1100px) {
    .editorial-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .editorial-news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .editorial-news-card {
        border-radius: 24px;
    }

    .editorial-news-body {
        padding: 1.15rem;
    }
}

/* ==========================================================================
   PCB / PCBA Visual Modules
   ========================================================================== */
.pcb-visual-section,
.pcb-build-gallery {
    background: linear-gradient(180deg, rgba(246, 235, 221, 0.78) 0%, rgba(255, 251, 245, 0.98) 100%);
}

.pcb-visual-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 1.5rem;
}

.pcb-visual-card,
.pcb-build-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 251, 245, 0.94);
    border: 1px solid rgba(58, 38, 20, 0.08);
    box-shadow: 0 24px 48px rgba(63, 42, 24, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pcb-visual-card:hover,
.pcb-build-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(63, 42, 24, 0.12);
    border-color: rgba(45, 138, 104, 0.18);
}

.pcb-visual-media,
.pcb-build-media {
    position: relative;
    overflow: hidden;
}

.pcb-visual-media::after,
.pcb-build-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.02) 0%, rgba(17, 17, 17, 0.12) 100%);
    pointer-events: none;
}

.pcb-visual-media img,
.pcb-build-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.pcb-visual-card:hover .pcb-visual-media img,
.pcb-build-card:hover .pcb-build-media img {
    transform: scale(1.04);
}

.pcb-visual-card-featured .pcb-visual-media {
    min-height: 360px;
}

.pcb-visual-card:not(.pcb-visual-card-featured) .pcb-visual-media {
    min-height: 240px;
}

.pcb-visual-body,
.pcb-build-content {
    padding: 1.5rem 1.5rem 1.7rem;
}

.pcb-visual-eyebrow,
.pcb-build-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    background: rgba(45, 138, 104, 0.1);
    color: #256f56;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pcb-visual-body h3,
.pcb-build-content h3 {
    margin: 0 0 0.7rem;
    color: var(--color-text-primary);
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.pcb-visual-body p,
.pcb-build-content p {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.pcb-build-layout {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 1.5rem;
}

.pcb-build-card-large {
    grid-row: span 2;
}

.pcb-build-card-large .pcb-build-media {
    min-height: 100%;
}

.pcb-build-card:not(.pcb-build-card-large) .pcb-build-media {
    min-height: 240px;
}

@media (max-width: 1100px) {
    .pcb-visual-grid,
    .pcb-build-layout {
        grid-template-columns: 1fr 1fr;
    }

    .pcb-visual-card-featured,
    .pcb-build-card-large {
        grid-column: 1 / -1;
    }

    .pcb-build-card-large {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .pcb-visual-grid,
    .pcb-build-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pcb-visual-card-featured .pcb-visual-media,
    .pcb-build-card-large .pcb-build-media,
    .pcb-visual-card:not(.pcb-visual-card-featured) .pcb-visual-media,
    .pcb-build-card:not(.pcb-build-card-large) .pcb-build-media {
        min-height: 220px;
    }

    .pcb-visual-body,
    .pcb-build-content {
        padding: 1.25rem 1.2rem 1.35rem;
    }
}

/* ==========================================================================
   PCBA Cards
   ========================================================================== */
.pcba-cards-section {
    background: linear-gradient(180deg, rgba(255, 250, 244, 0.94) 0%, rgba(244, 238, 229, 0.72) 100%);
}

.pcba-cards-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.pcba-info-card {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 251, 245, 0.96);
    border: 1px solid rgba(58, 38, 20, 0.08);
    box-shadow: 0 18px 42px rgba(63, 42, 24, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.pcba-info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 138, 104, 0.18);
    box-shadow: 0 26px 58px rgba(63, 42, 24, 0.11);
}

.pcba-info-media {
    position: relative;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
}

.pcba-info-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(17, 17, 17, 0.1) 100%);
    pointer-events: none;
}

.pcba-info-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pcba-info-card:hover .pcba-info-media img {
    transform: scale(1.04);
}

.pcba-info-body {
    padding: 1.45rem 1.5rem 1.6rem;
}

.pcba-info-tag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(45, 138, 104, 0.1);
    color: #256f56;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pcba-info-body h3 {
    margin: 0 0 0.7rem;
    color: var(--color-text-primary);
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.pcba-info-body p {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .pcba-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pcba-info-body {
        padding: 1.2rem 1.2rem 1.35rem;
    }
}
