
    @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700&family=Barlow:wght@600&family=IBM+Plex+Mono:wght@400;500&family=Inter:wght@400;500&display=swap');

    :root {
      /* Theme colors for Hari Om Engineers */
      --color-bg: #F5F4F0;
      /* Warm off-white background */
      --color-surface: #ECEAE4;
      /* Subtle warm grey surface */
      --color-dark: #1C1C1C;
      /* Dark section background */
      --color-mid: #3A3A3A;
      /* Primary body text color */
      --color-muted: #7A7A7A;
      /* Muted secondary text color */
      --color-accent: #C0281A;
      /* Primary accent: Company Red */
      --color-accent2: #1C3A7A;
      /* Secondary accent: Company Navy Blue */
      --color-border: #D8D5CE;
      /* Thin border color */
      --color-white: #FFFFFF;
      /* Clean white */
      --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.08);
      --max-width: 1200px;
      --nav-height: 72px;
      --font-display: 'Barlow Condensed', sans-serif;
      --font-heading: 'Barlow Condensed', sans-serif;
      --font-body: 'Inter', sans-serif;
      --font-mono: 'IBM Plex Mono', monospace;
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: var(--nav-height);
      overflow-x: clip;
      width: 100%;
    }

    body {
      font-family: var(--font-body);
      font-weight: 400;
      line-height: 1.7;
      color: var(--color-mid);
      background: var(--color-bg);
      -webkit-font-smoothing: antialiased;
      overflow-x: clip;
      width: 100%;
    }

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

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }

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

    .eyebrow {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--color-accent);
      display: block;
      margin-bottom: 16px;
    }

    .section-heading {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: clamp(32px, 5vw, 44px);
      color: var(--color-dark);
      line-height: 1.1;
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .btn {
      display: inline-block;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 32px;
      border-radius: 0;
      /* Sharp corners */
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .btn--primary {
      background: var(--color-accent);
      color: var(--color-white);
      border: 1px solid var(--color-accent);
    }

    .btn--primary:hover {
      background: #9d2014;
      border-color: #9d2014;
    }

    .btn--secondary {
      background: transparent;
      color: var(--color-dark);
      border: 1px solid var(--color-dark);
    }

    .btn--secondary:hover {
      background: var(--color-dark);
      color: var(--color-white);
    }

    .btn--secondary-light {
      background: transparent;
      color: var(--color-white);
      border: 1px solid var(--color-white);
    }

    .btn--secondary-light:hover {
      background: var(--color-white);
      color: var(--color-dark);
    }

    .btn--full {
      width: 100%;
      text-align: center;
    }

    /* Scroll Reveal Animation */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-stagger>.reveal:nth-child(1) {
      transition-delay: 0s;
    }

    .reveal-stagger>.reveal:nth-child(2) {
      transition-delay: 0.1s;
    }

    .reveal-stagger>.reveal:nth-child(3) {
      transition-delay: 0.2s;
    }

    .reveal-stagger>.reveal:nth-child(4) {
      transition-delay: 0.3s;
    }

    .reveal-stagger>.reveal:nth-child(5) {
      transition-delay: 0.4s;
    }

    .reveal-stagger>.reveal:nth-child(6) {
      transition-delay: 0.5s;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .bearing-drawing {
        animation: none !important;
      }

      *,
      *::before,
      *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
      }
    }

    /* NAVBAR */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1010;
      height: var(--nav-height);
      background: var(--color-bg);
      border-bottom: 1px solid var(--color-border);
    }

    .navbar__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }

    .navbar__logo {
      display: flex;
      align-items: center;
    }

    .navbar__logo img {
      max-height: 58px; /* Increased from 48px to 58px */
      width: auto;
      display: block;
      object-fit: contain;
    }

    .navbar__toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      padding: 8px;
      z-index: 1012;
    }

    .navbar__toggle span {
      display: block;
      width: 24px;
      height: 1px;
      background: var(--color-dark);
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .navbar__toggle.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .navbar__toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .navbar__toggle.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .navbar__nav {
      display: flex;
      align-items: center;
    }

    .nav-list {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav-link {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-dark);
      padding: 8px 14px;
      transition: color 0.2s ease;
    }

    .nav-link.active {
      color: var(--color-accent);
    }

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

    /* Mobile overlay */
    .mobile-overlay {
      position: fixed;
      inset: 0;
      z-index: 1001;
      background: var(--color-bg);
      padding: calc(var(--nav-height) + 32px) 32px 32px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
      display: flex;
      flex-direction: column;
    }

    .mobile-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    html.nav-open,
    html.nav-open body {
      overflow: hidden !important;
      height: 100% !important;
    }

    .mobile-overlay .nav-list {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      width: 100%;
    }

    .mobile-overlay .nav-link {
      font-size: 18px;
      padding: 16px 0;
      border-bottom: 1px solid var(--color-border);
      width: 100%;
      display: block;
    }

    @media (max-width: 768px) {
      .navbar__nav {
        display: none;
      }

      .navbar__toggle {
        display: flex;
      }
    }

    /* HERO (PRESERVED AS DESIGNED) */
    .hero {
      --color-accent: #B5451B;
      /* Original Hero Accent */
      --color-muted: #9A9A9A;
      /* Original Hero Muted */
      --font-heading: 'Barlow', sans-serif;
      /* Original Hero Font */
      min-height: 100vh;
      background: var(--color-dark);
      display: flex;
      flex-direction: column;
    }

    .hero__main {
      flex: 1;
      display: grid;
      grid-template-columns: 55% 45%;
      align-items: center;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: calc(var(--nav-height) + 48px) 24px 48px;
      width: 100%;
      gap: 40px;
    }

    .hero__eyebrow {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: 24px;
    }

    .hero__title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(48px, 7vw, 88px);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--color-white);
      line-height: 0.95;
      margin-bottom: 24px;
    }

    .hero__sub {
      font-size: 16px;
      color: var(--color-muted);
      max-width: 440px;
      margin-bottom: 40px;
      line-height: 1.7;
    }

    .hero__tagline {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: clamp(15px, 2.2vw, 18px);
      color: rgba(255, 255, 255, 0.88);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: -8px;
      margin-bottom: 20px;
      max-width: 520px;
      line-height: 1.4;
    }

    .hero__actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero .btn--primary {
      background: var(--color-accent);
      border-color: var(--color-accent);
      color: var(--color-white);
    }

    .hero .btn--primary:hover {
      background: #9a3a16;
      border-color: #9a3a16;
    }

    .hero .btn--secondary-light {
      background: transparent;
      color: var(--color-white);
      border: 1px solid var(--color-white);
    }

    .hero .btn--secondary-light:hover {
      background: var(--color-white);
      color: var(--color-dark);
    }

    .hero__visual {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .bearing-drawing {
      width: 100%;
      max-width: 420px;
      animation: bearingRotate 60s linear infinite;
    }

    @keyframes bearingRotate {
      to {
        transform: rotate(360deg);
      }
    }

    .hero__bar {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding: 24px;
    }

    .hero__stats {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }

    .hero__stat {
      font-family: var(--font-mono);
      font-size: 13px;
      letter-spacing: 0.06em;
      color: var(--color-white);
      padding: 0 40px;
      text-transform: uppercase;
    }

    .hero__stat-divider {
      width: 1px;
      height: 20px;
      background: rgba(255, 255, 255, 0.2);
    }

    @media (max-width: 1024px) {
      .hero__main {
        position: relative;
        display: block;
        /* Disable grid layout */
        padding-top: calc(var(--nav-height) + 64px);
        padding-bottom: 64px;
        text-align: center;
      }

      .hero__content {
        position: relative;
        z-index: 2;
        /* Content on top */
      }

      .hero__actions {
        justify-content: center;
      }

      .hero__sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
      }

      .hero__tagline {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
      }

      .hero__visual {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -45%) !important;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        /* Behind text content */
        opacity: 0 !important;
        pointer-events: none;
        /* Make clicks pass through */
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
      }

      .hero__visual.visible {
        opacity: 1 !important;
        /* Watermark opacity */
        transform: translate(-50%, -50%) !important;
      }

      .bearing-drawing {
        max-width: 380px;
        width: 80%;
      }
    }

    @media (max-width: 768px) {
      .hero__stats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
      }

      .hero__stat {
        padding: 0;
        font-size: 12px;
      }

      .hero__stat-divider {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .bearing-drawing {
        max-width: 260px;
      }
    }

    /* SECTIONS */
    .section {
      padding: 100px 0;
    }

    @media (max-width: 768px) {
      .section {
        padding: 80px 0;
      }
    }

    /* ABOUT COMPANY */
    .about {
      background: var(--color-bg);
    }

    .about__grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 80px;
      align-items: center;
      margin-bottom: 96px;
    }

    @media (max-width: 1024px) {
      .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    .about__text p {
      margin-bottom: 24px;
      font-size: 16px;
      line-height: 1.7;
    }

    .about__tagline {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: clamp(16px, 2.5vw, 18px);
      color: var(--color-accent);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-top: -12px;
      margin-bottom: 24px;
      line-height: 1.4;
    }

    .about__text .btn {
      margin-top: 8px;
    }

    /* Fallback Image Wrapper */
    .fallback-img-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;
      background: #ECEAE4;
      border: 1px solid var(--color-border);
      border-radius: 2px;
      overflow: hidden;
    }

    .img-fallback-text {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px;
      font-family: var(--font-mono);
      color: var(--color-muted);
      font-size: 13px;
      text-transform: uppercase;
      z-index: 1;
      background: #ECEAE4;
    }

    .fallback-img-wrapper img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 2;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .fallback-img-wrapper img.loaded {
      opacity: 1;
    }

    /* Why Choose Us Section Redesign */
    .why-choose-us {
      display: grid;
      grid-template-columns: 1fr 2.5fr;
      gap: 64px;
      align-items: start;
    }

    .why-choose-us__info {
      position: sticky;
      top: calc(var(--nav-height) + 32px);
    }

    .why-choose-us__desc {
      font-size: 15px;
      line-height: 1.6;
      color: var(--color-muted);
      margin-top: 16px;
    }

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

    @media (max-width: 1024px) {
      .why-choose-us {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .why-choose-us__info {
        position: static;
      }
    }

    @media (max-width: 580px) {
      .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
    }

    .benefit-card {
      position: relative;
      background: var(--color-white);
      border: 1px solid var(--color-border);
      padding: 32px 28px;
      border-radius: 6px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      overflow: hidden;
      z-index: 1;
    }

    .benefit-card:hover {
      transform: translateY(-4px);
      border-color: var(--color-accent);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    }

    .benefit-icon {
      width: 40px;
      height: 40px;
      color: var(--color-accent);
      background: rgba(192, 40, 26, 0.04);
      padding: 8px;
      border-radius: 4px;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }

    .benefit-card:hover .benefit-icon {
      background: var(--color-accent);
      color: var(--color-white);
      transform: scale(1.05);
    }

    .benefit-num {
      position: absolute;
      right: 24px;
      top: 24px;
      font-family: var(--font-mono);
      font-size: 13px;
      color: var(--color-muted);
      opacity: 0.5;
      font-weight: 500;
      transition: color 0.3s ease, opacity 0.3s ease;
    }

    .benefit-card:hover .benefit-num {
      color: var(--color-accent);
      opacity: 0.8;
    }

    .benefit-title {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 15px;
      line-height: 1.4;
      color: var(--color-dark);
      margin: 0;
    }

    .benefit-desc {
      font-size: 13px;
      line-height: 1.65;
      color: var(--color-muted);
      margin: 0;
    }

    .benefit-desc strong {
      color: var(--color-mid);
      font-weight: 600;
    }

    /* TEAM SECTION */
    .team {
      background: var(--color-surface);
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    @media (max-width: 1024px) {
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 580px) {
      .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
    }

    .team-card {
      position: relative;
      background: var(--color-white);
      border: 1px solid var(--color-border);
      padding: 40px 28px;
      border-radius: 6px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      overflow: hidden;
    }

    .team-card:hover {
      transform: translateY(-4px);
      border-color: var(--color-accent);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    }

    .team-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(192, 40, 26, 0.08);
      color: var(--color-accent);
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      letter-spacing: 0.04em;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }

    .team-card:hover .team-avatar {
      background: var(--color-accent);
      color: var(--color-white);
      transform: scale(1.05);
    }

    .team-name {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 16px;
      line-height: 1.4;
      color: var(--color-dark);
      margin: 0;
    }

    .team-role {
      font-size: 11px;
      line-height: 1.5;
      color: var(--color-accent);
      margin: 0;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* PRODUCTS SECTION */
    .products {
      background: var(--color-surface);
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    @media (max-width: 1024px) {
      .products-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-top: 12px;
        /* Space for hover lift */
        padding-bottom: 24px;
        margin: 0;
        padding-left: 24px;
        padding-right: 24px;
      }

      .products-grid::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Webkit */
      }

      .product-card {
        flex: 0 0 320px;
        /* Fixed card size on tablet scrolling list */
        scroll-snap-align: start;
      }
    }

    @media (max-width: 580px) {
      .product-card {
        flex: 0 0 280px;
        /* Slightly smaller cards on mobile */
      }
    }

    .product-card {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: 6px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease;
      z-index: 1;
    }

    /* Top Accent Line Expansion Effect */
    .product-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--color-accent);
      transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 10;
    }

    .product-card:hover {
      transform: translateY(-8px);
      border-color: var(--color-accent);
      box-shadow: 0 16px 40px rgba(192, 40, 26, 0.06), 0 4px 12px rgba(0, 0, 0, 0.02);
    }

    .product-card:hover::before {
      width: 100%;
    }

    .product-card__img-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;
      /* Fixed 4:3 Aspect Ratio */
      background: #ECEAE4;
      overflow: hidden;
      border-bottom: 1px solid var(--color-border);
    }

    .product-card__fallback {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px;
      font-family: var(--font-mono);
      color: var(--color-muted);
      font-size: 13px;
      text-transform: uppercase;
      z-index: 1;
      background: #ECEAE4;
    }

    .product-card__img-wrapper img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 2;
      opacity: 0;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    }

    .product-card__img-wrapper img.loaded {
      opacity: 1;
    }

    .product-card:hover .product-card__img-wrapper img.loaded {
      transform: scale(1.06);
    }

    .product-card__content {
      padding: 32px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .product-card__title {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 22px;
      color: var(--color-dark);
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .product-card__desc {
      font-size: 14px;
      color: var(--color-mid);
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .product-card__specs {
      margin-top: auto;
      list-style: none;
      padding-left: 0;
    }

    .product-card__specs li {
      font-size: 13px;
      color: var(--color-muted);
      position: relative;
      padding-left: 20px;
      margin-bottom: 8px;
      line-height: 1.4;
    }

    .product-card__specs li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--color-accent);
      font-weight: 600;
    }

    /* COMPATIBILITY */
    .compatibility {
      background: var(--color-bg);
    }

    .compatibility-search-wrapper {
      max-width: 600px;
      margin: 0 auto 32px;
    }

    .compatibility-search-input {
      width: 100%;
      padding: 16px 20px;
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: 2px;
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--color-dark);
      outline: none;
      transition: border-color 0.2s ease;
    }

    .compatibility-search-input:focus {
      border-color: var(--color-accent2);
    }

    .compatibility-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin-bottom: 32px;
    }

    .compat-tab {
      padding: 12px 24px;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: transparent;
      color: var(--color-muted);
      border: 1px solid var(--color-border);
      border-radius: 2px;
      transition: all 0.2s ease;
    }

    .compat-tab:hover {
      color: var(--color-dark);
      border-color: var(--color-dark);
    }

    .compat-tab.active {
      background: var(--color-accent2);
      /* Navy blue primary active */
      color: var(--color-white);
      border-color: var(--color-accent2);
    }

    .compatibility-table-wrapper {
      border: 1px solid var(--color-border);
      border-radius: 2px;
      background: var(--color-white);
      overflow-x: auto;
    }

    .compatibility-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    .compatibility-table th {
      background: #ECEAE4;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-dark);
      padding: 18px 24px;
      border-bottom: 1px solid var(--color-border);
    }

    .compatibility-table td {
      padding: 18px 24px;
      font-size: 14px;
      color: var(--color-mid);
      border-bottom: 1px solid var(--color-border);
      vertical-align: top;
      line-height: 1.6;
    }

    .compatibility-table tr:last-child td {
      border-bottom: none;
    }

    .compatibility-table td:first-child {
      font-weight: 600;
      color: var(--color-dark);
      font-family: var(--font-body);
      text-transform: uppercase;
    }

    .compatibility-table td:last-child {
      font-family: var(--font-mono);
      font-size: 13px;
      color: #555555;
    }

    .compatibility-empty-state {
      display: none;
      padding: 64px 24px;
      text-align: center;
      font-family: var(--font-mono);
      color: var(--color-muted);
      background: var(--color-white);
    }

    mark.highlight {
      background: rgba(192, 40, 26, 0.15);
      /* Soft Red Accent Highlight */
      color: var(--color-accent);
      font-weight: 600;
      padding: 0 2px;
    }

    /* Redesigned Gallery Section */
    .gallery {
      background: var(--color-surface);
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
    }

    .gallery-filters {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .filter-btn {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-mid);
      padding: 10px 22px;
      border: 1px solid var(--color-border);
      border-radius: 30px;
      background: var(--color-white);
      transition: all 0.25s ease;
      cursor: pointer;
    }

    .filter-btn:hover {
      border-color: var(--color-accent);
      color: var(--color-accent);
    }

    .filter-btn.active {
      background: var(--color-accent);
      border-color: var(--color-accent);
      color: var(--color-white);
      box-shadow: 0 4px 12px rgba(192, 40, 26, 0.2);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      transition: opacity 0.3s ease;
    }

    @media (max-width: 1024px) {
      .gallery-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        /* Hide standard scrollbar in Firefox */
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 24px;
        margin: 0 -24px;
        padding-left: 24px;
        padding-right: 24px;
      }

      .gallery-grid::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar in Chrome/Safari/Webkit */
      }

      .gallery-item {
        flex: 0 0 380px;
        height: 380px; /* Set larger height (square aspect ratio) to prevent collapse */
        scroll-snap-align: start;
      }
    }

    @media (max-width: 580px) {
      .gallery-item {
        flex: 0 0 310px;
        height: 310px; /* Set larger height on mobile */
      }
    }

    .gallery-item {
      position: relative;
      aspect-ratio: 4 / 3;
      background: var(--color-surface);
      overflow: hidden;
      border: 1px solid var(--color-border);
      border-radius: 6px;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      border-color: var(--color-accent);
    }

    .gallery-item__fallback {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 16px;
      font-family: var(--font-mono);
      color: var(--color-muted);
      font-size: 12px;
      text-transform: uppercase;
      z-index: 1;
      background: #ECEAE4;
    }

    .gallery-item img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 2;
      opacity: 0;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    }

    .gallery-item img.loaded {
      opacity: 1;
    }

    .gallery-item__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(28, 28, 28, 0.9) 0%, rgba(28, 28, 28, 0.4) 60%, rgba(28, 28, 28, 0) 100%);
      z-index: 3;
      opacity: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
      transition: opacity 0.3s ease;
    }

    .gallery-item:hover .gallery-item__overlay {
      opacity: 1;
    }

    .gallery-item:hover img.loaded {
      transform: scale(1.08);
    }

    .gallery-item__info {
      transform: translateY(12px);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-item:hover .gallery-item__info {
      transform: translateY(0);
    }

    .gallery-item__tag {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 600;
      color: var(--color-white);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 6px;
      background: var(--color-accent);
      padding: 3px 8px;
      border-radius: 2px;
      display: inline-block;
    }

    .gallery-item__title {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 14px;
      color: var(--color-white);
      margin: 0;
    }

    /* Lightbox Modal */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(20, 20, 20, 0.95);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .lightbox.active {
      opacity: 1;
      visibility: visible;
    }

    .lightbox__content {
      position: relative;
      max-width: 90vw;
      max-height: 80vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .lightbox__img {
      max-width: 100%;
      max-height: 75vh;
      object-fit: contain;
      border-radius: 4px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transform: scale(0.95);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .lightbox.active .lightbox__img {
      transform: scale(1);
    }

    .lightbox__caption {
      color: var(--color-white);
      font-size: 14px;
      font-family: var(--font-body);
      text-align: center;
    }

    .lightbox__close {
      position: absolute;
      top: -48px;
      right: 0;
      color: var(--color-white);
      font-size: 32px;
      background: none;
      border: none;
      cursor: pointer;
      opacity: 0.7;
      transition: opacity 0.2s ease;
    }

    .lightbox__close:hover {
      opacity: 1;
    }

    .lightbox__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.1);
      color: var(--color-white);
      border: none;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.2s ease;
      z-index: 2010;
    }

    .lightbox__nav:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .lightbox__nav--prev {
      left: -64px;
    }

    .lightbox__nav--next {
      right: -64px;
    }

    @media (max-width: 768px) {
      .lightbox__nav {
        width: 40px;
        height: 40px;
      }

      .lightbox__nav--prev {
        left: -16px;
        background: rgba(0, 0, 0, 0.5);
      }

      .lightbox__nav--next {
        right: -16px;
        background: rgba(0, 0, 0, 0.5);
      }

      .lightbox__close {
        right: 12px;
        top: -40px;
      }
    }



    /* FOOTER */
    .footer {
      background: #141414;
      border-top: 1px solid #2A2A2A;
      padding: 64px 0 32px;
      color: #6B6B6B;
    }

    .footer__grid {
      display: grid;
      grid-template-columns: 1.5fr 2fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    @media (max-width: 1024px) {
      .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }

      .footer__social {
        grid-column: span 2;
      }
    }

    @media (max-width: 768px) {
      .footer {
        text-align: center;
        padding: 48px 0 32px;
      }

      .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
      }

      .footer__social {
        grid-column: span 1;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 24px;
        margin-top: 8px;
      }

      .footer__social p {
        margin: 0 auto 16px;
        max-width: 420px;
      }

      .footer__copy {
        text-align: center;
      }

      .footer__logo-img {
        margin-left: auto;
        margin-right: auto;
      }

      .footer__tagline {
        margin-left: auto;
        margin-right: auto;
      }

      .footer__columns {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer__col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 24px;
      }

      .footer__col:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }
    }

    .footer__brand {
      margin-bottom: 12px;
    }

    .footer__logo-img {
      height: 110px;
      width: auto;
      max-width: 100%;
      display: block;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.1);
      object-fit: cover;
    }

    .footer__tagline {
      font-size: 13px;
      color: #8A8A8A;
      max-width: 320px;
      line-height: 1.5;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      font-weight: 600;
    }

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

    .footer__col-title {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #9A9A9A;
      margin-bottom: 16px;
    }

    .footer__col a {
      display: block;
      font-size: 13px;
      color: #6B6B6B;
      margin-bottom: 10px;
      transition: color 0.2s ease;
    }

    .footer__col a:hover {
      color: var(--color-white);
    }

    .footer__address {
      font-size: 13px;
      line-height: 1.6;
    }

    .footer__social a {
      display: block;
      font-family: var(--font-mono);
      font-size: 12px;
      color: #6B6B6B;
      margin-bottom: 8px;
      transition: color 0.2s ease;
    }

    .footer__social a:hover {
      color: var(--color-white);
    }

    .footer__copy {
      font-size: 12px;
      color: #4A4A4A;
      padding-top: 32px;
      border-top: 1px solid #2A2A2A;
      margin-top: 32px;
      text-align: center;
    }


    .whatsapp-float{
  position:fixed;
  bottom:20px;
  right:25px;
  width:50px;
  height:50px;
  z-index:9999;
  border-radius:50%;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,.25);
}

.whatsapp-float svg{
  width:100%;
  height:100%;
  display:block;
}

  