/**************************
  ANIMATED PAGE TITLE
***************************/
.page-main {
  min-height: 100vh;
  padding: 100px 6% 40px 6%;
  margin: 0;
  background: #f5f5f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.page-hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 40px;
}

.page-title {
  font-family: 'Russo One', sans-serif !important;
  font-size: 2.5rem !important;
  font-weight: 400 !important;
  color: #f89939 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  margin: 0 !important;
  padding-left: 16px;
  border-left: 4px solid #64c6c2;
  line-height: 1.2;
  
  /* Animation */
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInFade 1s ease-out 0.5s forwards;
}

@keyframes slideInFade {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/**************************
  VEGA UNIEORA LABS - MAIN CONTENT
***************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

#main-content {
    margin: 0 !important;
    padding: 0 !important;
}

.labs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6%;
}

/* ============ HERO ============ */
.labs-hero-premium {
    margin-top: 0 !important;
    height: 100vh;
    min-height: 700px;
    background: url('https://vegaunieora.com/Images/VULH.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(57, 57, 57, 0.7) 0%, rgba(100, 198, 194, 0.4) 100%);
    z-index: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-label {
    font-family: 'Russo One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #64c6c2 0%, #5fbe79 100%);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 
        0 12px 40px rgba(100, 198, 194, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.hero-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.hero-label:hover::before {
    left: 100%;
}

.hero-content-premium h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
}

.hero-content-premium p {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 38px;
    letter-spacing: 0.02em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-partner-tagline {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(0.9rem, 1.15vw, 1.05rem) !important;
    font-weight: 500 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84) !important;
    margin: -6px auto 18px auto !important;
    max-width: 760px;
}

.hero-cta-premium {
    margin-bottom: 0;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #f89939;
    color: #fff;
    text-decoration: none;
    font-family: 'Russo One', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 700;
}

.hero-btn:hover {
    background: #64c6c2;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(100, 198, 194, 0.4);
}

.hero-stats-row {
    display: flex;
    gap: 80px;
    justify-content: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.stat-val {
    font-family: 'Russo One', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.stat-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ============ SECTION HEADER ============ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.badge-minimal {
    font-family: 'Russo One', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    padding: 11px 26px;
    background: linear-gradient(135deg, #64c6c2 0%, #5fbe79 100%);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 
        0 12px 40px rgba(100, 198, 194, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: all 0.3s ease;
}

.badge-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.badge-minimal:hover::before {
    left: 100%;
}

.section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 3rem;
    color: #393939;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
}

/* ============ ODF INTERACTIVE ============ */
.odf-interactive {
    padding: 80px 6%;
    background: linear-gradient(135deg, #f0fefb 0%, #fef9f5 100%);
}

.odf-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.odf-card-interactive {
    background: linear-gradient(135deg, #fef9f5 0%, #f8f9fa 100%);
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.odf-card-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #f89939, #64c6c2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.odf-card-interactive:hover::before {
    transform: scaleX(1);
}

.odf-card-interactive:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(100, 198, 194, 0.2);
    background: linear-gradient(135deg, #f5f7f6 0%, #fff 100%);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.labs-card-svg {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto;
}

.odf-card-interactive h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.4rem;
    color: #393939;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.odf-card-interactive p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

.card-accent {
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #f89939, #64c6c2);
    margin: 20px auto 0;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.odf-card-interactive:hover .card-accent {
    opacity: 1;
}

/* ============ TIMELINE ============ */
.expertise-zigzag {
    padding: 80px 6% !important;
    position: relative !important;
    background-image: 
        linear-gradient(135deg, rgba(240, 253, 251, 0.4) 0%, rgba(245, 247, 246, 0.4) 100%),
        url('https://vegaunieora.com/Images/VULT.webp') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    min-height: 800px !important;
}

.expertise-zigzag > .labs-container {
    position: relative;
    z-index: 1;
}

.expertise-zigzag .section-header .badge-minimal {
    font-family: 'Russo One', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    padding: 11px 26px;
    background: linear-gradient(135deg, #64c6c2 0%, #5fbe79 100%);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 
        0 12px 40px rgba(100, 198, 194, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.expertise-zigzag .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 3rem;
    color: #2c3e50;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.timeline-vertical {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-vertical::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: calc(100% - 100px);
    background: linear-gradient(to bottom, #f89939, #64c6c2, #5fbe79);
    top: 0;
    z-index: 0;
}

.timeline-step {
    position: relative;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    z-index: 1;
}

.timeline-step:nth-child(even) {
    direction: rtl;
}

.timeline-step:nth-child(even) > * {
    direction: ltr;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #f89939;
    border: 4px solid #fff;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 3px #64c6c2;
}

.timeline-item-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #64c6c2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.timeline-item-content:hover {
    box-shadow: 0 8px 25px rgba(100, 198, 194, 0.15);
    transform: translateY(-5px);
}

.year-badge {
    display: inline-block;
    font-family: 'Russo One', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: #f89939;
    background: rgba(248, 153, 57, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.timeline-item-content h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: #393939;
    margin: 12px 0 8px;
    font-weight: 700;
}

.timeline-item-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.65;
}

/* ============ CAPABILITIES ============ */
.capabilities-modern {
    padding: 80px 6%;
    background: #fff;
}

.capabilities-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.capability-stat-card {
    background: linear-gradient(135deg, #fef9f5 0%, #f8f9fa 100%);
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(100, 198, 194, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.capability-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #f89939, #64c6c2);
}

.capability-stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(100, 198, 194, 0.2);
    border-color: #64c6c2;
    background: linear-gradient(135deg, #fff 0%, #f5f7f6 100%);
}

.stat-card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.labs-stat-svg {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto;
}

.capability-stat-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: #393939;
    margin-bottom: 15px;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.capability-stat-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.stat-accent {
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #f89939, #64c6c2);
    margin: 20px auto 0;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.capability-stat-card:hover .stat-accent {
    opacity: 1;
}

/* ============ PRODUCTS ============ */
.products-showcase-modern {
    padding: 80px 6%;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 50%),
        linear-gradient(to bottom, #c8f0ed 0%, #d4f3f0 30%, #e8f8f6 70%, #e0f5f2 100%);
    position: relative;
    background-attachment: fixed;
}

.products-showcase-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 50%, rgba(100, 198, 194, 0.2) 0%, transparent 35%),
        radial-gradient(circle at 85% 85%, rgba(95, 190, 121, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 0%, rgba(100, 198, 194, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    box-shadow: inset 0 0 60px rgba(100, 198, 194, 0.1);
}

.products-showcase-modern > * {
    position: relative;
    z-index: 1;
}

.product-category-modern {
    margin-bottom: 70px;
}

.category-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #f89939;
}

.category-header-modern h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    color: #393939;
    margin: 0;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.product-count {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #64c6c2;
    background: rgba(100, 198, 194, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    font-weight: 600;
    border: 1px solid rgba(100, 198, 194, 0.3);
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card-modern {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(100, 198, 194, 0.25);
    position: relative;
    box-shadow: 0 4px 20px rgba(100, 198, 194, 0.1);
}

.product-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(100, 198, 194, 0.3);
    border-color: #f89939;
    background: rgba(255, 255, 255, 0.98);
}

.product-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-modern:hover .product-visual img {
    transform: scale(1.1);
}

.tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f89939;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Russo One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 1;
    font-weight: 700;
}

.product-card-modern h4 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.15rem;
    color: #393939;
    padding: 18px 15px 6px;
    margin: 0;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.product-card-modern p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
    padding: 0 15px 18px;
    margin: 0;
    line-height: 1.5;
}

/* ============ FACILITIES ============ */
.facilities-showcase {
    padding: 80px 6%;
    background: #fff;
}

.facilities-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.facility-image-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.facility-image-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(100, 198, 194, 0.2);
}

.facility-image-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.facility-image-card:hover img {
    transform: scale(1.08);
}

.facility-info {
    padding: 35px;
    background: #fff;
}

.facility-info h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.4rem;
    color: #393939;
    margin: 0 0 12px;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.facility-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.65;
}

/* ============ CTA ============ */
.labs-cta-modern {
    padding: 70px 6%;
    background: #fff;
    position: relative;
    color: #393939;
    text-align: center;
    overflow: hidden;
}

.labs-cta-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(100,198,194,0.08)"/></pattern></defs><rect fill="url(%23dots)" width="1200" height="600"/></svg>');
    opacity: 1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.labs-cta-modern h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #393939;
    font-weight: 700;
}

.labs-cta-modern p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #666;
}

.cta-buttons-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-modern-primary {
    display: none;
}

.btn-modern-secondary {
    padding: 16px 40px;
    font-family: 'Russo One', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    background: #f89939;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.btn-modern-secondary:hover {
    background: #ff7f1f;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(248, 153, 57, 0.4);
}

/**************************
  MEDIA QUERIES - DESKTOP
***************************/
@media screen and (min-width: 1024px) {
    .footer-content {
        align-items: flex-start;
        gap: 0;
    }

    .footer-company {
        flex: 0 0 370px;
        padding-right: 40px;
    }

    .footer-menus-group {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
        align-items: flex-start;
    }

    .footer-menus-group .footer-column {
        flex: none;
        min-width: 0;
    }
}

/**************************
  MEDIA QUERIES - TABLET
***************************/
@media screen and (max-width: 1023px) {
    body {
        font-size: 0.9rem;
    }

    .custom-logo {
        left: 20px;
        height: 32px;
        top: 24px;
    }

    #menu ul {
        right: 20px;
        gap: 22px;
    }

    #menu ul a {
        font-size: 0.8125rem;
        letter-spacing: 0.09375rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.875rem;
        text-align: center;
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .footer-column {
        min-width: auto;
        width: 100%;
        text-align: center;
    }

    .footer-logo {
        max-width: 140px;
        margin: 0 auto 1.25rem auto;
        display: block;
    }

    .footer-menu a:hover {
        transform: translateX(0) scale(1.05);
    }

    .footer-menus-group {
        display: flex;
        flex-direction: column;
        gap: 1.875rem;
        text-align: center;
        width: 100%;
    }

    .footer-menus-group .footer-column {
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .page-main {
        padding: 80px 5% 30px 5%;
    }
    
    .page-title {
        font-size: 2rem !important;
    }

    .odf-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .capabilities-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .facilities-image-grid {
        grid-template-columns: 1fr;
    }

    .timeline-vertical::before {
        left: 30px;
        height: calc(100% - 80px);
    }

    .timeline-step {
        grid-template-columns: 1fr;
    }

    .timeline-item-content {
        margin-left: 50px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .expertise-zigzag {
        background-attachment: scroll;
    }

    .products-showcase-modern {
        background-attachment: scroll;
    }
}

/**************************
  MEDIA QUERIES - MOBILE
***************************/
@media (max-width: 600px) {
    .mobile-hamburger {
        display: flex;
    }

    #menu ul {
        display: none;
    }

    body.mobile-menu-open body::before,
    body.mobile-menu-open .custom-logo {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    body.mobile-menu-open .mobile-hamburger {
        z-index: 9999;
    }

    body.mobile-menu-open #menu ul {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        z-index: 9998;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.875rem;
        margin: 0;
        padding: 0;
    }

    body.mobile-menu-open #menu ul a {
        font-family: 'Russo One', sans-serif;
        font-size: 1.875rem;
        padding: 1.125rem 1.25rem;
        color: #393939;
        text-decoration: none;
        text-align: center;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
        font-weight: 400;
        white-space: nowrap;
        letter-spacing: 0.08em;
    }

    body.mobile-menu-open #menu ul a:hover {
        background: rgba(248, 153, 57, 0.1);
        color: #f89939;
        transform: scale(1.05);
    }

    body.mobile-menu-open #menu ul a::before {
        display: none;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    .odf-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .capabilities-grid-modern {
        grid-template-columns: 1fr;
    }

    .products-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 1.8rem !important;
    }

    .expertise-zigzag .section-header h2 {
        font-size: 1.8rem !important;
        letter-spacing: 0.04em !important;
    }

    .products-showcase-modern .section-header h2 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }

    .product-count {
        display: none !important;
    }

    .hero-content-premium h1 {
        font-size: 2.5rem;
    }

    .page-main {
        padding: 70px 4% 20px 4%;
    }
    
    .page-hero {
        margin-bottom: 25px;
    }
    
    .page-title {
        font-size: 1.75rem !important;
        padding-left: 12px;
        border-left-width: 3px;
    }
}

/**************************
  MEDIA QUERIES - SMALL MOBILE
***************************/
@media screen and (max-width: 480px) {
    body::before {
        height: 70px;
    }

    body {
        padding-top: 70px;
    }

    .custom-logo {
        top: 21px;
        left: 15px;
        height: 28px;
    }

    .page-main {
        padding: 60px 3% 15px 3%;
    }
    
    .page-hero {
        margin-bottom: 20px;
    }
    
    .page-title {
        font-size: 1.5rem !important;
        padding-left: 10px;
        border-left-width: 3px;
        letter-spacing: 0.1em !important;
    }
}


/* Hero Harmonization */
.portfolio-hero--labs {
  height: auto;
  min-height: calc(100vh - 80px);
  padding: 48px 6%;
}

.portfolio-hero--labs .portfolio-hero__badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
}

.portfolio-hero--labs .portfolio-hero__title {
  font-size: clamp(2.3rem, 5.2vw, 5rem);
  margin-bottom: 16px;
}

.portfolio-hero--labs .portfolio-hero__subtitle {
  max-width: 840px;
}

.portfolio-hero--labs .portfolio-hero__stats {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
