/* =========================================
   WNCC DARK — Premium Landing Page
   Brand Colors: #1ba2cc (cyan) / #082d5a (navy)
   ========================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:          #030a12;
    --bg-2:        #060f1c;
    --bg-card:     #0a1525;
    --bg-card-h:   #0e1c30;
    --border:      rgba(27, 162, 204, 0.1);
    --border-h:    rgba(27, 162, 204, 0.25);
    --text:        #ffffff;
    --text-muted:  rgba(255,255,255,0.52);
    --text-dim:    rgba(255,255,255,0.22);

    /* Brand */
    --cyan:        #1ba2cc;
    --cyan-bright: #22c5f5;
    --cyan-dim:    rgba(27,162,204,0.18);
    --navy:        #082d5a;

    /* Glows */
    --glow-cyan:   rgba(27,162,204,0.28);
    --glow-navy:   rgba(8,45,90,0.45);
    --glow-mid:    rgba(6,100,160,0.22);

    --radius:    16px;
    --radius-sm: 10px;
    --font: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ---- CANVAS ---- */
#starCanvas {
    position: fixed;
    inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ---- LAYOUT ---- */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    position: relative;
    z-index: 1;
    padding: 110px 0;
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(3, 10, 18, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img { height: 32px; width: auto; }

.nav-logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}

.logo-w {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--cyan);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.87rem;
    font-weight: 600;
    white-space: nowrap;
    margin-left: auto;
    transition: all 0.25s;
}
.nav-cta:hover {
    background: var(--cyan-bright);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(27,162,204,0.4);
}

/* ---- LANG TOGGLE ---- */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 4px 10px;
    flex-shrink: 0;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 4px;
    transition: color 0.2s;
    letter-spacing: 0.5px;
}

.lang-btn:hover { color: var(--text); }

.lang-btn.lang-active {
    color: var(--cyan-bright);
}

.lang-sep {
    color: var(--border-h);
    font-size: 0.75rem;
    user-select: none;
}

.mobile-lang {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    margin-left: auto;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 28px;
    background: rgba(3,10,18,0.97);
    border-top: 1px solid var(--border);
    gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .mobile-cta { color: var(--cyan); font-weight: 600; border-bottom: none; }

/* ---- GLOW ORBS ---- */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(110px);
    z-index: 0;
}

.glow-1 {
    width: 700px; height: 700px;
    top: -250px; left: -180px;
    background: var(--glow-cyan);
    animation: orbFloat 14s ease-in-out infinite alternate;
}
.glow-2 {
    width: 550px; height: 550px;
    top: -100px; right: -200px;
    background: var(--glow-navy);
    animation: orbFloat 17s ease-in-out infinite alternate-reverse;
}
.glow-3 {
    width: 420px; height: 420px;
    bottom: 80px; left: 35%;
    background: var(--glow-mid);
    animation: orbFloat 20s ease-in-out infinite alternate;
}

@keyframes orbFloat {
    0%   { transform: translate(0,0) scale(1); }
    50%  { transform: translate(35px,-28px) scale(1.08); }
    100% { transform: translate(-22px,18px) scale(0.92); }
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27,162,204,0.1);
    border: 1px solid rgba(27,162,204,0.3);
    color: var(--cyan-bright);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 36px;
    letter-spacing: 0.3px;
}

.badge-dot {
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:0.4; transform:scale(1.4); }
}

.hero-title {
    font-size: clamp(2.6rem, 6.5vw, 5.2rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -3px;
    margin-bottom: 28px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 50%, #7dd9f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradShift 4s linear infinite alternate;
}
@keyframes gradShift {
    0%   { background-position: 0% center; }
    100% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 44px;
    line-height: 1.78;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

/* ---- BUTTONS ---- */
.btn-primary-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cyan);
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
    font-family: var(--font);
}
.btn-primary-dark:hover {
    background: var(--cyan-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(27,162,204,0.45);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-muted);
    text-decoration: none;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: all 0.25s;
}
.btn-ghost:hover {
    border-color: var(--border-h);
    color: var(--text);
    background: rgba(27,162,204,0.05);
}

.btn-full { width: 100%; justify-content: center; }

/* ---- HERO STATS ---- */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--text), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 0.77rem; color: var(--text-dim); font-weight: 500; margin-top: 2px; }
.stat-divider { width: 1px; height: 44px; background: var(--border); }

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}
.scroll-line {
    width: 1px; height: 54px;
    background: linear-gradient(to bottom, transparent, var(--text-dim));
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,100% { opacity:1; transform:scaleY(1); }
    50%      { opacity:0.3; transform:scaleY(0.6); }
}
.hero-scroll span { font-size: 0.68rem; color: var(--text-dim); letter-spacing: 2.5px; text-transform: uppercase; }

/* ---- SECTION COMMON ---- */
.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.section-heading {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.12;
    margin-bottom: 56px;
}

/* ---- SERVICES ACCORDION ---- */
.services-section { background: var(--bg-2); }

.services-accordion {
    display: flex;
    gap: 12px;
    height: 480px;
    width: 100%;
}

.sa-item {
    flex: 1;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), background 0.4s, border-color 0.4s;
    display: flex;
    align-items: center;
    min-width: 50px;
}

.sa-title-vertical {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 16px;
}

.sa-icon-top {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    color: var(--cyan);
    transition: opacity 0.3s;
    background: rgba(27,162,204,0.08);
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(27,162,204,0.15);
}

.sa-content {
    padding: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0s;
    pointer-events: none;
    width: 100%;
    min-width: 320px;
}

.sa-content .sa-icon-large {
    width: 52px; height: 52px;
    background: var(--cyan-dim);
    border: 1px solid rgba(27,162,204,0.22);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--cyan-bright);
    margin-bottom: 24px;
}

.sa-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.sa-content p {
    color: var(--text-muted);
    line-height: 1.68;
    font-size: 0.95rem;
}

.sa-item:hover {
    flex: 6;
    background: var(--bg-card-h);
    border-color: var(--cyan);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 40px rgba(27, 162, 204, 0.05);
}

.sa-item:hover .sa-title-vertical,
.sa-item:hover .sa-icon-top {
    opacity: 0;
}

.sa-item:hover .sa-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
    pointer-events: auto;
}

.sa-item::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 160px; height: 160px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    background: var(--glow-cyan);
    transition: opacity 0.4s;
    pointer-events: none;
}
.sa-item:hover::after { opacity: 1; }

/* ---- TECH LOGO MARQUEE ---- */
.tech-section { padding: 80px 0; overflow: hidden; }

.logo-marquee-wrapper {
    overflow: hidden;
    margin-top: 0;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logo-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: logoScroll 36s linear infinite;
    padding: 8px 0;
}

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

.logo-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 12px 22px;
    white-space: nowrap;
    transition: border-color 0.25s, transform 0.25s;
    cursor: default;
}

.logo-pill:hover {
    border-color: var(--border-h);
    transform: translateY(-2px);
}

.logo-pill img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-pill span {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--text-muted);
}

.logo-pill-text .lp-badge {
    width: 26px;
    height: 26px;
    background: var(--cyan-dim);
    border: 1px solid rgba(27,162,204,0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 800;
    color: var(--cyan-bright);
    text-align: center;
    line-height: 1.1;
    flex-shrink: 0;
}

/* ---- ABOUT ---- */
.about-section { background: var(--bg-2); }

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

.about-left .section-heading { margin-bottom: 24px; }

.about-text {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.82;
    margin-bottom: 18px;
}
.about-text strong { color: var(--text); }

.about-cta { margin-top: 32px; }

.about-card-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-feat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    transition: all 0.25s;
}
.about-feat-card:hover {
    border-color: var(--border-h);
    background: var(--bg-card-h);
}

.about-feat-card > i {
    font-size: 1.3rem;
    color: var(--cyan);
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}
.about-feat-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 3px;
}
.about-feat-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---- CONTACT ---- */
.contact-section { padding-top: 80px; padding-bottom: 80px; }

.contact-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden; /* clip map corners */
    position: relative;
}

/* Full-width map at top */
.contact-map-banner {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.contact-map-banner iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(20%) brightness(0.85) contrast(0.95);
}

/* Bottom gradient fade so map bleeds into card */
.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--bg-card));
    pointer-events: none;
    z-index: 2;
}

/* Body below map */
.contact-body {
    padding: 48px 56px 56px;
    position: relative;
    z-index: 1;
}

.contact-glow {
    position: absolute;
    top: 160px; right: -80px;
    width: 400px; height: 400px;
    background: var(--glow-cyan);
    filter: blur(100px);
    pointer-events: none;
    opacity: 0.3;
    z-index: 0;
    border-radius: 50%;
}

.contact-body .section-heading { margin-bottom: 10px; }

.contact-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 36px;
}

.contact-split {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: start;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 4px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-muted);
    font-size: 0.88rem;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item i { color: var(--cyan); width: 18px; text-align: center; margin-top: 2px; flex-shrink: 0; }
.contact-info-item .ci-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    font-weight: 600;
    margin-bottom: 3px;
}
.contact-info-item .ci-value { color: var(--text); font-size: 0.9rem; font-weight: 500; }
.contact-info-item a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.contact-info-item a:hover { color: var(--cyan); }

/* Map */
.contact-map {
    margin-top: 20px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    filter: grayscale(30%) contrast(0.9) brightness(0.85);
    transition: filter 0.3s;
}
.contact-map:hover { filter: grayscale(0%) contrast(1) brightness(1); }
.contact-map iframe { display: block; width: 100%; }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(27,162,204,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    padding: 14px 18px;
    font-size: 0.9rem;
    font-family: var(--font);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(27,162,204,0.45);
    background: rgba(27,162,204,0.07);
}

.form-message {
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.87rem;
    font-weight: 500;
    text-align: center;
    display: none;
}
.form-message.success {
    background: rgba(27,162,204,0.1);
    border: 1px solid rgba(27,162,204,0.3);
    color: var(--cyan-bright);
}
.form-message.error {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    color: #fca5a5;
}

/* ---- FOOTER ---- */
.footer {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.84rem;
    margin-top: 10px;
    max-width: 340px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.87rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-bottom {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.79rem;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .services-accordion {
        flex-direction: column;
        height: auto;
    }
    .sa-item {
        flex: 0 0 72px;
        height: 72px;
        min-height: 72px;
        align-items: flex-start;
        transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .sa-item:hover {
        flex: 0 0 240px;
        height: 240px;
        min-height: 240px;
    }
    .sa-title-vertical {
        writing-mode: horizontal-tb;
        transform: translateY(-50%);
        top: 36px;
        bottom: auto;
        left: 24px;
        width: calc(100% - 48px);
        white-space: normal;
        line-height: 1.3;
    }
    .sa-icon-top { display: none; }
    .sa-content {
        padding: 24px;
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        min-width: unset;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .sa-content .sa-icon-large { display: none; }
    .sa-content h3 { font-size: 1.25rem; margin-bottom: 8px; }
    .sa-content p { font-size: 0.9rem; line-height: 1.6; }
    
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-split { grid-template-columns: 1fr; gap: 36px; }
    .contact-body { padding: 36px 40px 48px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta, .lang-toggle { display: none; }
    .mobile-menu-btn { display: block; }

    .sa-item:hover { 
        flex: 0 0 260px;
        height: 260px;
        min-height: 260px;
    }

    .section { padding: 64px 0; }
    .section-heading { letter-spacing: -1px; }
    .hero-title { letter-spacing: -2px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-map-banner { height: 200px; }
    .contact-body { padding: 24px 20px 36px; }
    .contact-section { padding-top: 40px; padding-bottom: 40px; }
    .stat-divider { display: none; }
    .hero-stats { gap: 20px; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .about-grid { gap: 32px; }
    .container { padding: 0 18px; }
    .sa-item { padding: 0; }
    .logo-marquee-wrapper { margin-top: 16px; }
    .tech-section .section-heading { margin-bottom: 32px; }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-cta-group { flex-direction: column; }
    .btn-primary-dark, .btn-ghost { width: 100%; justify-content: center; }
    .contact-map-banner { height: 160px; }
    .nav-container { padding: 0 16px; }
}
