: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;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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

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

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

.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;
  background: var(--charcoal);
  color: #f8eee3;
  font-size: 13px;
}

.topbar-grid {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.topbar-grid span { margin-right: auto; color: var(--sand); }

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

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

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

.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);
  box-shadow: -30px 0 70px rgba(8,0,0,.36);
  transform: translateX(104%);
  transition: transform .42s cubic-bezier(.22, .72, .18, 1);
  color: #fff;
  will-change: transform;
}

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

.site-header.menu-open .nav-links a {
  border-bottom: 0;
}

.nav-links a,
.drawer-parent {
  position: relative;
  display: block;
  padding: 12px 0 12px 18px;
  color: #fff;
  font-size: 24px;
  line-height: 1.24;
  font-weight: 700;
  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;
  flex: 0 0 auto;
  border: 1px solid rgba(208,49,42,.42);
  border-radius: 4px;
  background: #fff;
  color: var(--fire);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

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

.header-social .social-icon-fill,
.header-social .social-icon-dot {
  fill: currentColor;
  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);
}

.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 800;
  border: 1px solid transparent;
}

.nav-cta, .btn.primary {
  background: var(--fire);
  color: #fff;
}

.btn.primary:hover, .nav-cta:hover { background: var(--fire-dark); }

.btn.ghost {
  color: #fff;
  border-color: rgba(195,184,152,.68);
  background: rgba(8,0,0,.16);
}

.btn.dark {
  background: var(--charcoal);
  color: #fff;
}

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

.menu-toggle > span:not(.menu-grid):not(.menu-label) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.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);
}

.hero {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-media, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media { object-fit: cover; opacity: .58; }

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8,0,0,.48) 0%, rgba(8,0,0,.26) 46%, rgba(8,0,0,.08) 100%),
    linear-gradient(0deg, rgba(8,0,0,.18), rgba(8,0,0,0) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 78px 0;
}

.hero-content.container {
  width: min(1540px, calc(100% - 170px));
}

.eyebrow, .kicker {
  margin: 0 0 14px;
  color: var(--fire);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.eyebrow {
  transition: opacity 0.8s ease-in-out;
}

.hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(40px, 4.1vw, 54px);
  line-height: 1.16;
  font-weight: 900;
  text-transform: uppercase;
}

.brochure-tab {
  position: fixed;
  z-index: 70;
  right: 0;
  top: 42%;
  min-height: 203px;
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--fire);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 16px 32px rgba(8,0,0,.22);
}

.brochure-tab span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

.brochure-tab small {
  position: relative;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  font-family: Arial, sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

.brochure-tab small::before {
  content: "\21B3";
  display: block;
  transform: translate(-1px, -1px);
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: #efe5da;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  position: absolute;
  z-index: 3;
  right: 40px;
  bottom: 0;
  width: min(640px, calc(100% - 80px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--fire);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 26px;
  border-right: 1px solid rgba(255,255,255,.28);
}

.hero-panel div:last-child { border-right: 0; }
.hero-panel strong { display: block; font-size: 32px; line-height: 1; }
.hero-panel span { display: block; margin-top: 8px; font-size: 13px; font-weight: 700; }

.section { padding: 78px 0; }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.split.reverse { grid-template-columns: 1.05fr .95fr; }

.section-copy h2, .section-title h2, .advantage-head h2, .cta-band h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.1;
  font-weight: 900;
  color: var(--charcoal);
}

.styled-heading {
  position: relative;
  isolation: isolate;
  text-align: left;
  max-width: 760px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 4px;
}

.styled-heading::before {
  content: attr(data-watermark);
  position: absolute;
  left: 0;
  top: 50px;
  z-index: -1;
  transform: none;
  color: rgba(8,0,0,.052);
  font-size: clamp(46px, 5.8vw, 84px);
  font-weight: 900;
  line-height: .7;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.styled-heading .kicker {
  position: relative;
  display: inline-flex;
  justify-content: center;
  margin: 0 0 36px;
  color: var(--charcoal);
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
}

.styled-heading .kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 86px;
  height: 16px;
  transform: none;
  background-image: url("data:image/svg+xml,%3Csvg width='86' height='16' viewBox='0 0 86 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 10 C12 10 15 4 23 4 C31 4 32 12 40 12 C49 12 50 4 58 4 C66 4 68 11 75 11 C79 11 82 8 84 6' fill='none' stroke='%23D0312A' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.styled-heading h2 {
  max-width: 760px;
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
  text-align: left;
}

.styled-heading h2 span {
  color: var(--fire);
}

.section-copy p, .section-title p, .advantage-head p, .cta-band p {
  color: var(--muted);
  margin: 18px 0 0;
}

.section-title.styled-heading {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 18px;
  overflow: hidden;
  text-align: center;
}

.section-title.styled-heading::before {
  left: 50%;
  top: 56px;
  transform: translateX(-50%);
  font-size: clamp(52px, 7.4vw, 104px);
}

.section-title.styled-heading .kicker {
  text-align: center;
}

.section-title.styled-heading .kicker::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-title.styled-heading h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(30px, 3.45vw, 44px);
  text-align: center;
}

.section-copy.styled-heading p:not(.kicker) {
  text-align: left;
}

.main-image, .image-card img {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
}

#about.about-story {
  padding-top: 28px;
  padding-bottom: 0;
  background:
    linear-gradient(180deg, #fff 0%, #fbf8f0 100%);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(300px, .58fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

.main-image.about-flame {
  object-fit: contain;
  width: 100%;
  height: 100%;
  min-height: clamp(560px, 54vw, 760px);
  aspect-ratio: auto;
  padding: clamp(12px, 2.5vw, 28px);
  background:
    radial-gradient(circle at 50% 48%, rgba(208,49,42,.12), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(247,243,232,.78));
  border: 0;
  box-shadow: none;
  transform: scale(1.12);
  transform-origin: center;
}

.about-emblem {
  overflow: hidden;
}

.image-stack {
  position: relative;
  isolation: isolate;
}

.image-stack::before {
  content: "";
  position: absolute;
  inset: 18px 8px 42px 22px;
  z-index: -1;
  border: 1px solid rgba(208,49,42,.12);
  background:
    linear-gradient(135deg, rgba(208,49,42,.06), rgba(195,184,152,.13)),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,0));
}

.image-stack::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 30px;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--fire), rgba(195,184,152,.5));
  opacity: .7;
}

.about-copy-card {
  max-width: none;
  align-self: center;
  padding: 0;
  background: transparent;
  border-left: 0;
  box-shadow: none;
}

.about-copy-card::before {
  content: none;
}

.about-copy-card .kicker {
  display: none;
}

.about-copy-block {
  position: relative;
  z-index: 1;
}

.about-copy-block + .about-copy-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(195,184,152,.42);
}

.about-copy-block h2 {
  margin: 0 0 10px;
  color: var(--charcoal);
  font-size: clamp(18px, 1.75vw, 25px);
  line-height: 1.22;
  font-weight: 900;
  text-transform: uppercase;
}

.about-copy-block h2 span {
  color: var(--fire);
}

.about-copy-block h3,
.iso-row h3 {
  margin: 0 0 12px;
  color: var(--charcoal);
  font-size: clamp(14px, 1.12vw, 16px);
  font-weight: 900;
  line-height: 1.45;
}

.about-copy-block p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.72;
}

.about-copy-block p + p {
  margin-top: 10px;
}

.iso-row {
  margin-top: 22px;
}

.about-tagline-band {
  position: relative;
  min-height: clamp(170px, 20vw, 250px);
  margin-top: clamp(28px, 4vw, 46px);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  isolation: isolate;
}

.about-tagline-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.about-tagline-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8,0,0,.28), rgba(208,49,42,.12), rgba(8,0,0,.24)),
    rgba(161,123,84,.16);
}

.about-tagline-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  font-size: clamp(18px, 2.15vw, 27px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

.about-tagline-text strong {
  padding: 2px 8px;
  background: var(--fire);
  color: #fff;
  display: inline-block;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.about-tagline-text span {
  color: #fff;
  display: inline-block;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.about-tagline-text i {
  width: 2px;
  height: 1.1em;
  background: rgba(255,255,255,.62);
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Hover effects for tagline text */
.about-tagline-text:hover {
  transform: scale(1.05) translate3d(0, 0, 0);
  filter: drop-shadow(0 8px 18px rgba(8, 0, 0, 0.22)) drop-shadow(0 2px 6px rgba(208, 49, 42, 0.28));
}

.about-tagline-text:hover strong {
  background-color: var(--fire-dark);
  transform: scale(1.02) translate3d(0, 0, 0);
}

.about-tagline-text:hover span {
  color: var(--sand);
  transform: scale(1.02) translate3d(0, 0, 0);
}

.about-tagline-text:hover i {
  background-color: var(--fire);
  transform: scaleY(1.2) translate3d(0, 0, 0);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.feature-grid article {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(8,0,0,.06);
}

.feature-grid span {
  color: var(--amber);
  font-weight: 900;
}

.feature-grid h3, .advantage-grid h3, .value-card h3 {
  margin: 8px 0 8px;
  line-height: 1.2;
}

.feature-grid p, .advantage-grid p, .value-card p { margin: 0; color: var(--muted); }

.india { background: #fff; }

.image-card {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,0));
  font-size: 19px;
  font-weight: 900;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.cert-grid div {
  min-height: 188px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 18px 14px;
  text-align: center;
  border: 1px solid var(--line);
  background: #fbf8f0;
  font-size: 12px;
  font-weight: 800;
  transition: background 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.cert-grid div:hover {
  background: var(--fire);
  border-color: var(--fire);
  color: #fff;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 32px rgba(208, 49, 42, 0.24);
}

.cert-grid img {
  width: 118px;
  height: 115px;
  object-fit: contain;
  transition: filter 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.cert-grid img,
.advantage-grid img,
.industry-card span img {
  filter: grayscale(1) contrast(1.08);
}

.cert-grid div:hover img {
  filter: brightness(0) invert(1);
}

.section-title {
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
  text-align: center;
}

.section-title.narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cards-four, .advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card, .industry-card, .advantage-grid article {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(8,0,0,.07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.value-card:hover,
.industry-card:hover,
.advantage-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(208,49,42,.26);
  box-shadow: 0 18px 34px rgba(8,0,0,.11);
}

.value-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  isolation: isolate;
  outline: 0;
  cursor: pointer;
}

.value-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  aspect-ratio: 1.25;
  object-fit: cover;
  transition: transform .42s ease, filter .42s ease;
}

.value-card::before {
  content: "↗";
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--fire);
  border: 1px solid rgba(255,255,255,.34);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(8,0,0,.18);
  transition: transform .28s ease, background .28s ease;
}

.value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8,0,0,.08), rgba(8,0,0,.58));
  opacity: .72;
  transition: opacity .32s ease;
}

.value-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 20px;
  color: #fff;
  background: rgba(208,49,42,.96);
  border-left: 4px solid var(--sand);
  box-shadow: 0 18px 36px rgba(8,0,0,.22);
  transform: translateY(calc(100% - 66px));
  transition: transform .34s ease, background .34s ease;
}

.value-card h3 {
  color: #fff;
}

.value-card p,
.value-card ul.values-list {
  color: rgba(255,255,255,.9);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .24s ease, transform .24s ease;
  font-size: 14px;
  line-height: 1.45;
}

.value-card ul.values-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  text-align: left;
}

.value-card ul.values-list li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 14px;
}

.value-card ul.values-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sand);
}

.value-card:hover img,
.value-card:focus img,
.value-card:focus-visible img,
.value-card.is-open img {
  transform: scale(1.045);
  filter: saturate(.95) contrast(1.04);
}

.value-card:hover::before,
.value-card:focus::before,
.value-card:focus-visible::before,
.value-card.is-open::before {
  transform: translate(-4px, 4px);
  background: var(--charcoal);
}

.value-card:hover::after,
.value-card:focus::after,
.value-card:focus-visible::after,
.value-card.is-open::after {
  opacity: .34;
}

.value-card:hover div,
.value-card:focus div,
.value-card:focus-visible div,
.value-card.is-open div {
  transform: translateY(0);
}

.value-card:hover p,
.value-card:focus p,
.value-card:focus-visible p,
.value-card.is-open p,
.value-card:hover ul.values-list,
.value-card:focus ul.values-list,
.value-card:focus-visible ul.values-list,
.value-card.is-open ul.values-list {
  opacity: 1;
  transform: translateY(0);
}

.industries {
  background:
    radial-gradient(circle at top left, rgba(208,49,42,.24), rgba(208,49,42,0) 28%),
    linear-gradient(180deg, #140303 0%, #080000 52%, #140303 100%);
  color: #fff;
  overflow: hidden;
}

.industry-head {
  display: block;
  margin-bottom: 22px;
}

.industries .section-title {
  margin: 0;
  text-align: center;
}

.industries .section-title.narrow {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.industries .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 18px;
  color: #fff;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(195,184,152,.24);
  border-left: 4px solid var(--fire);
  letter-spacing: .18em;
}

.industries .section-title h2 {
  color: #fff;
  max-width: 920px;
  font-size: clamp(36px, 4.7vw, 62px);
  line-height: .94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.industries .section-title::after {
  content: "";
  display: block;
  width: min(220px, 26vw);
  height: 3px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--fire), rgba(195,184,152,.28));
}

.industries .section-title p { color: #c8bdb2; }

.industries .styled-heading::before {
  color: rgba(255,255,255,.1);
}

.industries .styled-heading .kicker {
  margin-bottom: 34px;
  color: #fff;
  background: transparent;
  border: 0;
  border-left: 0;
  padding: 0;
  letter-spacing: 0;
}

.industries .styled-heading .kicker::after {
  background-image: url("data:image/svg+xml,%3Csvg width='86' height='16' viewBox='0 0 86 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 10 C12 10 15 4 23 4 C31 4 32 12 40 12 C49 12 50 4 58 4 C66 4 68 11 75 11 C79 11 82 8 84 6' fill='none' stroke='%23D0312A' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.industries .styled-heading h2 {
  max-width: 980px;
  font-size: clamp(30px, 3.45vw, 44px);
  line-height: 1.12;
  text-transform: none;
  text-align: center;
}

.industries .styled-heading h2 span {
  color: var(--fire);
}

.industries .styled-heading::after {
  display: none;
}

.industry-stage {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  margin-inline: calc((100vw - min(1120px, calc(100vw - 40px))) / -2);
}

.industry-stage::before,
.industry-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: min(120px, 10vw);
  pointer-events: none;
}

.industry-stage::before {
  left: 0;
  background: linear-gradient(90deg, rgba(8,0,0,.98) 0%, rgba(8,0,0,.76) 46%, rgba(8,0,0,0) 100%);
}

.industry-stage::after {
  right: 0;
  background: linear-gradient(270deg, rgba(8,0,0,.98) 0%, rgba(8,0,0,.76) 46%, rgba(8,0,0,0) 100%);
}

.industry-viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.industry-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(195,184,152,.36);
  background: rgba(8,0,0,.72);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  transition: background .22s ease, border-color .22s ease, transform .22s ease, opacity .22s ease;
}

.industry-prev {
  left: max(10px, calc((100vw - min(1120px, calc(100vw - 40px))) / 2 - 28px));
  transform: translateY(-50%);
}

.industry-next {
  right: max(10px, calc((100vw - min(1120px, calc(100vw - 40px))) / 2 - 28px));
  transform: translateY(-50%);
}

.industry-control:hover,
.industry-control:focus-visible {
  background: var(--fire);
  border-color: var(--fire);
  transform: translateY(calc(-50% - 2px));
}

.industry-rail {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 10px calc((100vw - min(1120px, calc(100vw - 40px))) / 2) 44px;
  transform: translate3d(var(--industry-offset, 0px), 0, 0);
  will-change: transform;
}

.industry-card {
  flex: 0 0 clamp(350px, 31vw, 484px);
  position: relative;
  min-height: 0;
  overflow: visible;
  border: 0;
  color: #fff;
  isolation: isolate;
  box-shadow: none;
  transition: transform .32s ease;
}

.industry-card > img {
  width: 100%;
  position: relative;
  aspect-ratio: 1.38;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(8,0,0,.26);
  transition: transform .42s ease, filter .42s ease, box-shadow .42s ease;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0 0 74px;
  background:
    linear-gradient(180deg, rgba(8,0,0,.06), rgba(8,0,0,.14) 44%, rgba(8,0,0,.4) 100%),
    linear-gradient(135deg, rgba(208,49,42,.12), rgba(8,0,0,0) 50%);
  pointer-events: none;
}

.industry-card::before {
  content: none;
}

.industry-card:hover > img,
.industry-card:focus-visible > img {
  transform: scale(1.015);
  filter: saturate(1.04);
  box-shadow: 0 22px 48px rgba(8,0,0,.34);
}

.industry-card:hover,
.industry-card:focus-visible {
  transform: translateY(-3px);
}

.industry-card .industry-meta {
  position: absolute;
  z-index: 2;
  left: 36px;
  right: 36px;
  bottom: -34px;
  display: block;
  min-height: 120px;
  padding: 22px 22px 18px 106px;
  font-size: 16px;
  font-weight: 900;
  text-transform: none;
  line-height: 1.18;
  color: var(--charcoal);
  background: #fff;
  box-shadow: 0 20px 40px rgba(8,0,0,.18);
  transform: translateY(0);
  transition: background .3s ease, color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.industry-card .industry-meta strong {
  display: block;
  font-size: clamp(18px, 1.85vw, 22px);
  font-weight: 900;
  line-height: 1.12;
  max-width: 100%;
  padding-top: 6px;
}

.industry-card:hover .industry-meta,
.industry-card:focus-visible .industry-meta {
  color: #fff;
  background: rgba(24,24,24,.98);
  box-shadow: 0 24px 48px rgba(8,0,0,.26);
  transform: translateY(-2px);
}

.industry-card .industry-icon {
  position: absolute;
  left: 24px;
  top: -16px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--fire);
  border: 0;
  border-radius: 0;
  box-shadow: 0 18px 32px rgba(208,49,42,.22);
}

.industry-card .industry-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  background: transparent;
  filter: none;
  mix-blend-mode: normal;
}

.industry-card .industry-arrow {
  position: absolute;
  left: 38px;
  bottom: 14px;
  display: inline-block;
  color: var(--fire);
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
  transition: transform .28s ease, color .28s ease;
}

.industry-card:hover .industry-arrow,
.industry-card:focus-visible .industry-arrow {
  color: #fff;
  transform: translateX(6px);
}

.advantage-head {
  display: block;
  text-align: center;
  margin-bottom: 34px;
}

.advantage-grid article {
  padding: 24px;
}

.advantage-grid img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 18px;
  padding: 9px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.advantage-grid .advantage-card {
  position: relative;
  min-height: 340px;
  padding: 0;
  border: 0;
  background: var(--charcoal);
  box-shadow: 0 18px 38px rgba(8,0,0,.16);
}

.advantage-grid .advantage-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  margin: 0;
  padding: 0;
  object-fit: cover;
  background: transparent;
  border: 0;
  filter: none;
  transform: scale(1.01);
  image-rendering: auto;
}

.advantage-grid .advantage-card::after {
  background: linear-gradient(180deg, rgba(8,0,0,.05), rgba(8,0,0,.46));
  opacity: .52;
}

.advantage-grid .advantage-card div {
  margin: 0;
}

.stats {
  padding: 58px 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(208,49,42,.16), rgba(208,49,42,0) 34%),
    radial-gradient(circle at 84% 18%, rgba(195,184,152,.16), transparent 26%),
    linear-gradient(180deg, #150302 0%, var(--charcoal) 58%, #150302 100%);
  overflow: hidden;
}

.stats-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
}

.stats-heading {
  max-width: 440px;
  color: #fff;
}

.stats-heading::before {
  color: rgba(255,255,255,.08);
}

.stats-heading .kicker,
.stats-heading h2,
.stats-heading h2 span {
  color: #fff;
}

.stats-heading h2 span {
  color: var(--sand);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px 18px;
}

.stats-grid .stat-card:nth-child(1) {
  grid-column: 2 / span 2;
}

.stats-grid .stat-card:nth-child(2) {
  grid-column: 4 / span 2;
}

.stats-grid .stat-card:nth-child(3) {
  grid-column: 1 / span 2;
}

.stats-grid .stat-card:nth-child(4) {
  grid-column: 3 / span 2;
}

.stats-grid .stat-card:nth-child(5) {
  grid-column: 5 / span 2;
}

.stat-card {
  position: relative;
  min-height: 154px;
  padding: 18px 18px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border: 1px solid rgba(195,184,152,.24);
  background: rgba(255,255,255,.035);
  box-shadow: 0 22px 44px rgba(0,0,0,.22);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(208,49,42,.18);
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(208,49,42,.46);
  background: rgba(255,255,255,.055);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: sepia(1) saturate(1.25) hue-rotate(335deg) brightness(1.08);
  opacity: .92;
}

.stat-card strong {
  display: block;
  color: #fff;
  font-size: clamp(27px, 2.7vw, 38px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.stat-card span {
  display: block;
  max-width: 220px;
  margin-top: 8px;
  color: rgba(255,255,255,.74);
  font-size: clamp(14px, 1.16vw, 17px);
  font-weight: 700;
  line-height: 1.28;
}

.footprint {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.footprint-wrap {
  position: relative;
  display: block;
}

.footprint-side-word {
  position: absolute;
  top: 58px;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(8, 0, 0, 0.07);
  text-stroke: 1.5px rgba(8, 0, 0, 0.07);
  font-size: clamp(44px, 5.8vw, 88px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.footprint-side-word-left {
  left: max(-118px, -8vw);
}

.footprint-side-word-right {
  right: max(-168px, -11vw);
}

.footprint-title {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto 22px;
  text-align: center;
}

.footprint-title::before {
  left: 50%;
  transform: translateX(-50%);
}

.footprint-title .kicker {
  justify-content: center;
}

.footprint-tabs input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.footprint-tabs {
  position: relative;
  z-index: 1;
}

.footprint-tab-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 26px;
}

.footprint-tab-list label {
  min-width: 126px;
  padding: 12px 22px;
  border: 1px solid rgba(208, 49, 42, 0.32);
  background: #fff;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

#footprint-liz:checked ~ .footprint-tab-list label[for="footprint-liz"],
#footprint-ltt:checked ~ .footprint-tab-list label[for="footprint-ltt"] {
  border-color: var(--fire);
  background: var(--fire);
  color: #fff;
  box-shadow: 0 14px 30px rgba(208, 49, 42, 0.16);
}

.footprint-panels {
  max-width: 1180px;
  margin: 0 auto;
}

.map-panel {
  display: none;
}

#footprint-liz:checked ~ .footprint-panels .map-panel-liz,
#footprint-ltt:checked ~ .footprint-panels .map-panel-ltt {
  display: block;
}

.map-card {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.interactive-map-card {
  position: relative;
  padding: clamp(16px, 2.4vw, 30px);
  background: var(--fire);
  border-color: var(--fire);
}

.map-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.1);
}

.interactive-map-card img {
  height: auto;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
}

.map-panel-ltt img {
  filter: none;
  mix-blend-mode: normal;
}

.map-container {
  position: relative;
  width: 100%;
}

.map-viewport {
  overflow: hidden;
  cursor: default;
  touch-action: pan-y pinch-zoom;
}

.map-viewport.is-zoomed {
  cursor: grab;
}

.map-viewport.is-zoomed.is-dragging {
  cursor: grabbing;
}

.map-zoom-controls {
  position: absolute;
  top: clamp(18px, 2vw, 26px);
  left: clamp(18px, 2vw, 26px);
  z-index: 10;
  display: grid;
  gap: 5px;
}

.map-zoom-button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(8,0,0,.16);
  border-radius: 50%;
  background: #fff;
  color: var(--charcoal);
  font: 500 22px/1 Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(0,0,0,.14);
}

.map-zoom-button:hover,
.map-zoom-button:focus-visible {
  background: #fff;
  color: var(--fire);
  outline: 1px solid var(--charcoal);
  outline-offset: 1px;
}

.map-zoom-button:disabled {
  opacity: 0.45;
  cursor: default;
}

.map-zoom-reset {
  font-size: 20px;
  font-weight: 700;
}

.map-container img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
}

.map-container {
  overflow: visible;
}

.map-panel-liz .map-container {
  aspect-ratio: 1000 / 600;
}

.map-panel-ltt .map-container {
  aspect-ratio: 1000 / 600;
}

.map-pin {
  position: absolute;
  width: 9px;
  height: 9px;
  padding: 0;
  border: 2px solid var(--charcoal);
  border-radius: 50%;
  background: var(--sand);
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow:
    0 0 0 0 rgba(208,49,42,.48),
    0 8px 18px rgba(8,0,0,.22);
  animation: mapPulse 2.1s infinite;
  z-index: 2;
}

.map-pin:hover,
.map-pin:focus-visible {
  width: 16px;
  height: 16px;
  background: var(--fire-dark);
  animation: none;
  outline: none;
  z-index: 5;
}

.map-pin::after {
  content: attr(data-location);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  min-width: max-content;
  max-width: 210px;
  padding: 7px 11px 7px 12px;
  background: var(--charcoal);
  border-left: 3px solid var(--fire);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 12px 28px rgba(8, 0, 0, 0.22);
}

.map-pin:hover::after,
.map-pin:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@keyframes mapPulse {
  0% {
    box-shadow:
        0 0 0 0 rgba(208,49,42,.48),
        0 8px 18px rgba(8,0,0,.22);
  }
  70% {
    box-shadow:
        0 0 0 11px rgba(208,49,42,0),
        0 8px 18px rgba(8,0,0,.22);
  }
  100% {
    box-shadow:
        0 0 0 0 rgba(208,49,42,0),
        0 8px 18px rgba(8,0,0,.22);
  }
}

.cta-band {
  padding: 58px 0;
  background: var(--charcoal);
  color: #fff;
}

.cta-band h2, .cta-band p { color: #fff; }
.cta-band .kicker { color: var(--sand); }

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

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

.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;
  justify-content: space-between;
}

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

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

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

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

.site-footer a {
  display: block;
  margin: 4px 0;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

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

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

.footer-qr strong {
  color: var(--charcoal);
  font-size: 12px;
  line-height: 1.2;
}

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

.footer-bottom {
  padding: 10px 0;
  background: var(--fire);
  color: #fff;
  font-size: 12px;
  text-align: center;
}

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

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

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

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

.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;
}

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

.group-ltt-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

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

.group-ltt-web {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

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

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

@media (max-width: 1040px) {
  .menu-toggle { margin-left: auto; }

  .footprint-side-word {
    display: none;
  }

  .industry-head {
    margin-bottom: 22px;
  }

  .industry-stage::before,
  .industry-stage::after {
    width: 72px;
  }

  .industry-control {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .industry-prev {
    left: 10px;
  }

  .industry-next {
    right: 10px;
  }

  .industry-card {
    flex-basis: clamp(320px, 64vw, 430px);
  }

  .split, .split.reverse, .advantage-head {
    grid-template-columns: 1fr;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-emblem {
    max-width: 520px;
    margin: 0 auto;
  }

  .main-image.about-flame {
    min-height: 420px;
  }

  .stats-layout {
    grid-template-columns: 1fr;
  }

  .stats-heading {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .stats-heading::before,
  .stats-heading .kicker::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .cards-four, .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }


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

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

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

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

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

  .navbar.container,
  .hero-content.container {
    width: min(100% - 28px, 1180px);
  }

  .topbar-grid {
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 9px 0;
  }

  .topbar-grid span { width: 100%; margin: 0; text-align: center; }

  .brand img {
    width: 154px;
    height: 70px;
  }
  .navbar {
    min-height: 74px;
    gap: 12px;
  }

  .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(--fire),
      18px 0 var(--fire),
      0 9px var(--fire),
      9px 9px var(--fire),
      18px 9px var(--fire),
      0 18px var(--fire),
      9px 18px var(--fire),
      18px 18px var(--fire);
  }

  .nav-links {
    width: min(320px, calc(100vw - 30px));
    padding: 72px 34px 38px;
  }

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

  .drawer-submenu {
    padding-left: 22px;
  }

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

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

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding: 58px 0;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.14;
  }

  .eyebrow {
    font-size: 13px;
  }

  .brochure-tab {
    top: 44%;
    width: 46px;
    min-height: 156px;
    font-size: 15px;
  }

  .brochure-tab small {
    width: 22px;
    height: 22px;
    font-size: 22px;
  }

  .section { padding: 54px 0; }

  .feature-grid, .cert-grid, .cards-four, .advantage-grid, .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid .stat-card {
    grid-column: auto;
  }

  .cert-grid img {
    width: 104px;
    height: 102px;
  }

  .footer-main {
    padding: 22px 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .about-copy-card {
    padding: 0;
  }

  .main-image.about-flame {
    min-height: 360px;
  }

  .about-tagline-band {
    min-height: 220px;
    margin-top: 38px;
  }

  .about-tagline-text {
    width: min(100% - 32px, 520px);
    gap: 8px;
    text-align: center;
  }

  .industry-rail {
    grid-template-columns: none;
  }

  .industry-card {
    flex-basis: min(84vw, 360px);
  }

  .industries .section-title h2 {
    font-size: clamp(30px, 10vw, 46px);
  }

  .industry-stage::before,
  .industry-stage::after {
    width: 44px;
  }

  .industry-control {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .industry-card .industry-meta {
    left: 24px;
    right: 24px;
    bottom: -24px;
    min-height: 98px;
    padding: 18px 18px 14px 78px;
    font-size: 14px;
  }

  .industry-card .industry-meta strong {
    font-size: 16px;
    padding-top: 0;
  }

  .industry-card .industry-icon {
    left: 16px;
    top: -12px;
    width: 40px;
    height: 40px;
  }

  .industry-card .industry-icon img {
    padding: 7px;
  }

  .industry-card .industry-arrow {
    left: 22px;
    bottom: 12px;
    font-size: 24px;
  }

  .cta-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-card img {
    height: 300px;
  }

  .interactive-map-card img {
    height: auto;
  }

  .map-pin {
    width: 8px;
    height: 8px;
  }

  .map-pin:hover,
  .map-pin:focus-visible {
    width: 13px;
    height: 13px;
  }

  .map-pin::after {
    max-width: 160px;
    font-size: 10px;
    white-space: normal;
  }
}

/* -------------------------------------------------------------
   Lizmontagens India - Performance & Visual Enhancements (2026)
   ------------------------------------------------------------- */

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

/* Hardware-accelerated base elements */
.value-card, .industry-card, .advantage-card, .stat-card, .iso-row img {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
  will-change: transform, opacity, box-shadow;
}

/* 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; }

/* Slide reveal varieties */
.reveal-slide-left {
  transform: translateX(-40px) translate3d(0, 0, 0);
}
.reveal-slide-right {
  transform: translateX(40px) translate3d(0, 0, 0);
}
.reveal-slide-left.reveal-visible,
.reveal-slide-right.reveal-visible {
  transform: translateX(0) translate3d(0, 0, 0);
}

/* 3. Modern Interactive 3D Parallax Tilt (Desktop only) */
@media (hover: hover) {
  .value-card, .industry-card, .advantage-card, .stat-card {
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform: perspective(1000px) rotateX(calc(var(--tilt-x, 0) * 1deg)) rotateY(calc(var(--tilt-y, 0) * 1deg)) translate3d(0, 0, 0);
  }
  
  .value-card:hover, .industry-card:hover, .advantage-card:hover, .stat-card:hover {
    box-shadow: 0 22px 48px rgba(8, 0, 0, 0.16);
    z-index: 5;
  }
}

/* 4. 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;
}

/* 6. 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;
}

/* 5. 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;
  }
}

/* Brochure Modal Styles */
.brochure-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background: rgba(8, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.brochure-modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.brochure-modal-content {
  position: relative;
  width: min(540px, calc(100% - 30px));
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 24px 48px rgba(8, 0, 0, 0.28);
  padding: 40px;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brochure-modal-overlay.is-active .brochure-modal-content {
  transform: scale(1);
}

.brochure-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.brochure-modal-close:hover {
  color: var(--fire);
}

.brochure-modal-content h2 {
  font-size: clamp(22px, 2vw, 26px);
  color: var(--ink);
  font-weight: 800;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brochure-modal-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 28px 0;
}

.brochure-modal-content form {
  display: grid;
  gap: 20px;
}

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

@media (max-width: 480px) {
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c5752' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 15px;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select:invalid {
  color: var(--muted);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--fire);
  box-shadow: 0 0 0 3px rgba(208, 49, 42, 0.08);
}

.form-group.has-error input {
  border-color: var(--fire) !important;
  box-shadow: 0 0 0 3px rgba(208, 49, 42, 0.12) !important;
}

.helper-text {
  font-size: 11px;
  line-height: 1.4;
  color: var(--muted);
  margin-top: 2px;
}

.error-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--fire);
  margin-top: 2px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
  accent-color: var(--fire);
}

.checkbox-group label {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
}

.checkbox-group label a {
  color: var(--fire);
  text-decoration: underline;
}

.checkbox-group label a:hover {
  color: var(--fire-dark);
}

.brochure-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  border: none;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 10px;
}

.brochure-submit-btn:hover {
  background: var(--fire);
}

/* Success notification style */
.brochure-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1100;
  background: #1e3a2f;
  border-left: 4px solid #10b981;
  color: #fff;
  padding: 16px 24px;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.brochure-toast.is-active {
  transform: translateY(0);
  opacity: 1;
}

/* -------------------------------------------------------------
   Lizmontagens India - Mobile & Tablet Device Compatibility Fixes
   ------------------------------------------------------------- */
@media (max-width: 760px) {
  /* 1. Prevent awkward line breaks in main hero header on mobile */
  .hero h1 br {
    display: none !important;
  }
  
  /* 2. Hide vertical tag separators on mobile wrap to keep it clean */
  .about-tagline-text i {
    display: none !important;
  }
}
