/* ===== RESET AND BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
}

html {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    overflow-x: hidden;
}

/* ===== PRELOADER STYLES ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a2332 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: #fff;
}



.preloader-circuit {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.preloader-circuit svg {
    max-width: 100%;
    height: auto;
}

.center-favicon {
    /* Static favicon - no animation */
}

.center-favicon img {
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 1));
}

.circuit-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 1s ease-in-out forwards;
}

.preloader.loop .circuit-line {
    animation: drawLineLoop 2s ease-in-out infinite;
}

.circuit-line.line-1 { animation-delay: 0.1s; }
.circuit-line.line-2 { animation-delay: 0.15s; }
.circuit-line.line-3 { animation-delay: 0.2s; }
.circuit-line.line-4 { animation-delay: 0.25s; }
.circuit-line.line-5 { animation-delay: 0.4s; }
.circuit-line.line-6 { animation-delay: 0.45s; }
.circuit-line.line-7 { animation-delay: 0.5s; }
.circuit-line.line-8 { animation-delay: 0.55s; }
.circuit-line.line-9 { animation-delay: 0.7s; }
.circuit-line.line-10 { animation-delay: 0.75s; }
.circuit-line.line-11 { animation-delay: 0.8s; }
.circuit-line.line-12 { animation-delay: 0.85s; }
.circuit-line.line-13 { animation-delay: 0.6s; }
.circuit-line.line-14 { animation-delay: 0.65s; }
.circuit-line.line-15 { animation-delay: 0.9s; }
.circuit-line.line-16 { animation-delay: 0.95s; }

.junction-node {
    animation: nodeAppear 0.3s ease-out forwards;
}

.junction-node:nth-child(3) { animation-delay: 0.2s; }
.junction-node:nth-child(4) { animation-delay: 0.25s; }
.junction-node:nth-child(5) { animation-delay: 0.3s; }
.junction-node:nth-child(6) { animation-delay: 0.35s; }
.junction-node:nth-child(7) { animation-delay: 0.5s; }
.junction-node:nth-child(8) { animation-delay: 0.55s; }
.junction-node:nth-child(9) { animation-delay: 0.8s; }
.junction-node:nth-child(10) { animation-delay: 0.85s; }

.end-node {
    animation: nodeAppear 0.5s ease-out forwards;
}

.end-node:nth-child(11) { animation-delay: 1.1s; }
.end-node:nth-child(12) { animation-delay: 1.15s; }
.end-node:nth-child(13) { animation-delay: 1.2s; }
.end-node:nth-child(14) { animation-delay: 1.25s; }
.end-node:nth-child(15) { animation-delay: 1.4s; }
.end-node:nth-child(16) { animation-delay: 1.45s; }
.end-node:nth-child(17) { animation-delay: 1.5s; }
.end-node:nth-child(18) { animation-delay: 1.55s; }
.end-node:nth-child(19) { animation-delay: 1.7s; }
.end-node:nth-child(20) { animation-delay: 1.75s; }
.end-node:nth-child(21) { animation-delay: 1.8s; }
.end-node:nth-child(22) { animation-delay: 1.85s; }

.preloader-text {
    margin-top: 2rem;
    animation: textFade 1s ease-in-out infinite alternate;
}

.preloader-text h3 {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.preloader-text p {
    font-size: 1rem;
    color: #b0b6c3;
    font-family: 'Inter', sans-serif;
}

/* Preloader Animations */

@keyframes drawLine {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes nodeAppear {
    0% {
        opacity: 0;
        r: 2;
    }
    50% {
        r: 6;
    }
    100% {
        opacity: 1;
        r: 4;
    }
}

@keyframes textFade {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

@keyframes drawLineLoop {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    60% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -1000;
        opacity: 0;
    }
}

:root {
    /* Blue Tech Color Palette */
    --primary-blue: #0066cc;
    --secondary-blue: #1a73e8;
    --dark-blue: #003d7a;
    --light-blue: #4285f4;
    --electric-blue: #00a8ff;
    --navy-blue: #1e2a4a;
    --tech-cyan: #00d4ff;
    
    /* Grays and Neutrals */
    --bg-primary: #0a0f1c;
    --bg-secondary: #1a1f2e;
    --bg-tertiary: #2a2f3e;
    --text-primary: #ffffff;
    --text-secondary: #b0b6c3;
    --text-accent: #00d4ff;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Borders */
    --border-radius: 12px;
    --border-radius-lg: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(66, 133, 244, 0.1) 0%, transparent 50%);
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

/* ===== CIRCUIT OVERLAY ===== */
.circuit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Prevent any side lines or visual artifacts */
*::before,
*::after {
    border: none;
    outline: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: var(--border-radius);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.logo-text h2 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-accent);
    font-size: 1.4rem;
    margin: 0;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
}

.france-flag {
    margin-left: var(--spacing-xs);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-accent);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
    padding-top: 100px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-accent);
    margin-bottom: var(--spacing-lg);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--text-primary), var(--text-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--text-accent);
    -webkit-text-fill-color: var(--text-accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--tech-cyan));
    color: white;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-accent);
    border: 2px solid var(--text-accent);
}

.btn-secondary:hover {
    background: var(--text-accent);
    color: var(--bg-primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-accent);
    border: 1px solid rgba(0, 212, 255, 0.5);
    padding: 12px 24px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--text-accent);
}

.trust-logos {
    text-align: center;
}

.trust-logos p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
}

.logo-marquee {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(10, 15, 28, 0.9);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.achievement-item {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    background: rgba(10, 15, 28, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 1001;
}

.achievement-item:hover {
    transform: translateY(-5px);
    background: rgba(10, 15, 28, 0.9);
    border-color: rgba(0, 212, 255, 0.8);
}

.achievement-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.achievement-number .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-accent);
    font-family: var(--font-display);
}

.achievement-number .suffix {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-accent);
    margin-left: 4px;
}

.achievement-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.achievement-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.service-card {
    background: rgba(10, 15, 28, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1001;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(10, 15, 28, 0.8);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 1);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.8), rgba(26, 31, 46, 0.8));
    border-color: var(--text-accent);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.3;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
    position: relative;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--text-accent);
    font-weight: bold;
}

/* ===== TECHNOLOGIES SECTION ===== */
.technologies-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-secondary);
}

.tech-tabs {
    margin-top: var(--spacing-xl);
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--text-accent);
    color: var(--bg-primary);
    border-color: var(--text-accent);
}

.tech-content {
    text-align: center;
}

.tech-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

.tech-logo {
    background: rgba(10, 15, 28, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-logo:hover {
    background: rgba(10, 15, 28, 0.9);
    border-color: var(--text-accent);
    color: var(--text-accent);
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-primary);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.industry-card {
    background: rgba(10, 15, 28, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    z-index: 1001;
}

.industry-card:hover {
    transform: translateY(-5px);
    background: rgba(10, 15, 28, 0.9);
    border-color: rgba(0, 212, 255, 0.3);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.industry-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.industry-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.industry-features {
    list-style: none;
    padding: 0;
}

.industry-features li {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
    position: relative;
    font-size: 0.9rem;
}

.industry-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--text-accent);
    font-weight: bold;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.8), rgba(26, 31, 46, 0.8));
    text-align: center;
    z-index: 1001;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.contact-info {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-accent);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.footer-logo h3 {
    font-family: var(--font-display);
    color: var(--text-accent);
    font-size: 1.2rem;
    margin: 0;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
/* Responsive Preloader */
@media (max-width: 768px) {
    .preloader-circuit svg {
        width: 300px;
        height: 300px;
    }
    
    .preloader-text h3 {
        font-size: 1.2rem;
    }
    
    .preloader-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .preloader-circuit svg {
        width: 250px;
        height: 250px;
    }
    
    .preloader-text h3 {
        font-size: 1.1rem;
    }
    
    .preloader-text p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: var(--spacing-lg) 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: var(--spacing-sm) 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tech-logos {
        gap: var(--spacing-sm);
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .achievement-number .number {
        font-size: 2.5rem;
    }

    .achievement-number .suffix {
        font-size: 1.5rem;
    }

    .service-card,
    .industry-card,
    .achievement-item {
        padding: var(--spacing-md);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.industry-card,
.achievement-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Circuit board animation styles remain the same */

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .circuit-overlay,
    .hero-buttons,
    .social-links {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-title,
    .section-header h2,
    h1, h2, h3 {
        color: black;
    }
} 