/* =========================================================
   L. M. Plastics — Pro 3D brand redesign
   Palette from LMP lotus logo (blue · orange · crimson)
   ========================================================= */
:root {
  --ink: #070b16;
  --ink-2: #0e1528;
  --ink-3: #162038;
  --ink-soft: #1a2740;
  --steel: #3d4a63;
  --fog: #8b97b0;
  --line: rgba(255, 255, 255, 0.09);
  --line-dark: rgba(10, 16, 32, 0.1);
  --paper: #f3f5f9;
  --paper-2: #e8ecf4;
  --white: #fbfcfe;
  --blue: #1d3162;
  --blue-bright: #2a4a9a;
  --blue-soft: #4d6db8;
  --orange: #e8921a;
  --orange-soft: #f5b84a;
  --crimson: #b01e2e;
  --crimson-soft: #d43a4a;
  --magenta: #c2186a;
  --green: #4a9a3f;
  --gold: var(--orange);
  --gold-soft: var(--orange-soft);
  --teal: var(--blue);
  --teal-bright: var(--blue-bright);
  --teal-deep: #121f42;
  --rose: var(--crimson);

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Sora", system-ui, sans-serif;

  --max: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 0;
  --perspective: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 45% at 0% -5%, rgba(29, 49, 98, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(232, 146, 26, 0.07), transparent 50%),
    radial-gradient(ellipse 40% 30% at 80% 100%, rgba(176, 30, 46, 0.05), transparent 45%),
    var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 0.55em;
}

p { margin: 0 0 1em; }

.container {
  width: min(100% - 2.75rem, var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 400;
  background: var(--teal); color: #fff; padding: 0.65rem 1rem; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ——— Progress ——— */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 400;
  background: linear-gradient(90deg, var(--blue-bright), var(--orange), var(--crimson));
  pointer-events: none;
}

/* ——— Header / Navbar ——— */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  padding-top: env(safe-area-inset-top, 0px);
  height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  background: linear-gradient(180deg, #0b1224 0%, #0a1020 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--orange), var(--crimson));
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(8, 12, 24, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  flex-shrink: 0;
  min-width: 0;
  z-index: 2;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
  white-space: nowrap;
  color: #fff;
}

.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.48);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  margin-left: auto;
  min-width: 0;
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: nowrap;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.72rem;
  color: rgba(255, 252, 247, 0.72);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--orange), var(--crimson));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s var(--ease);
  opacity: 0.95;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links a[aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.55rem;
  color: rgba(255, 252, 247, 0.88) !important;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}

.header-phone:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
}

.header-phone-icon {
  flex-shrink: 0;
  color: var(--orange-soft);
}

.header-phone-num {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  background: linear-gradient(135deg, var(--orange), var(--crimson));
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(176, 30, 46, 0.28);
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover,
.nav-cta[aria-current="page"] {
  filter: brightness(1.08);
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(176, 30, 46, 0.36);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
  padding: 0;
  place-items: center;
  flex-shrink: 0;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease), top 0.25s var(--ease);
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 2px;
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 252, 247, 0.65);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.42rem 0.58rem;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}

.lang-btn.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lang-btn:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

html[data-lang="hi"] body,
html[lang="hi"] body {
  font-family: "Noto Sans Devanagari", var(--font-body), sans-serif;
}

html[data-lang="hi"] h1,
html[data-lang="hi"] h2,
html[data-lang="hi"] h3,
html[data-lang="hi"] h4,
html[lang="hi"] h1,
html[lang="hi"] h2,
html[lang="hi"] h3,
html[lang="hi"] h4 {
  font-family: "Noto Sans Devanagari", var(--font-display), serif;
  letter-spacing: -0.02em;
}

html[data-lang="hi"] .hero-brand .name {
  font-family: "Noto Sans Devanagari", var(--font-display), serif;
}

/* ——— Buttons ——— */
.btn {
  --btn-x: 0px; --btn-y: 0px;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.9rem 1.45rem;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent; cursor: pointer;
  transform: translate(var(--btn-x), var(--btn-y));
  transition: transform 0.25s var(--ease), background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 55%, #3a5fb0 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(29, 49, 98, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 16px 40px rgba(232, 146, 26, 0.28);
  background: linear-gradient(135deg, var(--blue-bright), var(--orange));
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--orange-soft);
  background: rgba(232, 146, 26, 0.12);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(7, 10, 13, 0.18);
}

.btn-dark:hover { background: var(--steel); }

.btn-outline-dark {
  background: transparent; color: var(--ink);
  border-color: rgba(7, 10, 13, 0.2);
}

.btn-outline-dark:hover {
  border-color: var(--teal);
  background: rgba(29, 49, 98, 0.06);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.hero-media { position: absolute; inset: 0; z-index: 0; }

.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.02) brightness(0.92);
}

.hero-media::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(7,11,22,0.72) 0%, rgba(7,11,22,0.42) 38%, rgba(7,11,22,0.12) 72%),
    linear-gradient(180deg, rgba(7,11,22,0.28) 0%, transparent 42%, rgba(7,11,22,0.55) 100%);
}

.hero-media::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 40% 35% at 78% 55%, rgba(232,146,26,0.1), transparent 60%),
    radial-gradient(ellipse 28% 28% at 12% 72%, rgba(29,49,98,0.18), transparent 55%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(100% - 2.75rem, var(--max));
  margin: 0 auto;
  padding: calc(var(--header-h) + 3.5rem) 0 4rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-shell {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
  }
}

.hero-content { position: relative; z-index: 2; }

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 12vw, 7.2rem);
  font-weight: 700;
  font-variation-settings: "SOFT" 40, "WONK" 0.6;
  letter-spacing: -0.045em;
  line-height: 0.86;
  margin: 0 0 1.35rem;
  max-width: 10ch;
  opacity: 0;
  transform: translateY(40px);
  animation: hero-in 1s var(--ease-out) 0.12s forwards;
}

.hero-brand .l { color: #5b7fd4; }
.hero-brand .m { color: var(--orange-soft); }
.hero-brand .p { color: var(--crimson-soft); }
.hero-brand .name {
  display: block;
  margin-top: 0.15em;
  background: linear-gradient(105deg, #fff 0%, rgba(255,252,247,0.82) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
  max-width: 26ch;
  margin-bottom: 0.9rem;
  color: #fff;
  text-shadow: 0 2px 18px rgba(7,11,22,0.45);
  opacity: 0;
  transform: translateY(28px);
  animation: hero-in 1s var(--ease-out) 0.32s forwards;
}

.hero-lead {
  max-width: 38ch;
  color: rgba(255,252,247,0.82);
  font-size: 1.02rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 14px rgba(7,11,22,0.4);
  opacity: 0;
  transform: translateY(28px);
  animation: hero-in 1s var(--ease-out) 0.48s forwards;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
  opacity: 0;
  transform: translateY(28px);
  animation: hero-in 1s var(--ease-out) 0.62s forwards;
}

@keyframes hero-in {
  to { opacity: 1; transform: none; }
}

.hero-scroll {
  position: absolute; right: clamp(1.25rem, 4vw, 3rem); bottom: 2.25rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
  color: rgba(255,252,247,0.45);
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0; animation: hero-in 1s var(--ease-out) 1s forwards;
}

.hero-scroll::after {
  content: ""; width: 1px; height: 56px;
  background: linear-gradient(180deg, var(--orange-soft), transparent);
  animation: pulse-line 2s var(--ease) infinite;
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.65); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ——— Sections ——— */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }

.section-dark {
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(29,49,98,0.35), transparent 50%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(232,146,26,0.12), transparent 45%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(176,30,46,0.1), transparent 45%),
    var(--ink);
  color: var(--white);
}

.section-teal {
  background:
    linear-gradient(125deg, #0a1228 0%, var(--blue) 38%, #8a3a12 78%, var(--crimson) 130%);
  color: var(--white);
  position: relative; overflow: hidden;
}

.section-teal::before {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.section-muted {
  background:
    linear-gradient(180deg, var(--paper-2), var(--paper));
}

.section-label {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.9rem;
}

.section-label::before {
  content: "";
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.section-dark .section-label,
.section-teal .section-label { color: var(--gold-soft); }

.section-title {
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  max-width: 16ch;
}

.section-intro {
  max-width: 48ch;
  color: var(--steel);
  font-size: 1.08rem;
}

.section-dark .section-intro,
.section-teal .section-intro { color: rgba(255,252,247,0.7); }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head.split { display: grid; gap: 1.5rem; }

@media (min-width: 768px) {
  .section-head.split {
    grid-template-columns: 1.15fr 1fr;
    align-items: end;
  }
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transform-origin: center bottom;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* ——— Stats ——— */
.stats-strip {
  display: grid; gap: 1px;
  background: var(--line-dark);
  border-block: 1px solid var(--line-dark);
  position: relative; z-index: 3;
}

@media (min-width: 700px) {
  .stats-strip { grid-template-columns: repeat(4, 1fr); }
}

.stat {
  background: var(--white);
  padding: 2.25rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}

.stat::after {
  content: "";
  position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--crimson));
  transition: width 0.55s var(--ease);
}

.stat:hover::after,
.stat.reveal.is-visible::after { width: 100%; }

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(120deg, var(--blue), var(--orange) 55%, var(--crimson));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.stat-label {
  color: var(--steel); font-size: 0.92rem; max-width: 16ch; line-height: 1.4;
}

/* ——— Marquee ——— */
.marquee {
  overflow: hidden;
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink-2) 50%, var(--ink) 100%);
  border-block: 1px solid var(--line);
  padding: 1.75rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  perspective: 800px;
}

.marquee-track {
  display: flex; gap: 1.1rem; width: max-content;
  animation: marquee 22s linear infinite;
  transform-style: preserve-3d;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  flex: 0 0 auto; width: 170px; height: 128px;
  background: linear-gradient(160deg, #fff, #eef1f7);
  display: grid; place-items: center; padding: 0.75rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
  transform: rotateY(-8deg) rotateX(4deg);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.marquee-item:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-8px) scale(1.06);
  box-shadow: 0 20px 40px rgba(232,146,26,0.25);
  z-index: 2;
}

.marquee-item img {
  max-width: 100%; max-height: 100%; object-fit: contain;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ——— Feature pair (injection + stacking) ——— */
.feature-pair {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .feature-pair {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.feature-card .section-label {
  margin-top: 1.35rem;
  margin-bottom: 0.45rem;
}

.feature-card h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  margin: 0 0 0.65rem;
  max-width: 18ch;
  line-height: 1.15;
}

.feature-card > p:not(.section-label) {
  margin: 0;
  max-width: 42ch;
  color: var(--steel);
  line-height: 1.65;
}

.feature-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(160deg, #0e1528, #1d3162 55%, #2a3d6e);
  border: 1px solid rgba(7, 11, 22, 0.1);
  transform-style: preserve-3d;
  box-shadow: 0 18px 40px rgba(7, 11, 22, 0.1);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.feature-card:hover .feature-card-media {
  box-shadow: 0 28px 55px rgba(7, 11, 22, 0.16);
}

.feature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.feature-card:hover .feature-card-media img {
  transform: scale(1.04);
}

.feature-card-media--stack {
  background:
    radial-gradient(ellipse at 50% 85%, rgba(232, 146, 26, 0.18), transparent 55%),
    linear-gradient(180deg, #f7f5f1 0%, #e8ecf4 100%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 11, 22, 0.08);
}

.feature-card-media--stack:hover img {
  transform: none;
}

.feature-badge {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 252, 247, 0.95);
  color: var(--royal, #1d3162);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(7, 11, 22, 0.12);
  box-shadow: 0 8px 20px rgba(7, 10, 13, 0.12);
}

@media (max-width: 600px) {
  .feature-card-media {
    aspect-ratio: 16 / 11;
  }
}

/* ——— Band ——— */
.band {
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 900px) {
  .band {
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
  }
  .band.reverse > :first-child {
    order: 2;
  }
}

.band-media {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink-2);
  isolation: isolate;
}

.band-media.band-media-product {
  background: linear-gradient(180deg, #fff, #eef1f7);
  border: 1px solid rgba(7,11,22,0.08);
}

.band-media.band-media-product img {
  object-fit: contain;
  padding: 1.5rem;
  background: transparent;
}

.band-media::before {
  content: "";
  position: absolute; inset: auto -2% -2% auto;
  width: 42%; height: 42%;
  border: 1px solid rgba(232,146,26,0.5);
  z-index: 2; pointer-events: none;
  transform: translate(12px, 12px);
  transition: transform 0.5s var(--ease);
}

.band-media-product::before { display: none; }

.band-media:hover::before { transform: translate(0, 0); }

.band-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.band-media:hover img { transform: scale(1.04); }
.band-media-product:hover img { transform: scale(1.03); }

.band-copy h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
}

.feature-list {
  margin-top: 1.35rem; display: grid; gap: 0.8rem;
}

.feature-list li {
  position: relative; padding-left: 1.4rem; color: var(--steel);
}

.section-dark .feature-list li { color: rgba(255,252,247,0.78); }

.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.72em;
  width: 0.5rem; height: 0.5rem;
  background: linear-gradient(135deg, var(--teal-bright), var(--gold));
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

/* ——— Trust ——— */
.trust-strip {
  display: grid; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 700px) {
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  background: rgba(255,255,255,0.03);
  padding: 1.75rem 1.35rem;
  transition: background 0.35s, transform 0.35s var(--ease);
}

.trust-item:hover {
  background: rgba(42, 74, 154, 0.1);
  transform: translateY(-3px);
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--white);
}

.trust-item span {
  color: var(--fog); font-size: 0.9rem; line-height: 1.45;
}

/* ——— Timeline ——— */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  border-left: 2px solid rgba(42, 74, 154, 0.35);
  margin-left: 2.75rem;
  counter-reset: journey;
}

.timeline-item {
  position: relative;
  padding: 0 0 1.85rem 1.5rem;
  counter-increment: journey;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -0.45rem;
  top: 0.45rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--orange));
  box-shadow: 0 0 0 4px var(--paper);
}

.timeline-item::after {
  content: counter(journey);
  position: absolute;
  left: -2.75rem;
  top: 0;
  width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  background: var(--blue);
  border-radius: 4px;
  line-height: 1;
}

.section-dark .timeline-item::before {
  box-shadow: 0 0 0 4px var(--ink);
}

.timeline-year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.section-dark .timeline-year { color: var(--orange-soft); }
.section-dark .timeline-item::after {
  background: var(--orange);
  color: var(--ink);
}

/* ——— Chart ——— */
.chart { display: grid; gap: 1.25rem; }

.chart-bars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; align-items: end; min-height: 240px; padding-top: 1rem;
}

.chart-bar {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.55rem; height: 100%; justify-content: flex-end;
}

.chart-bar .bar {
  width: 100%; max-width: 76px;
  background: linear-gradient(180deg, var(--orange-soft), var(--blue-bright) 50%, var(--blue));
  transform-origin: bottom; transform: scaleY(0);
  transition: transform 1.15s var(--ease-out);
  position: relative;
  box-shadow: 0 0 24px rgba(29,49,98,0.25);
}

.chart.is-visible .chart-bar .bar { transform: scaleY(1); }

.chart-bar .value {
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
}

.chart-bar .label { font-size: 0.78rem; color: var(--fog); text-align: center; }
.chart-note { font-size: 0.88rem; color: var(--fog); }

/* ——— Products ——— */
.product-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.25rem;
}

.filter-btn {
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-dark);
  background: transparent;
  font-family: var(--font-body); font-size: 0.86rem; font-weight: 600;
  cursor: pointer; color: var(--steel);
  transition: all 0.3s var(--ease);
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--ink); color: var(--white); border-color: var(--ink);
}

.product-group { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.product-group h3 { font-size: 1.55rem; margin-bottom: 0.35rem; }
.product-group .group-meta {
  color: var(--fog); margin-bottom: 1.35rem; font-size: 0.95rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.35rem;
}

.product-tile {
  background: var(--white);
  border: 1px solid rgba(7,10,13,0.07);
  transition: border-color 0.3s, box-shadow 0.35s, transform 0.15s ease-out;
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  transform:
    perspective(900px)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    translateY(var(--ty, 0px));
  will-change: transform;
}

.product-tile::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--crimson));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: 2;
}

.product-tile:hover {
  border-color: rgba(29,49,98,0.22);
  --ty: -8px;
  box-shadow: 0 22px 48px rgba(7,11,22,0.14);
}

.product-tile:hover::before { transform: scaleX(1); }

.product-tile .thumb {
  aspect-ratio: 1;
  background: linear-gradient(180deg, #fff, #eef1f7);
  display: grid; place-items: center; padding: 1.25rem;
  border-bottom: 1px solid rgba(7,10,13,0.05);
  overflow: hidden;
  perspective: 600px;
}

.product-tile .thumb img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
  filter: drop-shadow(0 8px 14px rgba(7,11,22,0.12));
}

.product-tile:hover .thumb img {
  transform: scale(1.07) translateZ(16px);
  filter: drop-shadow(0 18px 24px rgba(7,11,22,0.22));
}

.product-tile .body { padding: 1.2rem 1.2rem 1.35rem; }
.product-tile h4 { font-size: 1.08rem; margin-bottom: 0.3rem; }
.product-tile .meta { font-size: 0.88rem; color: var(--fog); line-height: 1.45; }
.product-group[hidden] { display: none; }

/* ——— Applications ——— */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(7,10,13,0.1);
  border: 1px solid rgba(7,10,13,0.1);
}

.section-dark .app-grid {
  background: var(--line);
  border-color: var(--line);
}

.app-item {
  background: var(--paper);
  padding: 1.65rem 1.35rem;
  min-height: 118px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: background 0.35s, transform 0.35s var(--ease);
  position: relative; overflow: hidden;
}

.app-item::after {
  content: "";
  position: absolute; right: -20%; top: -20%;
  width: 80px; height: 80px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,49,98,0.15), transparent 70%);
  transition: transform 0.5s var(--ease);
}

.app-item:hover { background: var(--white); transform: translateY(-2px); }
.app-item:hover::after { transform: scale(1.8); }

.section-dark .app-item { background: var(--ink-2); }
.section-dark .app-item:hover { background: var(--ink-3); }
.section-dark .app-item strong { color: var(--white); }

.app-item strong {
  font-family: var(--font-display); font-size: 1.05rem; position: relative; z-index: 1;
}

/* ——— Page hero ——— */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 4.5rem) 0 4rem;
  background: var(--ink); color: var(--white); overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 90% 10%, rgba(29,49,98,0.55), transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(232,146,26,0.28), transparent 50%),
    radial-gradient(ellipse 30% 40% at 50% 100%, rgba(176,30,46,0.18), transparent 50%),
    linear-gradient(135deg, var(--ink) 30%, var(--ink-2));
  z-index: 0;
}

.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 20%, transparent);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  max-width: 12ch; margin-bottom: 0.6rem;
}

.page-hero p {
  max-width: 46ch; color: rgba(255,252,247,0.68); margin: 0;
}

/* ——— About page hero (filled, not empty) ——— */
.about-page-hero {
  padding: calc(var(--header-h) + 2.75rem) 0 2.5rem;
}

.about-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    min-height: min(58vh, 520px);
  }
}

.about-hero-copy .section-label {
  color: var(--orange-soft);
}

.about-hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.about-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 252, 247, 0.88);
}

.about-hero-visual {
  position: relative;
}

.about-hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-hero-panel-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.25rem 1.1rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}

.about-hero-panel-item:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 146, 26, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.about-hero-panel-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--orange-soft);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.about-hero-panel-item span {
  font-size: 0.8rem;
  color: rgba(255, 252, 247, 0.62);
  line-height: 1.35;
}

.about-hero-badge {
  display: none;
}

.about-facts {
  background: var(--white);
  border-bottom: 1px solid var(--line-dark);
  padding: 0;
  position: relative;
  z-index: 2;
}

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

@media (min-width: 800px) {
  .about-facts-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-fact {
  padding: 1.35rem 1.25rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.3s, transform 0.3s var(--ease);
}

@media (min-width: 800px) {
  .about-fact {
    border-bottom: 0;
  }
  .about-fact:last-child {
    border-right: 0;
  }
}

.about-fact:hover {
  background: var(--paper);
  transform: translateY(-2px);
}

.about-fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: 0.3rem;
}

.about-fact span {
  font-size: 0.82rem;
  color: var(--steel);
  line-height: 1.35;
}

.about-story-section {
  padding-top: 3.5rem;
}

.about-story-media {
  position: relative;
}

@media (max-width: 899px) {
  .about-hero-panel {
    margin-top: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-panel-item:hover {
    transform: none;
  }
}

/* ——— Gallery ——— */
.gallery {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem;
}

@media (min-width: 800px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
}

.gallery figure {
  margin: 0; aspect-ratio: 4/3; overflow: hidden;
  background: var(--ink-2); cursor: zoom-in;
  position: relative;
}

.gallery figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,10,13,0.35));
  opacity: 0; transition: opacity 0.4s;
}

.gallery figure:hover::after { opacity: 1; }

.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery figure:hover img { transform: scale(1.07); }

/* ——— Plus ——— */
.plus-grid { display: grid; gap: 0; }

@media (min-width: 700px) {
  .plus-grid { grid-template-columns: repeat(2, 1fr); column-gap: 2rem; }
}

@media (min-width: 1000px) {
  .plus-grid { grid-template-columns: repeat(3, 1fr); }
}

.plus-item {
  padding: 1.65rem 0;
  border-top: 1px solid rgba(7,10,13,0.1);
  transition: padding-left 0.35s var(--ease);
}

.section-dark .plus-item { border-top-color: var(--line); }
.plus-item:hover { padding-left: 0.5rem; }
.plus-item h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.plus-item p { margin: 0; color: var(--steel); font-size: 0.96rem; }
.section-dark .plus-item p { color: rgba(255,252,247,0.68); }

/* ——— About: Company journey (pro) ——— */
.journey-section {
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 74, 154, 0.28), transparent 68%);
  pointer-events: none;
}

.journey-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 800px) {
  .journey-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.journey-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1.1rem;
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}

.journey-stat:hover {
  transform: translateY(-4px) rotateX(4deg);
  border-color: rgba(232, 146, 26, 0.4);
  background: rgba(42, 74, 154, 0.14);
}

.journey-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--orange-soft);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.journey-stat span {
  font-size: 0.82rem;
  color: rgba(255, 252, 247, 0.62);
  line-height: 1.35;
}

.journey-rail {
  display: grid;
  gap: 1.25rem;
  perspective: 1400px;
}

@media (min-width: 900px) {
  .journey-rail {
    grid-template-columns: 1fr 1fr;
  }
  .journey-card--wide {
    grid-column: 1 / -1;
  }
}

.journey-card {
  position: relative;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem 1.5rem 1.6rem;
  overflow: hidden;
  transform-style: preserve-3d;
  transform:
    perspective(1000px)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    translateY(var(--ty, 0px));
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.15s ease-out;
  will-change: transform;
}

.journey-card:hover {
  border-color: rgba(232, 146, 26, 0.35);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  --ty: -6px;
}

.journey-card.reveal.is-visible {
  opacity: 1;
  transform:
    perspective(1000px)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    translateY(var(--ty, 0px));
}

.journey-card-glow {
  position: absolute;
  inset: auto -20% -40% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 146, 26, 0.22), transparent 70%);
  pointer-events: none;
  transform: translateZ(-20px);
}

.journey-year {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, var(--orange-soft), var(--orange));
  padding: 0.4rem 0.7rem;
  margin-bottom: 1rem;
}

.journey-card h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  color: var(--white);
  margin: 0 0 0.65rem;
  max-width: 22ch;
}

.journey-card > p {
  color: rgba(255, 252, 247, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 1rem;
  max-width: 54ch;
}

.journey-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.journey-card li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255, 252, 247, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
}

.journey-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 146, 26, 0.2);
}

.journey-growth {
  align-items: stretch;
}

.chart--glow {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem 1.5rem;
}

.section-dark .chart--glow h3 {
  color: var(--white);
}

.section-dark .chart-bar .value {
  color: var(--orange-soft);
}

.section-dark .chart-bar .bar {
  background: linear-gradient(180deg, var(--orange-soft), var(--blue-bright));
}

.section-dark .chart-note {
  color: rgba(255, 252, 247, 0.45);
}

.journey-milestones {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem 1.5rem;
}

.journey-milestones h3 {
  color: var(--white);
  font-size: 1.45rem;
  margin: 0 0 1.25rem;
}

.milestone-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
  counter-reset: mile;
}

.milestone-list li {
  position: relative;
  padding-left: 3rem;
  counter-increment: mile;
}

.milestone-list li::before {
  content: counter(mile, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange-soft);
}

.milestone-list strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.milestone-list span {
  color: rgba(255, 252, 247, 0.62);
  font-size: 0.88rem;
  line-height: 1.45;
}

@media (max-width: 700px) {
  .journey-card {
    padding: 1.35rem 1.15rem;
  }
  .journey-card h3 {
    max-width: none;
  }
}

/* ——— Contact ——— */
.contact-grid { display: grid; gap: 2.5rem; }

@media (min-width: 800px) {
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
}

.contact-block h2 { font-size: 1.7rem; }
.contact-lines { display: grid; gap: 1.35rem; margin: 1.5rem 0; }

.contact-lines dt {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.3rem;
}

.contact-lines dd { margin: 0; font-size: 1.1rem; }
.contact-lines a { text-decoration: underline; text-underline-offset: 3px; }

.contact-panel {
  background:
    radial-gradient(ellipse at top right, rgba(29,49,98,0.35), transparent 55%),
    var(--ink);
  color: var(--white);
  padding: 2.25rem;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 2rem; min-height: 300px;
  border: 1px solid var(--line);
}

.contact-panel p { color: rgba(255,252,247,0.7); margin: 0; }

.contact-map {
  margin-top: 2.25rem;
  position: relative;
  border: 1px solid var(--line-dark);
  background: var(--paper-2);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  min-height: 260px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map .map-open-link {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 252, 247, 0.95);
  color: var(--royal);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--line-dark);
  box-shadow: 0 8px 20px rgba(7, 10, 13, 0.12);
}

.contact-map .map-open-link:hover {
  background: #fff;
  color: var(--crimson);
}

@media (max-width: 700px) {
  .contact-map {
    aspect-ratio: 4 / 3;
    min-height: 280px;
  }
}

/* ——— CTA ——— */
.cta-band {
  display: grid; gap: 1.5rem; align-items: center;
  position: relative; z-index: 1;
}

@media (min-width: 800px) {
  .cta-band { grid-template-columns: 1.4fr auto; }
}

.cta-band h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.7rem);
  margin: 0 0 0.45rem; max-width: 16ch;
}

.cta-band p { margin: 0; color: rgba(255,252,247,0.78); }

/* ——— Footer ——— */
.site-footer {
  background: #040608; color: rgba(255,252,247,0.65);
  padding: 3.5rem 0 2rem; font-size: 0.95rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid; gap: 2rem; margin-bottom: 2.75rem;
}

@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

.footer-brand {
  display: flex; align-items: center; gap: 0.85rem;
  color: var(--white); margin-bottom: 0.95rem;
}

.footer-brand img {
  width: 44px; height: 44px; object-fit: contain; background: transparent;
  border: 0;
}

.footer-brand strong {
  font-family: var(--font-display); font-size: 1.2rem;
}

.site-footer h3 {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fog); margin-bottom: 0.95rem;
}

.footer-links { display: grid; gap: 0.5rem; }
.footer-links a { transition: color 0.25s; }
.footer-links a:hover { color: var(--gold-soft); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.35rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem; color: var(--fog);
}

/* ——— Pipeline ——— */
.pipeline {
  display: grid; gap: 2rem; padding: 2.25rem;
  background:
    radial-gradient(ellipse at left, rgba(29,49,98,0.25), transparent 50%),
    var(--ink);
  color: var(--white);
  border: 1px solid var(--line);
}

@media (min-width: 800px) {
  .pipeline { grid-template-columns: 1fr 1.2fr; align-items: center; }
}

.pipeline-thumbs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem;
}

.pipeline-thumbs img {
  width: 100%; aspect-ratio: 1; object-fit: contain;
  background: #fff; padding: 0.85rem;
  transition: transform 0.4s var(--ease);
}

.pipeline-thumbs img:hover { transform: scale(1.03); }

.pipeline ul { margin-top: 1rem; display: grid; gap: 0.55rem; }

.pipeline li {
  position: relative; padding-left: 1.15rem;
  color: rgba(255,252,247,0.78); font-size: 0.95rem;
}

.pipeline li::before {
  content: ""; position: absolute; left: 0; top: 0.65em;
  width: 0.4rem; height: 0.4rem;
  background: var(--gold); border-radius: 50%;
}

/* ——— Form ——— */
.enquiry-form { display: grid; gap: 1.05rem; margin-top: 0.5rem; }

.enquiry-form label {
  display: grid; gap: 0.4rem;
  font-size: 0.86rem; font-weight: 600; color: var(--steel);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%; padding: 0.9rem 1rem;
  border: 1px solid rgba(7,10,13,0.12);
  background: var(--white); font: inherit; color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,49,98,0.15);
}

.enquiry-form textarea { min-height: 130px; resize: vertical; }

.form-row { display: grid; gap: 1rem; }
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-note { font-size: 0.85rem; color: var(--fog); margin: 0; }
.form-status { font-size: 0.9rem; color: var(--teal); min-height: 1.2em; }

/* ——— Specs ——— */
.specs-table-wrap {
  overflow-x: auto; margin-top: 2rem;
  border: 1px solid var(--line-dark);
}

.specs-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.92rem; background: var(--white);
}

.specs-table th, .specs-table td {
  padding: 0.9rem 1.05rem; text-align: left;
  border-bottom: 1px solid rgba(7,10,13,0.07);
  white-space: nowrap;
}

.specs-table th {
  font-family: var(--font-display); font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--ink); color: var(--white);
}

.specs-table tr:last-child td { border-bottom: 0; }
.specs-table tbody tr { transition: background 0.25s; }
.specs-table tbody tr:hover td { background: rgba(29,49,98,0.06); }

/* ——— Lightbox ——— */
.lightbox {
  position: fixed; inset: 0; z-index: 350;
  background: rgba(4,6,8,0.94);
  display: grid; place-items: center; padding: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(8px);
}

.lightbox.is-open { opacity: 1; pointer-events: auto; }

.lightbox img {
  max-width: min(960px, 100%); max-height: 85vh; object-fit: contain;
  transform: scale(0.96); transition: transform 0.35s var(--ease);
}

.lightbox.is-open img { transform: scale(1); }

.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent; color: var(--white);
  font-size: 1.4rem; cursor: pointer;
  transition: background 0.25s;
}

.lightbox-close:hover { background: rgba(255,255,255,0.08); }

/* ——— Back top ——— */
.back-top {
  position: fixed; left: 1.25rem; bottom: 1.25rem; z-index: 180;
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(135deg, var(--ink), var(--steel));
  color: var(--white); font-size: 1.15rem; cursor: pointer;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
}

.back-top.is-visible {
  opacity: 1; pointer-events: auto; transform: none;
}

.back-top:hover {
  background: linear-gradient(135deg, var(--blue), var(--orange));
}

/* ——— Mobile nav ——— */
@media (max-width: 1120px) {
  .nav-toggle {
    display: grid;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    width: 100%;
    margin-left: 0;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    background: linear-gradient(180deg, #0b1224 0%, #080e1c 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.85rem 1rem 1.35rem;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 450;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
    max-height: calc(100dvh - var(--header-h) - env(safe-area-inset-top, 0px));
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .nav-links a {
    padding: 0.9rem 1rem;
    width: 100%;
    font-size: 0.95rem;
  }

  .nav-links a::after {
    left: 1rem;
    right: auto;
    width: 22px;
    bottom: 0.7rem;
    transform: scaleX(0);
    transform-origin: left;
  }

  .nav-links a:hover::after,
  .nav-links a[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .nav-tools {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding: 0.85rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-phone {
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
  }

  .header-phone-num {
    font-size: 0.9rem;
  }

  .nav-cta {
    width: 100%;
    padding: 0.9rem 1.15rem;
    text-align: center;
  }

  .lang-switch {
    width: 100%;
  }

  .lang-btn {
    flex: 1;
    padding: 0.75rem;
    font-size: 0.85rem;
  }
}

@media (min-width: 1121px) and (max-width: 1280px) {
  .nav-links a {
    padding: 0.5rem 0.5rem;
    font-size: 0.78rem;
  }

  .nav-links a::after {
    left: 0.5rem;
    right: 0.5rem;
  }

  .header-phone-num {
    display: none;
  }

  .nav-tools {
    gap: 0.4rem;
    padding-left: 0.65rem;
  }

  .nav-cta {
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 700px) {
  .hero-scroll { display: none; }
}

@media (max-width: 520px) {
  .chart-bars { gap: 0.5rem; min-height: 180px; }
  .chart-bar .value { font-size: 0.8rem; }
  .hero-content { padding-bottom: 1.5rem; }
  .brand-tag { display: none; }
  .brand img { width: 40px; height: 40px; }
  .brand-name { font-size: 0.98rem; }
  :root { --header-h: 64px; }
}

/* ——— Phone / tablet layout polish ——— */
@media (max-width: 960px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-shell {
    width: min(100% - 1.5rem, var(--max));
    padding: calc(var(--header-h) + 1.75rem) 0 2.5rem;
    gap: 1.75rem;
  }

  .hero-brand {
    font-size: clamp(2.75rem, 14vw, 4.25rem);
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: 1.15rem;
    max-width: 28ch;
  }

  .hero-lead {
    font-size: 0.95rem;
    margin-bottom: 1.35rem;
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    justify-content: center;
  }

  .section {
    padding: clamp(3rem, 8vw, 4.5rem) 0;
  }

  .section-title {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
  }

  .page-hero {
    padding: calc(var(--header-h) + 2.5rem) 0 2.5rem;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    max-width: 14ch;
  }

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

  .stat {
    padding: 1.35rem 1rem;
  }

  .stat-value {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .timeline {
    margin-left: 2.4rem;
  }

  .timeline-item::after {
    left: -2.4rem;
    width: 1.65rem;
    height: 1.65rem;
    font-size: 0.85rem;
  }

  .cta-band {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cta-band .btn,
  .cta-band .hero-actions {
    width: 100%;
  }

  .cta-band .btn {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-filters {
    gap: 0.4rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    flex: 0 0 auto;
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .product-tile .body {
    padding: 0.85rem;
  }

  .product-tile h4 {
    font-size: 0.95rem;
  }

  .product-tile .meta {
    font-size: 0.78rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .specs-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .map-pin .pin-label {
    font-size: 0.55rem;
  }

  .map-detail {
    padding: 1.35rem 1.15rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }
}

@media (max-width: 600px) {
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .marquee-item {
    width: 130px !important;
    height: 118px !important;
  }

  .band-media {
    aspect-ratio: 5 / 4;
  }

  .chart-bars {
    min-height: 160px;
    gap: 0.4rem;
  }

  .chart-bar .label {
    font-size: 0.65rem;
  }

  .state-grid {
    grid-template-columns: 1fr !important;
  }

  .app-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plus-grid {
    grid-template-columns: 1fr;
  }

  .pipeline {
    grid-template-columns: 1fr;
    padding: 1.35rem;
  }

  .section-head.split {
    grid-template-columns: 1fr;
  }

  .page-hero-map h1 {
    max-width: none;
  }

  .india-map {
    max-width: 100%;
  }

  .back-top {
    left: 0.85rem;
    right: auto;
    bottom: 0.85rem;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 380px) {
  .brand-name {
    font-size: 0.9rem;
  }

  .hero-brand {
    font-size: 2.4rem;
  }

  .hero-stat {
    padding: 1rem 0.75rem;
  }

  .hero-stat strong {
    font-size: 1.5rem;
  }

  .app-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Government tenders / India map ——— */
.page-hero-map {
  background:
    radial-gradient(ellipse 70% 80% at 85% 20%, rgba(29, 49, 98, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(232, 146, 26, 0.12), transparent 50%),
    linear-gradient(160deg, #070a0d 0%, #122028 100%);
  color: var(--white);
}

.page-hero-map .section-label { color: var(--gold-soft); }
.page-hero-map h1 { color: var(--white); max-width: 18ch; }
.page-hero-map p { color: rgba(255, 252, 247, 0.78); max-width: 52ch; }

.map-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
}

.map-panel {
  background:
    radial-gradient(circle at 50% 40%, rgba(42, 74, 154, 0.12), transparent 55%),
    linear-gradient(165deg, #0b1218 0%, #101a22 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.25rem 1rem;
  position: relative;
  overflow: hidden;
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, #000 20%, transparent 75%);
  pointer-events: none;
}

.india-map {
  position: relative;
  width: 100%;
  aspect-ratio: 667 / 777;
  max-width: 480px;
  margin: 0 auto;
}

.india-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}

.india-land {
  transition: fill 0.4s var(--ease);
}

.map-orbit {
  animation: orbit-spin 48s linear infinite;
  transform-origin: 333px 380px;
}

.map-orbit-2 {
  animation-duration: 72s;
  animation-direction: reverse;
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.map-pin .pin-dot {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe9a0, #d4a017 55%, #8a5600);
  box-shadow: 0 0 0 2px rgba(7, 10, 13, 0.85), 0 4px 12px rgba(232, 146, 26, 0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.map-pin .pin-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 146, 26, 0.55);
  animation: pin-pulse 2.4s var(--ease) infinite;
  opacity: 0;
}

.map-pin:hover .pin-dot,
.map-pin.is-active .pin-dot,
.map-pin:focus-visible .pin-dot {
  transform: scale(1.25);
  box-shadow: 0 0 0 2px rgba(7, 10, 13, 0.9), 0 0 20px rgba(42, 74, 154, 0.65);
}

.map-pin.is-active .pin-pulse,
.map-pin:hover .pin-pulse {
  opacity: 1;
}

@keyframes pin-pulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.1); opacity: 0; }
}

.map-pin .pin-label {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.55);
  pointer-events: none;
  transition: color 0.2s, opacity 0.2s;
}

.map-pin.is-active .pin-label,
.map-pin:hover .pin-label {
  color: var(--gold-soft);
}

.map-hint {
  text-align: center;
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: rgba(255, 252, 247, 0.45);
}

.map-detail {
  background: var(--white);
  border: 1px solid var(--line-dark);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  box-shadow: 0 24px 48px rgba(7, 10, 13, 0.06);
}

.map-detail.is-flash {
  animation: detail-flash 0.55s var(--ease);
}

@keyframes detail-flash {
  0% { transform: translateY(6px); opacity: 0.55; }
  100% { transform: none; opacity: 1; }
}

.map-detail h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.65rem;
}

.map-detail .feature-list { margin: 1rem 0 1.5rem; }

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--teal);
  color: #fff;
}

.chip-soft {
  background: rgba(29, 49, 98, 0.1);
  color: var(--teal-deep);
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.state-card {
  appearance: none;
  border: 1px solid var(--line-dark);
  background: var(--white);
  padding: 1.1rem 1rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
  font: inherit;
  color: inherit;
  display: block;
  text-decoration: none;
  width: 100%;
}

.state-card:hover,
.state-card.is-active {
  border-color: var(--teal);
  box-shadow: 0 12px 28px rgba(29, 49, 98, 0.12);
  transform: translateY(-2px);
}

.state-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.section-dark .state-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.section-dark .state-card span {
  color: rgba(255, 252, 247, 0.55);
}

.section-dark .state-card:hover {
  border-color: var(--gold-soft);
  background: rgba(232, 146, 26, 0.1);
}

@media (max-width: 960px) {
  .map-layout { grid-template-columns: 1fr; }
  .state-grid { grid-template-columns: repeat(2, 1fr); }
  .map-pin .pin-label { font-size: 0.6rem; }
}

@media (max-width: 520px) {
  .state-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img,
  .hero-brand, .hero h1, .hero-lead, .hero-actions, .hero-scroll,
  .marquee-track, .hero-scroll::after, .hero-media::after,
  .map-orbit, .map-pin .pin-pulse, .crate-3d .crate-face img, .crate-orbit { animation: none !important; }
  .hero-brand, .hero h1, .hero-lead, .hero-actions, .hero-scroll {
    opacity: 1; transform: none;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
  .chart-bar .bar { transform: none; }
}


/* ——— Float contact actions ——— */
.float-actions {
  position: fixed;
  right: 1.1rem;
  bottom: 5.25rem;
  z-index: 190;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-end;
}
.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}
.float-wa {
  background: linear-gradient(135deg, #128c7e, #075e54);
}
.float-call {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
}
.float-enq {
  background: linear-gradient(135deg, var(--orange), var(--crimson));
}
.float-ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .float-actions {
    right: 0.75rem;
    bottom: 4.75rem;
  }
  .float-label { display: none; }
  .float-btn {
    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 4px;
  }
}

/* ——— Industry cards ——— */
.industry-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
}
.industry-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-top: 3px solid var(--orange);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(7, 11, 22, 0.08);
  border-color: rgba(29, 49, 98, 0.18);
}
.industry-card h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--ink);
}
.industry-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--steel);
  flex: 1;
}
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.industry-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  background: rgba(29, 49, 98, 0.08);
  color: var(--blue);
}
.industry-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-bright);
}
.industry-link:hover { color: var(--crimson); }
.industry-link::after { content: "→"; }

.industry-media {
  margin: -1.35rem -1.35rem 0.35rem;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #f7f8fb, #e8ecf4);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.industry-media img {
  width: 72%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(7, 11, 22, 0.12));
  transition: transform 0.35s var(--ease);
}
.industry-card:hover .industry-media img {
  transform: scale(1.06);
}
.industry-card--link {
  text-decoration: none;
  color: inherit;
}
.section-dark .industry-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.section-dark .industry-card h3 { color: #fff; }
.section-dark .industry-card p { color: rgba(255, 252, 247, 0.7); }
.section-dark .industry-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--orange-soft);
}
.section-dark .industry-media {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

/* ——— Shop by category (home) ——— */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.15rem;
}
.category-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-dark);
  color: inherit;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
  overflow: hidden;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(7, 11, 22, 0.1);
  border-color: rgba(29, 49, 98, 0.22);
}
.category-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #fff, #eef1f7);
  display: grid;
  place-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(7, 10, 13, 0.05);
}
.category-media img {
  width: 78%;
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(7, 11, 22, 0.12));
  transition: transform 0.4s var(--ease);
}
.category-card:hover .category-media img {
  transform: scale(1.06);
}
.category-body {
  padding: 1.1rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.category-body h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.category-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--steel);
  flex: 1;
}
.category-cta {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-bright);
}
.category-cta::after { content: " →"; }

/* ——— Buy / commercial strip ——— */
.buy-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(7, 10, 13, 0.08);
  border: 1px solid rgba(7, 10, 13, 0.08);
}
.buy-item {
  background: var(--white);
  padding: 1.25rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.buy-item strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.buy-item span {
  font-size: 0.86rem;
  color: var(--steel);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .buy-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .buy-strip { grid-template-columns: 1fr; }
}

/* ——— Products series jump pills ——— */
.series-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.series-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem 0.4rem 0.4rem;
  background: var(--white);
  border: 1px solid var(--line-dark);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.series-pill img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  background: #f3f5f9;
  padding: 2px;
}
.series-pill:hover {
  border-color: rgba(29, 49, 98, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7, 11, 22, 0.08);
}

.sku-specs {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.sku-specs li {
  font-size: 0.78rem;
  color: var(--steel);
  padding-left: 0.85rem;
  position: relative;
}
.sku-specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  background: var(--orange);
}
.sku-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
}
.product-enq--ghost {
  border-color: transparent !important;
  color: var(--steel) !important;
}
.product-enq--ghost:hover {
  color: var(--blue) !important;
  background: rgba(29, 49, 98, 0.06) !important;
}

/* ——— Product enquire ——— */
.product-tile .body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.product-enq {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.55rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue) !important;
  border: 1px solid rgba(29, 49, 98, 0.25);
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.product-enq:hover {
  background: var(--blue);
  color: #fff !important;
  border-color: var(--blue);
}

/* ——— Catalogue banner / strip ——— */
.catalog-strip {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 1.6rem;
  background:
    linear-gradient(120deg, rgba(29, 49, 98, 0.96), rgba(18, 31, 66, 0.98)),
    var(--ink);
  color: #fff;
  border: 1px solid var(--line);
  align-items: center;
}
@media (min-width: 720px) {
  .catalog-strip {
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }
}
.catalog-strip h2 {
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 0.35rem;
}
.catalog-strip p {
  margin: 0;
  color: rgba(255, 252, 247, 0.78);
  font-size: 0.95rem;
}
.catalog-strip .hero-actions { margin: 0; }

.trust-bar {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  padding: 1.25rem 0;
}
@media (min-width: 700px) {
  .trust-bar { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
.trust-bar-item {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line-dark);
}
.trust-bar-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  color: var(--ink);
}
.trust-bar-item span {
  font-size: 0.84rem;
  color: var(--steel);
}

.footer-subhead {
  margin-top: 1.5rem !important;
}
.footer-bottom-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  align-items: center;
}
.footer-bottom-links a {
  color: var(--fog);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold-soft); }
.footer-wa { color: #7dceb8 !important; }

/* Catalogue print page */
.catalogue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.catalogue-pdf-status {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--steel);
  min-height: 1.25em;
}
.catalogue-pdf-status[data-kind="busy"] { color: var(--blue-bright); }
.catalogue-pdf-status[data-kind="ok"] { color: var(--green); }
.catalogue-pdf-status[data-kind="error"] { color: var(--crimson); }
.btn.is-busy { opacity: 0.7; pointer-events: none; }
.catalogue-series {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
}
.catalogue-series h2 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}
.legal-content {
  max-width: 760px;
}
.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.4rem;
}
.legal-content li { color: var(--steel); }

@media print {
  .site-header,
  .float-actions,
  .back-top,
  .scroll-progress,
  .skip-link,
  .catalogue-actions,
  .site-footer,
  .lang-switch,
  .nav-toggle { display: none !important; }
  body { background: #fff; }
  .page-hero { padding-top: 1rem !important; }
  .catalogue-series { break-inside: avoid; }
}
