body {
      background-color: #1F1E1E;
      color: #FFFFFF;
    }
    .glass-apple {
      background: rgba(36, 33, 32, 0.65);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    .glass-apple-card {
      background: rgba(45, 41, 39, 0.72);
      backdrop-filter: blur(20px) saturate(160%);
      -webkit-backdrop-filter: blur(20px) saturate(160%);
      border: 1px solid rgba(255, 255, 255, 0.09);
      box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }
    .glass-apple-elevated {
      background: rgba(54, 49, 47, 0.85);
      backdrop-filter: blur(28px) saturate(190%);
      -webkit-backdrop-filter: blur(28px) saturate(190%);
      border: 1px solid rgba(215, 122, 37, 0.35);
      box-shadow: 0 14px 36px -10px rgba(215, 122, 37, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }
    .furnace-glow {
      box-shadow: 0 0 45px -5px rgba(215, 122, 37, 0.45);
    }
    .smoke-ambient {
      background: radial-gradient(circle at 50% 60%, rgba(94, 87, 83, 0.38) 0%, rgba(68, 57, 51, 0.5) 45%, rgba(31, 30, 30, 0.95) 85%);
    }
    .curve-divider {
      width: 100%;
      overflow: hidden;
      line-height: 0;
      transform: translateZ(0);
    }
    /* Floating Glass Navbar */
    .nav-glass-floating {
      background: rgba(25, 25, 25, 0.50);
      border: 1px solid rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }
    /* Hero Video Intro */
    @keyframes heroVideoEntrance {
      0% {
        opacity: 0;
        transform: scale(1.025);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }
    .hero-video-fade {
      animation: heroVideoEntrance 3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      will-change: opacity, transform;
    }
    /* Cinematic Video Overlay */
    .hero-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(10,10,10,0.15) 45%, rgba(5,5,5,0.65) 100%),
        radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0) 35%, rgba(5,5,5,0.65) 100%);
    }
    /* Frosted Architectural Glass Typography */
    .glass-hero-title {
      font-family: Inter, "SF Pro Display", "SF Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
      font-weight: 600;
      letter-spacing: -0.055em;
      line-height: 0.92;
      font-size: clamp(44px, 11vw, 150px);
      color: rgba(255, 255, 255, 0.78);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.65) 55%, rgba(255, 255, 255, 0.42) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 0 35px rgba(255, 255, 255, 0.08);
      filter: drop-shadow(0 4px 22px rgba(0, 0, 0, 0.75)) drop-shadow(0 1px 1px rgba(255, 255, 255, 0.22));
    }
    @media (min-width: 1024px) {
      .glass-hero-title {
        font-size: clamp(64px, 8.8vw, 155px);
      }
    }
    /* PDF Button */
    .pdf-nav-btn {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.10);
      color: rgba(255, 255, 255, 0.80);
      transition: all 0.25s ease;
    }
    .pdf-nav-btn:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(233, 130, 24, 0.60);
      color: #FFFFFF;
      box-shadow: 0 0 15px rgba(233, 130, 24, 0.30);
    }
    /* =======================================================
       CONTAINER ENTRANCE & HOVER ANIMATIONS (PC & MOBILE)
       ======================================================= */

    /* Base state: silky entrance animation on scroll into view */
    .container-anim {
      opacity: 0;
      transform: translateY(22px);
      filter: blur(2px);
      transition:
        opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
      will-change: opacity, transform, filter;
    }

    /* Revealed state: smoothly emerges into place */
    .container-anim.revealed {
      opacity: 1 !important;
      transform: translateY(0) !important;
      filter: blur(0) !important;
    }

    /* Universal Smooth Transitions for Glass Containers */
    .glass-apple,
    .glass-apple-card,
    .telemetry-card,
    .tl-row {
      transition:
        opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
    }

    /* PC / Desktop Hover Dynamics: Smooth Lift, Amber Glow, & Card Illumination */
    @media (hover: hover) and (pointer: fine) {
      .glass-apple:hover,
      .glass-apple-card:hover,
      .telemetry-card:hover,
      .tl-row:hover {
        transform: translateY(-4px) !important;
        border-color: rgba(233, 130, 24, 0.45) !important;
        box-shadow:
          0 20px 45px -12px rgba(0, 0, 0, 0.75),
          0 0 25px rgba(233, 130, 24, 0.18),
          inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
      }

      /* Micro-bounce on icon inside hovered container */
      .glass-apple:hover .material-symbols-outlined,
      .glass-apple-card:hover .material-symbols-outlined {
        transform: scale(1.12);
        color: #E98218;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
      }
    }

    /* Mobile Tactile Tap Feedback */
    @media (hover: none) or (pointer: coarse) {
      .glass-apple:active,
      .glass-apple-card:active,
      .telemetry-card:active,
      .tl-row:active {
        transform: scale(0.985) !important;
        border-color: rgba(233, 130, 24, 0.4) !important;
        transition: transform 0.15s ease !important;
      }
    }

    /* Reduced Motion */
    @media (prefers-reduced-motion: reduce) {
      .hero-video-fade {
        animation: none !important;
        opacity: 1 !important;
        transform: scale(1) !important;
      }
      .hero-content-scroll {
        transform: none !important;
        opacity: 1 !important;
      }
      .container-anim {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
      }
      .glass-apple,
      .glass-apple-card,
      .telemetry-card,
      .tl-row {
        transform: none !important;
        transition: none !important;
      }
    }

    /* Mobile Viewport Safety, Hero Compression & Compact Sections (max-width: 767px) */
    @media (max-width: 767px) {
      html, body {
        max-width: 100vw;
        overflow-x: hidden;
      }

      /* Global Section Vertical Compression */
      section {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
      }

      /* Compact Bezier Dividers */
      .curve-divider svg {
        height: 22px !important;
      }

      /* Section Header Titles & Spacing */
      section h2 {
        font-size: 1.65rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.4rem !important;
      }
      section .max-w-3xl.mb-14,
      section .max-w-3xl.mb-12,
      section .max-w-3xl.mb-10,
      section .mb-10,
      section .mb-12 {
        margin-bottom: 1.25rem !important;
      }

      /* =======================================================
         1. HERO SECTION (Bigger & Clean Spacing)
         ======================================================= */
      #hero {
        min-height: 65vh !important;
        height: auto !important;
        padding-top: 5.75rem !important;
        padding-bottom: 2.25rem !important;
        justify-content: flex-start !important;
      }
      #hero .hero-top-spacer {
        display: none !important;
      }
      #hero .hero-content-scroll {
        margin-top: 0.5rem !important;
        margin-bottom: 0.75rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
      }
      #hero .hero-eyebrow {
        margin-bottom: 1rem !important;
        padding: 5px 14px !important;
        gap: 8px !important;
      }
      #hero .hero-eyebrow span:last-child {
        font-size: 10.5px !important;
        letter-spacing: 0.08em !important;
      }
      #hero .glass-hero-title {
        font-size: clamp(42px, 12vw, 56px) !important;
        line-height: 0.95 !important;
        margin-bottom: 1.25rem !important;
      }
      #hero .hero-desc {
        display: none !important;
      }
      #hero .hero-cta-group {
        gap: 10px !important;
        margin-top: 0.25rem !important;
        margin-bottom: 0.5rem !important;
      }
      #hero .hero-cta-btn {
        height: 42px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        font-size: 13px !important;
        gap: 7px !important;
      }
      #hero .hero-cta-btn span.material-symbols-outlined {
        font-size: 16px !important;
      }

      /* =======================================================
         2 & 3. COMPACT 2-COLUMN TELEMETRY DATA CARDS
         ======================================================= */
      .telemetry-specs-container {
        margin-top: 1.5rem !important;
        padding-left: 0.85rem !important;
        padding-right: 0.85rem !important;
      }
      .telemetry-specs-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
      }
      .telemetry-card {
        padding: 12px 14px !important;
        border-radius: 14px !important;
      }
      .telemetry-card .telemetry-label {
        font-size: 10px !important;
        letter-spacing: 0.06em !important;
        margin-bottom: 2px !important;
        line-height: 1.2 !important;
      }
      .telemetry-card .telemetry-val {
        font-size: 15px !important;
        line-height: 1.25 !important;
        font-weight: 600 !important;
      }
      .telemetry-card .telemetry-sub {
        font-size: 11px !important;
        line-height: 1.25 !important;
        margin-top: 1px !important;
      }

      /* =======================================================
         3. MOBILE SECTORS HORIZONTAL SWIPE CAROUSEL & CARDS
         ======================================================= */
      .sector-carousel-container {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 12px !important;
        padding-bottom: 6px !important;
        scrollbar-width: none; /* Firefox */
        overscroll-behavior-x: contain !important;
        touch-action: pan-x pan-y !important;
      }
      .sector-carousel-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
      }

      /* All 6 sector cards render side-by-side at 100% width on mobile */
      .sector-carousel-container .sector-content {
        display: grid !important;
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
        box-sizing: border-box !important;
        padding: 1rem 0.85rem !important;
        gap: 12px !important;
        border-radius: 1.25rem !important;
      }

      /* Compact mobile heading for sector cards */
      .sector-carousel-container .sector-content h3 {
        font-size: 1.15rem !important;
        line-height: 1.25 !important;
        margin-bottom: 4px !important;
      }

      /* Compact sector description */
      .sector-carousel-container .sector-content p {
        font-size: 12px !important;
        line-height: 1.4 !important;
        margin-bottom: 4px !important;
      }

      /* Compact technical specification rows */
      .sector-carousel-container .sector-content .space-y-5 > * + * {
        margin-top: 8px !important;
      }
      .sector-carousel-container .sector-content .space-y-2\.5 {
        padding-top: 4px !important;
      }
      .sector-carousel-container .sector-content .space-y-2\.5 > * + * {
        margin-top: 2px !important;
      }
      .sector-carousel-container .sector-content .flex.justify-between.py-1\.5 {
        padding-top: 2px !important;
        padding-bottom: 2px !important;
        font-size: 11px !important;
      }

      /* Compact Verified Turnarounds footer in sector card */
      .sector-carousel-container .sector-content .mt-6.pt-4 {
        margin-top: 8px !important;
        padding-top: 6px !important;
        font-size: 10px !important;
      }

      /* Sector Image: Controlled aspect ratio & reduced mobile height */
      .sector-carousel-container .sector-content img {
        height: 165px !important;
        aspect-ratio: 16 / 10 !important;
        object-fit: cover !important;
        border-radius: 12px !important;
      }

      /* In-Image Tag Overlay */
      .sector-carousel-container .sector-content .absolute.bottom-3.left-3 {
        bottom: 6px !important;
        left: 6px !important;
        padding: 3px 8px !important;
        font-size: 10px !important;
        border-radius: 6px !important;
      }

      /* 3 stats below sector image */
      .sector-carousel-container .sector-content .grid.grid-cols-3 {
        gap: 6px !important;
      }
      .sector-carousel-container .sector-content .grid.grid-cols-3 .glass-apple {
        padding: 6px 4px !important;
        border-radius: 10px !important;
      }
      .sector-carousel-container .sector-content .grid.grid-cols-3 .font-mono {
        font-size: 9px !important;
      }
      .sector-carousel-container .sector-content .grid.grid-cols-3 .font-display {
        font-size: 13px !important;
        line-height: 1.1 !important;
      }

      /* =======================================================
         4. COMPACT ABOUT SECTION (PILLARS CONTAINER)
         ======================================================= */
      #about {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
      }
      #about > .max-w-7xl {
        padding-left: 0.85rem !important;
        padding-right: 0.85rem !important;
      }
      #about .max-w-3xl.mb-14 {
        margin-bottom: 0.75rem !important;
      }
      #about h2 {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.25rem !important;
      }
      #about p.text-base {
        font-size: 11.5px !important;
        line-height: 1.35 !important;
        margin-bottom: 0.4rem !important;
      }
      #about .grid-cols-1.md\:grid-cols-3 {
        gap: 8px !important;
        margin-bottom: 0.65rem !important;
      }
      #about .glass-apple-card.p-8 {
        padding: 0.75rem 0.85rem !important;
        border-radius: 14px !important;
      }
      #about .w-12.h-12 {
        width: 2rem !important;
        height: 2rem !important;
        margin-bottom: 0.4rem !important;
        border-radius: 8px !important;
      }
      #about .w-12.h-12 .material-symbols-outlined {
        font-size: 1.15rem !important;
      }
      #about .font-mono.text-xs.block.mb-1 {
        font-size: 9px !important;
        margin-bottom: 2px !important;
      }
      #about h3.text-xl {
        font-size: 0.98rem !important;
        margin-bottom: 0.25rem !important;
        line-height: 1.2 !important;
      }
      #about p.text-\[14px\] {
        font-size: 11px !important;
        line-height: 1.35 !important;
      }
      #about .mt-6.pt-4 {
        margin-top: 0.4rem !important;
        padding-top: 0.35rem !important;
        font-size: 9.5px !important;
      }
      #about .glass-apple-card.flex-col.lg\:flex-row {
        padding: 0.75rem 0.85rem !important;
        border-radius: 14px !important;
        gap: 0.5rem !important;
      }
      #about .glass-apple-card.flex-col.lg\:flex-row .text-xl {
        font-size: 12.5px !important;
        line-height: 1.2 !important;
      }
      #about .glass-apple-card.flex-col.lg\:flex-row p.text-sm {
        font-size: 11px !important;
        line-height: 1.35 !important;
      }
      #about .glass-apple-card.flex-col.lg\:flex-row .text-3xl {
        font-size: 1.35rem !important;
      }

      /* =======================================================
         5. COMPACT WORKFORCE SECTION
         ======================================================= */
      #workforce .relative.w-full.rounded-3xl img {
        height: 180px !important;
        border-radius: 1rem !important;
      }
      #workforce .relative.w-full.rounded-3xl {
        border-radius: 1.25rem !important;
        margin-bottom: 1rem !important;
        padding: 4px !important;
      }
      #workforce .absolute.bottom-6 {
        bottom: 8px !important;
        left: 8px !important;
        right: 8px !important;
        padding: 8px 10px !important;
        border-radius: 12px !important;
      }
      /* Circled Discipline Cards in Workforce: Smaller & Clean */
      #workforce .grid-cols-2.sm\:grid-cols-3 {
        gap: 6px !important;
        margin-bottom: 0.75rem !important;
      }
      #workforce .grid-cols-2.sm\:grid-cols-3 .glass-apple-card {
        padding: 8px 10px !important;
        border-radius: 12px !important;
      }
      #workforce .grid-cols-2.sm\:grid-cols-3 .font-mono {
        font-size: 8.5px !important;
        letter-spacing: 0.04em !important;
        margin-bottom: 1px !important;
        line-height: 1.1 !important;
      }
      #workforce .grid-cols-2.sm\:grid-cols-3 .text-3xl {
        font-size: 1.25rem !important;
        line-height: 1.1 !important;
      }
      #workforce .grid-cols-2.sm\:grid-cols-3 .text-sm {
        font-size: 11px !important;
        margin-top: 2px !important;
        line-height: 1.2 !important;
      }
      #workforce .grid-cols-2.sm\:grid-cols-3 .text-xs {
        font-size: 9.5px !important;
        line-height: 1.25 !important;
        margin-top: 1px !important;
      }
      #workforce .glass-apple.p-8.rounded-3xl {
        padding: 1rem !important;
        border-radius: 1.25rem !important;
      }
      #workforce .glass-apple.p-8.rounded-3xl .grid-cols-1.md\:grid-cols-3 {
        gap: 8px !important;
      }
      #workforce .glass-apple.p-8.rounded-3xl .p-5 {
        padding: 10px 12px !important;
        border-radius: 12px !important;
      }
      #workforce .mt-6.p-5 {
        margin-top: 0.75rem !important;
        padding: 10px 12px !important;
      }

      /* =======================================================
         6. COMPACT QUALITY ASSURANCE SECTION
         ======================================================= */
      #quality .lg\:col-span-6.space-y-6 {
        margin-bottom: 1rem !important;
      }
      #quality .lg\:col-span-6.space-y-6 > * + * {
        margin-top: 0.75rem !important;
      }
      #quality .grid-cols-2.gap-4 {
        gap: 8px !important;
      }
      #quality .grid-cols-2.gap-4 .glass-apple {
        padding: 10px 12px !important;
        border-radius: 12px !important;
      }
      #quality .glass-apple.p-2\.5 img {
        height: 180px !important;
        border-radius: 1rem !important;
      }
      #quality .glass-apple.p-2\.5 {
        border-radius: 1.25rem !important;
        padding: 4px !important;
      }
      #quality .p-4.flex.items-center.justify-between {
        padding: 8px 10px !important;
        font-size: 10px !important;
      }

      /* =======================================================
         7. COMPACT PROJECTS & TIMELINE SECTION
         ======================================================= */
      #projects {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
      }
      #projects > .max-w-7xl {
        padding-left: 0.85rem !important;
        padding-right: 0.85rem !important;
      }
      #projects .flex-col.md\:flex-row.mb-10 {
        margin-bottom: 0.65rem !important;
      }
      #projects h2 {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.25rem !important;
      }
      #projects p.text-sm {
        font-size: 11.5px !important;
        line-height: 1.35 !important;
        margin-bottom: 0.4rem !important;
      }
      #projects .relative.w-full.rounded-3xl img {
        height: 135px !important;
        border-radius: 10px !important;
      }
      #projects .relative.w-full.rounded-3xl {
        border-radius: 14px !important;
        margin-bottom: 0.65rem !important;
        padding: 3px !important;
      }
      #projects .absolute.bottom-5 {
        bottom: 6px !important;
        left: 6px !important;
        right: 6px !important;
        padding: 5px 8px !important;
        border-radius: 8px !important;
        gap: 6px !important;
      }
      #projects .absolute.bottom-5 .w-10.h-10 {
        width: 24px !important;
        height: 24px !important;
        border-radius: 6px !important;
      }
      #projects .absolute.bottom-5 .w-10.h-10 .material-symbols-outlined {
        font-size: 13px !important;
      }
      #projects .absolute.bottom-5 .font-mono {
        font-size: 8.5px !important;
      }
      #projects .absolute.bottom-5 .text-sm {
        font-size: 10.5px !important;
        line-height: 1.15 !important;
      }
      #projects #timelineFilters {
        margin-bottom: 0.85rem !important;
        gap: 5px !important;
        padding: 3px !important;
      }
      #projects .tl-filter {
        padding: 4px 9px !important;
        font-size: 10px !important;
        border-radius: 8px !important;
      }
      #projects #timelineContainer > * + * {
        margin-top: 12px !important;
      }
      #projects .tl-row {
        padding: 12px 14px !important;
        border-radius: 14px !important;
        gap: 6px !important;
      }
      #projects .tl-row .flex.items-start {
        gap: 10px !important;
      }
      #projects .tl-row h3 {
        font-size: 13px !important;
        line-height: 1.3 !important;
      }
      #projects .tl-row p {
        font-size: 11.5px !important;
        line-height: 1.35 !important;
        margin-top: 2px !important;
      }
      #projects .tl-row .text-right {
        text-align: left !important;
        margin-top: 6px !important;
        padding-top: 6px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
        min-width: unset !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;
      }
      #projects .tl-row .text-right .text-sm {
        font-size: 11px !important;
      }
      #projects .tl-row .text-right .font-mono {
        font-size: 9.5px !important;
      }

      /* =======================================================
         8. VALUED CUSTOMERS & PARTNERS SECTION (COMPACT & CLEAN)
         ======================================================= */
      #clients {
        padding-top: 26px !important;
        padding-bottom: 26px !important;
      }
      #clients > .max-w-7xl {
        padding-left: 0.85rem !important;
        padding-right: 0.85rem !important;
      }
      #clients .text-center.max-w-2xl.mb-14 {
        margin-bottom: 0.85rem !important;
      }
      #clients h2 {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.25rem !important;
      }
      #clients p.text-sm {
        font-size: 11.5px !important;
        line-height: 1.35 !important;
      }
      #clients .grid.grid-cols-1.sm\:grid-cols-2.lg\:grid-cols-5 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
      }
      #clients .grid.grid-cols-1.sm\:grid-cols-2.lg\:grid-cols-5 > div:last-child {
        grid-column: span 2 !important;
      }
      #clients .glass-apple.p-7 {
        padding: 12px 10px !important;
        border-radius: 14px !important;
      }
      #clients .w-14.h-14 {
        width: 36px !important;
        height: 36px !important;
        margin-bottom: 6px !important;
        border-radius: 10px !important;
      }
      #clients .w-14.h-14 .material-symbols-outlined {
        font-size: 20px !important;
      }
      #clients h3.text-base {
        font-size: 12.5px !important;
        line-height: 1.25 !important;
      }
      #clients p.text-xs {
        font-size: 10.5px !important;
        line-height: 1.25 !important;
      }
      #clients .mt-6.pt-4 {
        margin-top: 6px !important;
        padding-top: 5px !important;
        font-size: 9px !important;
      }

      /* =======================================================
         9. COMPACT COMPLIANCE & CONTACT SECTIONS
         ======================================================= */
      #compliance .grid-cols-1.md\:grid-cols-3 {
        gap: 10px !important;
      }
      #compliance .glass-apple.p-7 {
        padding: 1rem !important;
        border-radius: 1.25rem !important;
      }
      #compliance .glass-apple.p-7 .mb-6 {
        margin-bottom: 0.75rem !important;
      }
      #compliance .glass-apple.p-7 .mt-6.pt-4 {
        margin-top: 0.75rem !important;
        padding-top: 0.5rem !important;
      }
      #compliance .text-2xl.font-mono {
        font-size: 1.25rem !important;
      }

      #contact .lg\:col-span-12 {
        gap: 1.25rem !important;
      }
      #contact .space-y-5 > * + * {
        margin-top: 0.75rem !important;
      }
      #contact .glass-apple.p-8 {
        padding: 1.15rem 1rem !important;
        border-radius: 1.25rem !important;
      }
      #contact .glass-apple.p-8 .mb-6 {
        margin-bottom: 0.75rem !important;
      }
      #contact input, #contact select, #contact textarea {
        font-size: 13px !important;
      }

      footer {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
      }
    }

    /* Tablet & Desktop Behavior (min-width: 768px) */
    @media (min-width: 768px) {
      .sector-carousel-container {
        display: block;
      }
    }