:root {
  --ink: #080000;
  --muted: #5c5752;
  --paper: #f8f5ec;
  --surface: #ffffff;
  --line: #ded8c9;
  --fire: #d0312a;
  --fire-dark: #a8221d;
  --sand: #c3b898;
  --charcoal: #080000;
  --moss: #4f5248;
  --amber: #a17b54;
  --concrete: #9b9a98;
  --cream: #ede7d8;
  --shadow: 0 16px 34px rgba(8, 0, 0, .11);
  --header-height: 92px;
  --chrome-fire: var(--fire);
  --chrome-sand: var(--sand);
  --chrome-charcoal: var(--charcoal);
  --chrome-muted: #5c5752;
  --chrome-header-height: var(--header-height);
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}

.site-header,
.site-header *,
.site-footer,
.site-footer * {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.chrome-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header .container,
.site-footer .container {
  width: min(1120px, calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 90;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(8,0,0,.06);
}

.site-header::after {
  content: "";
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 70;
  pointer-events: none;
  background: rgba(8, 0, 0, .46);
  opacity: 0;
  transition: opacity .32s ease;
}

.site-header.menu-open::after {
  opacity: 1;
}

.topbar {
  display: none;
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-header .chrome-container,
.site-header .navbar.container {
  width: min(1540px, calc(100% - 110px));
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 163px;
  height: 71px;
  object-fit: contain;
  display: block;
}

.nav-links {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  z-index: 95;
  width: min(430px, calc(100vw - 36px));
  min-height: calc(100vh - var(--header-height));
  display: block;
  padding: 54px 48px 44px;
  margin: 0;
  overflow-y: auto;
  background:
    linear-gradient(135deg, rgba(208, 49, 42, .16), transparent 34%),
    linear-gradient(180deg, #3b1110 0%, #220706 45%, var(--charcoal) 100%);
  border-left: 1px solid rgba(195,184,152,.38);
  color: #fff;
  transform: translateX(104%);
  transition: transform .42s cubic-bezier(.22, .72, .18, 1);
  box-shadow: -30px 0 70px rgba(8,0,0,.36);
  will-change: transform;
}

.site-header.menu-open .nav-links {
  transform: translateX(0);
}

.nav-links a,
.drawer-parent {
  position: relative;
  display: block;
  padding: 12px 0 12px 18px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.24;
  text-decoration: none;
  text-transform: none;
  letter-spacing: .02em;
  border-left: 3px solid transparent;
  transition: color .22s ease, border-color .22s ease, transform .22s ease;
}

.nav-links a:hover,
.drawer-parent:hover {
  color: var(--sand);
  border-left-color: var(--fire);
  transform: translateX(4px);
}

.drawer-group {
  margin: 0;
  padding: 0;
  border-left: 0;
  background: rgba(255, 255, 255, .035);
}

.drawer-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}

.drawer-group .drawer-parent {
  padding: 12px 48px 12px 18px;
  border-left: 3px solid transparent;
}

.drawer-group .drawer-parent:hover,
.drawer-group .drawer-parent:focus-visible {
  border-left-color: var(--fire);
}

.drawer-parent span {
  position: absolute;
  right: 20px;
  top: 50%;
  display: block;
  width: 10px;
  height: 10px;
  overflow: hidden;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  color: transparent;
  font-size: 0;
  line-height: 0;
  text-indent: -999px;
  transform: translateY(-65%) rotate(45deg);
  transition: transform .24s ease, border-color .24s ease;
}

.drawer-parent:hover span,
.drawer-group.is-expanded .drawer-parent span {
  border-color: var(--sand);
}

.drawer-group.is-expanded .drawer-parent span {
  transform: translateY(-35%) rotate(-135deg);
}

.drawer-submenu {
  display: grid;
  gap: 6px;
  padding: 8px 0 8px 22px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .34s ease, opacity .24s ease, padding-top .24s ease, padding-bottom .24s ease;
}

.drawer-group.is-expanded .drawer-submenu {
  max-height: 360px;
  opacity: 1;
}



.drawer-submenu a {
  padding: 5px 0 5px 16px;
  color: #f5eee5;
  font-size: 18px;
  font-weight: 500;
  opacity: .9;
}

.menu-close {
  position: absolute;
  top: 18px;
  right: 26px;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.menu-close:hover {
  color: var(--sand);
  background: rgba(208,49,42,.22);
  transform: rotate(90deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-social {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(208,49,42,.42);
  border-radius: 5px;
  background: #fff;
  color: var(--fire);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.header-social svg {
  width: 19px;
  height: 19px;
  overflow: visible;
  fill: none;
  stroke: none;
}

.header-social:hover,
.header-social:focus-visible {
  border-color: var(--fire);
  background: #fff;
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(8,0,0,.12);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--fire);
  font-size: 21px;
  font-weight: 800;
  cursor: pointer;
}

.menu-grid {
  width: 27px;
  height: 27px;
  display: inline-grid;
  grid-template-columns: repeat(3, 6px);
  grid-template-rows: repeat(3, 6px);
  gap: 4px;
}

.menu-grid::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--fire);
  box-shadow:
    10px 0 var(--fire),
    20px 0 var(--fire),
    0 10px var(--fire),
    10px 10px var(--fire),
    20px 10px var(--fire),
    0 20px var(--fire),
    10px 20px var(--fire),
    20px 20px var(--fire);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--charcoal);
  padding: 34px 0 0;
  border-top: 1px solid rgba(8,0,0,.08);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(150px, 13vw, 210px);
  height: clamp(180px, 16vw, 250px);
  transform: translate(-50%, -54%);
  background: url("assets/brand-flame.png") center / contain no-repeat;
  opacity: .032;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(150px, .86fr) minmax(210px, 1.05fr) minmax(150px, .86fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
  justify-content: space-between;
  padding-bottom: 28px;
}

.footer-brand {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
  max-width: 210px;
  margin-left: 9px;
}

.footer-links {
  margin-left: 35px;
}

.footer-industries {
  margin-left: 40px;
}

.footer-contact {
  margin-left: 42px;
}

.footer-logo {
  display: block;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.footer-liz-logo {
  width: min(163px, 100%);
  height: 71px;
  object-fit: contain;
}

.footer-ltt-logo {
  width: min(190px, 100%);
  margin-left: -13px;
}

.footer-brand span {
  color: #2f2b29;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer h3 {
  margin: 0 0 10px;
  color: var(--charcoal);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.site-footer a {
  display: block;
  margin: 6px 0;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--fire);
}

.qr-title {
  display: block;
  margin: 16px 0 7px;
  color: var(--charcoal);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.qr {
  width: 74px;
  height: auto;
  object-fit: contain;
  margin-top: 0;
  background: #fff;
  padding: 4px;
  border: 1px solid rgba(8,0,0,.12);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 13px 0;
  border-top: 1px solid rgba(8, 0, 0, .14);
  color: #2f2b29;
  font-size: 14px;
  text-align: center;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  color: var(--charcoal);
}

.footer-bottom span {
  margin: 0 8px;
  color: #6e6660;
}

@media (max-width: 1040px) {
  .chrome-container,
  .site-header .container,
  .site-footer .container {
    width: min(100% - 42px, 1180px);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 46px;
  }

  .footer-brand,
  .footer-links,
  .footer-industries,
  .footer-contact {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  .chrome-container,
  .site-header .container,
  .site-footer .container {
    width: min(100% - 28px, 1180px);
  }

  .navbar {
    min-height: 74px;
    gap: 12px;
  }

  .brand img {
    width: 154px;
    height: 70px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-socials {
    gap: 6px;
  }

  .header-social {
    width: 30px;
    height: 30px;
  }

  .header-social svg {
    width: 16px;
    height: 16px;
  }

  .menu-toggle {
    font-size: 16px;
    gap: 7px;
  }

  .menu-grid {
    width: 23px;
    height: 23px;
    grid-template-columns: repeat(3, 5px);
    grid-template-rows: repeat(3, 5px);
    gap: 4px;
  }

  .menu-grid::before {
    width: 5px;
    height: 5px;
    box-shadow:
      9px 0 var(--chrome-fire),
      18px 0 var(--chrome-fire),
      0 9px var(--chrome-fire),
      9px 9px var(--chrome-fire),
      18px 9px var(--chrome-fire),
      0 18px var(--chrome-fire),
      9px 18px var(--chrome-fire),
      18px 18px var(--chrome-fire);
  }

  .nav-links {
    width: min(410px, 90vw);
    padding: 88px 30px 36px;
    gap: 18px;
  }

  .nav-links a,
  .drawer-parent {
    font-size: 20px;
  }

  .drawer-submenu a {
    font-size: 17px;
  }

  .menu-close {
    top: 22px;
    right: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px 0;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-industries,
  .footer-contact {
    justify-items: center;
  }
}

/* Shared harmonized footer used by every internal page. */
.site-footer {
  position: relative;
  overflow: visible;
  padding: 0;
  background: #fff;
  color: #080000;
  border-top: 1px solid rgba(8,0,0,.08);
}

.site-footer::before { display: none; }

.footer-main {
  padding: 25px 0 22px;
  background: #fff;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(190px, 1.1fr) minmax(135px, .72fr) minmax(220px, 1fr) minmax(150px, .75fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding: 0;
  text-align: left;
}

.site-footer .footer-brand {
  display: flex;
  align-items: flex-start;
  max-width: 235px;
  margin: 0;
}

.site-footer .footer-logo {
  display: block;
  max-width: none;
  padding: 0;
  background: transparent;
  border: 0;
}

.site-footer .footer-liz-logo {
  width: min(163px, 100%);
  height: 90px;
  margin: -3px 0 0 34px;
  object-fit: contain;
  object-position: left top;
}

.site-footer h3 {
  margin: 0 0 8px;
  color: #080000;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.site-footer a {
  display: block;
  margin: 4px 0;
  color: #080000;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
}

.site-footer a:hover { color: #d0312a; }

.site-footer .footer-qr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: 8px;
}

.site-footer .footer-qr strong {
  color: #080000;
  font-size: 12px;
  line-height: 1.2;
}

.site-footer .footer-qr img {
  width: 48px;
  height: 48px;
  padding: 2px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(8,0,0,.12);
}

.site-footer .footer-bottom {
  margin: 0;
  padding: 10px 0;
  background: #d0312a;
  border: 0;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.site-footer .footer-bottom a {
  display: inline;
  margin: 0;
  color: #fff;
  font-size: inherit;
}

.site-footer .footer-bottom a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer .footer-bottom span {
  margin: 0 8px;
  color: rgba(255,255,255,.72);
}

.site-footer .group-ltt-strip {
  height: 77px;
  background: #000;
  color: #fff;
}

.site-footer .group-ltt-inner {
  width: min(1260px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(230px, auto) auto 1fr;
  align-items: center;
  gap: 26px;
}

.site-footer .group-ltt-artwork {
  width: 230px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.site-footer .group-ltt-social,
.site-footer .group-ltt-web {
  display: flex;
  align-items: center;
}

.site-footer .group-ltt-social { gap: 14px; }

.site-footer .group-ltt-social a,
.site-footer .group-ltt-web a {
  margin: 0;
  color: #fff;
}

.site-footer .group-ltt-social img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.site-footer .group-ltt-web {
  justify-content: flex-end;
  gap: 30px;
}

.site-footer .group-ltt-web > a:first-child {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer .group-ltt-web img {
  width: 38px;
  height: 45px;
  object-fit: contain;
}

@media (max-width: 1040px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 46px;
  }

  .site-footer .group-ltt-inner {
    grid-template-columns: minmax(210px, auto) auto 1fr;
    gap: 20px;
  }

  .site-footer .group-ltt-artwork {
    width: 210px;
    height: 72px;
  }
}

@media (max-width: 760px) {
  .site-footer .footer-main { padding: 22px 0; }

  .site-footer .footer-grid {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 26px;
  }

  .site-footer .footer-brand { grid-column: 1 / -1; }

  .site-footer .footer-liz-logo {
    width: 150px;
    height: 82px;
    margin-left: 0;
  }

  .site-footer .footer-bottom {
    padding: 10px 14px;
    line-height: 1.55;
  }

  .site-footer .footer-bottom span { margin: 0 4px; }

  .site-footer .group-ltt-inner {
    width: min(100% - 28px, 1260px);
    grid-template-columns: minmax(145px, 1fr) auto;
    grid-template-rows: 1fr 1fr;
    gap: 0 16px;
  }

  .site-footer .group-ltt-artwork {
    grid-row: 1 / 3;
    width: min(150px, 100%);
    height: 70px;
  }

  .site-footer .group-ltt-social {
    align-self: end;
    justify-self: end;
    padding-bottom: 4px;
  }

  .site-footer .group-ltt-social img {
    width: 22px;
    height: 22px;
  }

  .site-footer .group-ltt-web {
    align-self: start;
    justify-self: end;
    gap: 14px;
    padding-top: 4px;
  }

  .site-footer .group-ltt-web > a:first-child { display: none; }

  .site-footer .group-ltt-web img {
    width: 32px;
    height: 38px;
  }
}

/* -------------------------------------------------------------
   Lizmontagens India - Shared Styles (2026)
   ------------------------------------------------------------- */

/* 1. Scroll Performance Optimizations (GPU Acceleration & Render Boundaries) */
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 400px;
}

/* Hardware-accelerated base elements for subpages */
.industry-intro-section, .services-accordion-section, .legal-card, .advantages-grid {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
  will-change: transform, opacity;
}

/* 2. Custom Scroll-Reveal Animations */
.reveal-element {
  opacity: 0;
  transform: translateY(30px) translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-element.reveal-visible {
  opacity: 1;
  transform: translateY(0) translate3d(0, 0, 0);
}

/* Delayed transitions for grid stagger effects */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* 3. Client-Side Copy-Protection & Obfuscation Deterrents */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
}

/* 5. Browser Compatibility Fix: Prevent text-justify stretching on titles */
.section-title[style*="justify"] h1,
.section-title[style*="justify"] h2,
.section-title[style*="justify"] h3,
.section-title[style*="justify"] h4,
.section-title[style*="justify"] h5,
.section-title[style*="justify"] h6 {
  text-align: left;
}

/* 4. Custom Neon Red Cursor Glow Aura (Desktop only) */
@media (hover: hover) {
  .cursor-glow-aura {
    position: fixed;
    top: 0;
    left: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(208, 49, 42, 0.16) 0%, rgba(208, 49, 42, 0.04) 40%, rgba(208, 49, 42, 0) 70%);
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    transform: translate3d(-100px, -100px, 0);
    transition: opacity 0.3s ease;
    will-change: transform;
  }
}

/* -------------------------------------------------------------
   Lizmontagens India - Mobile & Tablet Device Compatibility Fixes
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
  /* 1. Prevent top-banner content cut-off on mobile/tablets */
  .top-banner {
    min-height: 250px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin-top: 0 !important;
  }

  /* Force top-banner image to behave as a cover background */
  .top-banner img,
  .top-banner > img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  /* Linear-gradient overlay layer positioning safety */
  .top-banner::after {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
  }

  /* Center the relative container elements above the cover image */
  .top-banner .container {
    position: relative !important;
    z-index: 2 !important;
    left: auto !important;
    transform: none !important;
    width: min(100% - 32px, 1200px) !important;
    margin: 0 auto !important;
    display: block !important;
  }

  /* Stop title container from overflowing horizontally or vertically */
  .top-banner .page-title {
    position: relative !important;
    z-index: 3 !important;
    width: min(100%, 540px) !important;
    max-width: 100% !important;
    min-height: auto !important;
    margin: 0 !important;
  }
  
  /* Fix executive board containers and accordions padding/margins */
  .body-content .container {
    width: min(100% - 32px, 1200px) !important;
  }
}

@media (max-width: 576px) {
  /* Mobile specific enhancements */
  .top-banner {
    min-height: 200px !important;
  }
  
  .top-banner .page-title {
    padding: 18px 20px !important;
  }
  
  .top-banner .page-title h1,
  .top-banner .page-title h1 strong {
    font-size: 26px !important;
  }
  
  .top-banner .page-title li,
  .top-banner .page-title li strong {
    font-size: 13px !important;
  }
}
