/* ===================================
   SYSTEM OVERDRIVE - Grade A+ Website
   Modern Dark Tech Aesthetic
   =================================== */

/* === CSS VARIABLES === */
:root {
    /* Brand Colors */
    --primary-green: #00e5a0;
    --primary-blue: #0066ff;
    --dark-bg: #0a0a0a;
    --dark-card: #141414;
    --dark-card-hover: #1a1a1a;
    
    /* Accent Colors */
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;
    
    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 10px 40px rgba(0, 229, 160, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 229, 160, 0.2);
}

/* === GLOBAL RESETS === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

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

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-img {
    display: block;
    height: 40px;
    width: auto;
}

.logo-text {
    color: var(--text-primary);
}

.logo-accent {
    color: var(--primary-green);
    margin-left: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

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

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

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

.nav-cta {
    margin-left: 16px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

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

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 229, 160, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 229, 160, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 229, 160, 0.1);
    border: 1px solid rgba(0, 229, 160, 0.3);
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary-green);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}


/* === TRUST BAR === */
.trust-bar {
    padding: 60px 0;
    background: var(--dark-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-title {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
    color: var(--primary-green);
}

/* === SECTION STYLES === */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 229, 160, 0.1);
    border: 1px solid rgba(0, 229, 160, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* === SOLUTIONS GRID === */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.solution-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-card[data-color="blue"]::before {
    background: var(--primary-blue);
}

.solution-card[data-color="green"]::before {
    background: var(--primary-green);
}

.solution-card[data-color="purple"]::before {
    background: var(--accent-purple);
}

.solution-card:hover {
    background: var(--dark-card-hover);
    border-color: rgba(0, 229, 160, 0.2);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

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

.card-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.card-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-bottom: 24px;
}

.feature-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link:hover {
    gap: 12px;
}

/* === SERVICES GRID === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--dark-card-hover);
    border-color: rgba(0, 229, 160, 0.2);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

/* === AI SHOWCASE === */
.ai-showcase {
    background: var(--dark-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.showcase-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.highlight-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tech-badge {
    padding: 16px;
    background: rgba(0, 229, 160, 0.05);
    border: 1px solid rgba(0, 229, 160, 0.2);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: var(--primary-green);
    transition: var(--transition);
}

.tech-badge:hover {
    background: rgba(0, 229, 160, 0.1);
    border-color: rgba(0, 229, 160, 0.4);
}

/* === TIMELINE (ABOUT) - FIXED VERSION === */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent, 
        rgba(0, 229, 160, 0.5) 10%, 
        rgba(0, 229, 160, 0.5) 90%, 
        transparent
    );
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content {
    direction: ltr;
}

/* CRITICAL FIX: Timeline Year Styling */
.timeline-year {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-green);
    text-align: right;
    padding-right: 30px;
    position: relative;
    z-index: 10; /* Ensure it's above other elements */
    background: var(--dark-bg); /* Add background so nothing overlaps */
    padding: 8px 30px 8px 8px; /* Add padding for better visibility */
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding-left: 30px;
    padding-right: 8px;
}

/* Timeline dot */
.timeline-year::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--primary-green);
    border: 4px solid var(--dark-bg);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 229, 160, 0.5);
    z-index: 15; /* Higher than year text */
}

.timeline-item:nth-child(even) .timeline-year::after {
    left: -8px;
    right: auto;
}

.timeline-content {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    z-index: 5; /* Lower than year */
    transition: var(--transition);
}

.timeline-content:hover {
    background: var(--dark-card-hover);
    border-color: rgba(0, 229, 160, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === INDUSTRIES GRID === */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.industry-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.industry-card:hover {
    background: var(--dark-card-hover);
    border-color: rgba(0, 229, 160, 0.2);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.industry-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.industry-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* === CONTACT SECTION === */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 229, 160, 0.1);
    border: 1px solid rgba(0, 229, 160, 0.22);
    color: var(--primary-green);
}

.contact-icon svg {
    display: block;
}

.contact-address {
    line-height: 1.6;
}

.hq-country {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.contact-regional {
    flex: 1;
    min-width: 0;
}

.region-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.region-list li {
    margin: 0 0 10px;
}

.region-list li:last-child {
    margin-bottom: 0;
}

.region-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.region-row:hover {
    color: var(--text-primary);
}

.flag-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 16px;
    padding: 0;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.flag-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.region-row:hover .flag-btn {
    border-color: rgba(0, 229, 160, 0.45);
    box-shadow: 0 0 0 1px rgba(0, 229, 160, 0.2);
    transform: translateY(-1px);
}

.region-name {
    font-weight: 500;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-item p,
.contact-item a {
    font-size: 14px;
    color: var(--text-secondary);
}

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

.contact-map {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
    align-self: start;
}

.contact-map h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.map-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.map-image-wrap {
    border: 1px solid rgba(0, 229, 160, 0.18);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.contact-map-image {
    display: block;
    width: 100%;
    height: auto;
}

/* === FORM STYLES === */
.contact-form {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.phone-input-group {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
}

.phone-input-group select,
.phone-input-group input {
    margin: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

/* Ensure service dropdown text remains readable across browsers */
.form-group select {
    background-color: var(--dark-card);
    color: var(--text-secondary);
}

.form-group select option {
    background-color: #ffffff;
    color: #111111;
}

.form-group select option[value=""] {
    color: #666666;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.08);
}

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

.contact-form .btn {
    width: 100%;
}

/* === FOOTER === */
.footer {
    background: var(--dark-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-tagline {
    margin-top: 16px;
    font-weight: 600;
    color: var(--primary-green);
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-col ul li a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

/* === NOTIFICATION === */
.notification {
    position: fixed;
    bottom: 40px;
    right: 40px;
    padding: 20px 28px;
    background: var(--dark-card);
    border: 1px solid rgba(0, 229, 160, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 10000;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-color: rgba(0, 229, 160, 0.5);
    background: rgba(0, 229, 160, 0.1);
}

.notification.error {
    border-color: rgba(255, 59, 48, 0.5);
    background: rgba(255, 59, 48, 0.1);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE DESIGN === */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map {
        padding: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-year {
        text-align: left !important;
        padding-left: 60px !important;
        padding-right: 8px !important;
    }
    
    .timeline-year::after {
        left: 12px !important;
        right: auto !important;
    }
    
    .timeline-item:nth-child(even) {
        direction: ltr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }

    .phone-input-group {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .partner-logos {
        gap: 24px;
    }
    
    .solutions-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .notification {
        right: 20px;
        left: 20px;
        bottom: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .stat-item {
        width: 100%;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-year {
        font-size: 24px;
    }
}
