/* ============================================================
   MOSIMTEC - Main Stylesheet
   Colors: Navy #183764, Accent #34ccff, Dark #15253c
   Fonts: Titillium Web (headings), Open Sans (body)
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Titillium Web', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #183764;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1em; }

a { color: #183764; text-decoration: none; transition: color 0.2s; }
a:hover { color: #34ccff; }

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

ul, ol { padding-left: 1.5em; margin-bottom: 1em; }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-muted { color: #808080; }
.text-muted-light { color: rgba(255,255,255,0.6); }
.mt-1 { margin-top: 1.5rem; }

.content-narrow { max-width: 820px; margin: 0 auto; }

/* --- Grid --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.grid-content-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: 'Titillium Web', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
}

.btn-primary {
    background: #34ccff;
    color: #183764;
    border-color: #34ccff;
}
.btn-primary:hover {
    background: #183764;
    color: #fff;
    border-color: #183764;
}

.btn-outline {
    background: transparent;
    color: #183764;
    border-color: #183764;
}
.btn-outline:hover {
    background: #183764;
    color: #fff;
}

.btn-lg { padding: 14px 36px; font-size: 1rem; }
.btn-block { display: block; width: 100%; }

.link-arrow {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    color: #34ccff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.link-arrow:hover { color: #183764; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #183764;
    transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.15); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img { height: 45px; width: auto; }

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-item > a,
.nav-item > .nav-label {
    display: block;
    padding: 28px 16px;
    color: #fff;
    font-family: 'Titillium Web', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-item > a:hover,
.nav-item > .nav-label:hover { color: #34ccff; }

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #15253c;
    min-width: 260px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    z-index: 100;
}

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

.dropdown a {
    display: block;
    padding: 10px 20px;
    color: rgba(255,255,255,0.8);
    font-family: 'Titillium Web', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.2s;
}

.dropdown a:hover {
    color: #fff;
    background: rgba(52,204,255,0.1);
    padding-left: 24px;
}

/* Nav CTA */
.nav-cta {
    margin-left: 16px;
    padding: 10px 22px !important;
    background: #34ccff;
    color: #183764 !important;
    border-radius: 4px;
    font-family: 'Titillium Web', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.25s;
}
.nav-cta:hover {
    background: #fff;
    color: #183764 !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: #183764;
    color: #fff;
    padding: 120px 0 60px;
}

.hero-home {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #183764 0%, #15253c 100%);
    text-align: center;
}

.hero h1 { color: #fff; font-size: 2.8rem; font-weight: 700; margin-bottom: 0.3em; }
.hero-home h1 { font-size: 3.2rem; }
.hero-sub { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 1.5em; font-weight: 300; }

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn-outline { color: #fff; border-color: #fff; }
.hero-actions .btn-outline:hover { background: #fff; color: #183764; }

.hero-page { padding: 120px 0 50px; }
.hero-page h1 { font-size: 2.2rem; }

.post-meta-hero {
    display: flex;
    gap: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 0.5em;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: #15253c;
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Titillium Web', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #34ccff;
}

.stat-label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 60px 0; }
.section-dark { background: #183764; color: #fff; }
.section-dark h2 { color: #fff; }
.section-light { background: #f7f9fc; }

.section-cta {
    background: linear-gradient(135deg, #183764 0%, #15253c 100%);
    color: #fff;
    padding: 80px 0;
}
.section-cta h2 { color: #fff; margin-bottom: 0.3em; }
.section-cta p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 1.5em; }

.section-testimonials {
    background: #183764;
    color: #fff;
    padding: 80px 0;
}

/* ============================================================
   CONTENT STYLES
   ============================================================ */
.page-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.page-content h2 { margin-top: 2em; margin-bottom: 0.5em; }
.page-content h3 { margin-top: 1.5em; margin-bottom: 0.4em; }

.page-content img {
    border-radius: 6px;
    margin: 1.5em 0;
}

.page-content blockquote {
    border-left: 4px solid #34ccff;
    padding: 1em 1.5em;
    margin: 1.5em 0;
    background: #f7f9fc;
    border-radius: 0 6px 6px 0;
    font-style: italic;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.page-content th, .page-content td {
    padding: 10px 14px;
    border: 1px solid #e6e6e6;
    text-align: left;
}

.page-content th { background: #f7f9fc; font-weight: 600; }

.content-hero-img, .post-hero-img {
    border-radius: 8px;
    margin-bottom: 2rem;
    width: 100%;
}

/* --- CTA Box --- */
.cta-box {
    background: #f7f9fc;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 3rem;
}
.cta-box h3 { margin-bottom: 0.3em; }
.cta-box p { color: #595959; margin-bottom: 1em; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-card {
    background: #f7f9fc;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.sidebar-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid #34ccff;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
}
.sidebar-nav li { margin-bottom: 0; }
.sidebar-nav li a {
    display: block;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #e6e6e6;
    color: #595959;
}
.sidebar-nav li a:hover { color: #183764; padding-left: 4px; }
.sidebar-nav li.active a { color: #183764; font-weight: 600; }

.sidebar-cta {
    background: #183764;
    color: #fff;
}
.sidebar-cta h3 { color: #fff; border-color: #34ccff; }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

.sidebar-phone {
    text-align: center;
    margin-top: 1em;
    font-size: 0.85rem;
}
.sidebar-phone a { color: #34ccff; }

/* ============================================================
   POST CARDS / GRID
   ============================================================ */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.post-card-img {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.post-card:hover .post-card-img img { transform: scale(1.05); }

.post-card-body { padding: 1.5rem; }
.post-card-body h2 { font-size: 1.1rem; margin-bottom: 0.5em; }
.post-card-body h2 a { color: #183764; }
.post-card-body h2 a:hover { color: #34ccff; }
.post-card-body p { font-size: 0.9rem; color: #595959; margin-bottom: 0.8em; }

.post-date {
    display: block;
    font-size: 0.8rem;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4em;
}

.post-category {
    display: inline-block;
    padding: 3px 10px;
    background: #34ccff;
    color: #183764;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    margin-bottom: 0.5em;
}

/* --- News List --- */
.news-list { max-width: 820px; margin: 0 auto; }

.news-item {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e6e6e6;
    align-items: center;
}

.news-item h2 { font-size: 1.2rem; margin-bottom: 0.3em; }
.news-item p { font-size: 0.9rem; color: #595959; }

.news-item-img img { border-radius: 6px; }

.news-preview {
    padding: 1rem 0;
    border-bottom: 1px solid #e6e6e6;
}
.news-preview h3 { font-size: 1rem; margin-bottom: 0; }
.news-preview .news-date { font-size: 0.8rem; color: #808080; }

/* --- Post Tags --- */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e6e6e6;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f7f9fc;
    border: 1px solid #e6e6e6;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #595959;
}

/* --- Post Nav --- */
.post-nav {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e6e6e6;
}

/* ============================================================
   INDUSTRY GRID (Home)
   ============================================================ */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.industry-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    transition: all 0.25s;
}
.industry-card:hover {
    background: rgba(52,204,255,0.15);
    border-color: #34ccff;
    transform: translateY(-2px);
}
.industry-card h3 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion { border: 1px solid #e6e6e6; border-radius: 8px; overflow: hidden; }

.accordion-item { border-bottom: 1px solid #e6e6e6; }
.accordion-item:last-child { border-bottom: none; }

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background: #fff;
    border: none;
    font-family: 'Titillium Web', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #183764;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.accordion-header:hover { background: #f7f9fc; }
.accordion-header::after { content: '\25BC'; font-size: 0.7rem; transition: transform 0.3s; }
.accordion-header[aria-expanded="true"]::after { transform: rotate(180deg); }

.accordion-body {
    display: none;
    padding: 0 20px 16px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-slider { position: relative; min-height: 120px; }

.testimonial {
    display: none;
    animation: fadeIn 0.5s;
}
.testimonial.active { display: block; }

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

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 1em;
}

.testimonial cite {
    font-style: normal;
    display: block;
}
.testimonial cite strong {
    color: #34ccff;
    display: block;
    font-size: 0.95rem;
}
.testimonial cite span {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 1.5rem;
}

.location-badge {
    padding: 8px 18px;
    background: #f7f9fc;
    border: 1px solid #e6e6e6;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #183764;
    font-weight: 600;
}

.locations-list.compact { justify-content: flex-start; }
.locations-list.compact .location-badge { padding: 5px 12px; font-size: 0.8rem; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-title { color: #34ccff; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5em; }
.team-bio { font-size: 0.9rem; color: #595959; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group { margin-bottom: 1.2rem; }

.form-group label {
    display: block;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #183764;
    margin-bottom: 0.3em;
}

.required { color: #e74c3c; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #34ccff;
    box-shadow: 0 0 0 3px rgba(52,204,255,0.15);
}

.form-status {
    margin-top: 1rem;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    display: none;
}
.form-status.success { display: block; background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-status.error { display: block; background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.contact-info-card {
    background: #f7f9fc;
    border-radius: 8px;
    padding: 2rem;
}

.contact-detail { margin-bottom: 1.5rem; }
.contact-detail h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #808080;
    margin-bottom: 0.3em;
}
.contact-detail p { margin-bottom: 0; }

.contact-map { margin-top: 1.5rem; }
.map-img { border-radius: 8px; width: 100%; }

/* ============================================================
   CASE STUDY SECTIONS
   ============================================================ */
.cs-section { margin-bottom: 2rem; }
.cs-section h2 {
    font-size: 1.3rem;
    padding-bottom: 0.3em;
    border-bottom: 2px solid #34ccff;
    display: inline-block;
}

.case-testimonial {
    background: #183764;
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #34ccff;
}
.case-testimonial p { font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,0.9); }

/* ============================================================
   VIDEO
   ============================================================ */
.video-thumbnail {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(52,204,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.3s;
}
.video-thumbnail:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }

/* ============================================================
   ERROR PAGE
   ============================================================ */
.error-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #15253c; color: rgba(255,255,255,0.7); }

.footer-top { padding: 60px 0 40px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
}

.footer-logo img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); }

.footer-social { margin-top: 1rem; }
.footer-social a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
    margin-right: 12px;
}
.footer-social a:hover { color: #34ccff; }

.footer-col h4 {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1em;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.5em; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col ul li a:hover { color: #34ccff; }

.footer-col p { font-size: 0.9rem; }
.footer-col p a { color: rgba(255,255,255,0.6); }
.footer-col p a:hover { color: #34ccff; }

.footer-locations { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p { font-size: 0.8rem; margin: 0; color: rgba(255,255,255,0.4); }

.footer-links { display: flex; gap: 20px; }
.footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}
.footer-links a:hover { color: #34ccff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .grid-content-sidebar { grid-template-columns: 1fr; }
    .content-sidebar { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .industry-grid { grid-template-columns: repeat(3, 1fr); }
    .post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }

    .hero { padding: 100px 0 40px; }
    .hero-home { padding: 120px 0 60px; }
    .hero-home h1 { font-size: 2rem; }
    .hero-page h1 { font-size: 1.8rem; }

    .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .post-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; gap: 10px; }

    .news-item { grid-template-columns: 1fr; }
    .news-item-img { display: none; }

    /* Mobile nav */
    .mobile-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #183764;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s;
    }
    .main-nav.open { transform: translateX(0); }

    .nav-item > a,
    .nav-item > .nav-label {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        min-width: 0;
        padding: 0 0 0 20px;
        display: none;
    }
    .nav-item.open .dropdown { display: block; }

    .dropdown a {
        padding: 8px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-cta {
        margin: 16px 0 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat-number { font-size: 2rem; }
    .industry-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .hero-home h1 { font-size: 1.6rem; }
}
