/* ============================================================
   Darshan Fine Chem Pvt. Ltd. — Centralized Corporate Theme
   Centralized DFCPL logo color system (Cyan Blue, Slate Gray,
   Bronze Gold, Deep Slate). Built for Darshan Finechem Pvt. Ltd.
   ============================================================ */

:root {
  /* --- Primary Brand Tokens (Derived from DFCPL Logo) --- */
  --brand-cyan: #0084C7;
  /* DFCPL Chemical Cyan Blue */
  --brand-blue-dark: #006AA3;
  /* Darker Cyan Blue for hover & active states */
  --brand-cyan-light: #E6F4FA;
  /* Soft Cyan Tint for highlights & badges */

  --brand-slate: #5A6578;
  /* Metallic Slate Gray from logo */
  --brand-slate-dark: #3B4452;
  /* Darker Slate Gray */
  --brand-slate-light: #F0F4F8;
  /* Light Slate Surface */

  --brand-gold: #C89B3C;
  /* Bronze Gold slash accent inside letter F */
  --brand-gold-dark: #A67D28;

  --brand-dark-bg: #0F172A;
  /* Deep Dark Slate Surface */
  --brand-dark-subtle: #1B2533;
  /* Surface Slate Card Background */
  --brand-dark-deep: #080C14;
  /* Footers & Deep Backgrounds */

  /* --- Mapped Structural Theme Variables (Centralized Site Theme) --- */
  --navy: var(--brand-dark-bg);
  --navy-dark: var(--brand-dark-subtle);
  --navy-deep: var(--brand-dark-deep);

  --accent: var(--brand-cyan);
  --accent-dark: var(--brand-blue-dark);
  --accent-gold: var(--brand-gold);

  --sky: var(--brand-slate-light);
  --sky-2: #E2E8F0;

  --ink: #0F172A;
  --body: #334155;
  --muted: #64748B;
  --border: #CBD5E1;
  --white: #FFFFFF;

  --font-head: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --topbar-h: 42px;
  --header-h: 82px;

  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 14px 34px rgba(0, 132, 199, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  background: var(--white);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
.h-display,
.h2,
.h3 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
}

.h-display {
  font-size: clamp(2.5rem, 5.4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.06;
}

.h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.h3 {
  font-size: 1.28rem;
  font-weight: 700;
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.sub {
  vertical-align: sub;
  font-size: 0.72em;
}

.mono {
  font-family: var(--font-mono);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(70px, 8.5vw, 110px);
}

.section--sky {
  background: var(--sky);
}

.section--navy {
  background: var(--navy);
}

.section--navy .h2,
.section--navy .h3 {
  color: #fff;
}

.section--navy p {
  color: #AFC3D8;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

.section-head--center .eyebrow::after {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-head .h2 {
  margin-top: 16px;
}

.section-head p {
  margin-top: 16px;
  font-size: 1.06rem;
}

.section-head--split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.section-head--split .head-text {
  max-width: 640px;
}

.section-head--split .head-side {
  max-width: 380px;
  font-size: 0.98rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 30px);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 30px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.btn .arrow {
  transition: transform 0.25s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
}

.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 132, 199, 0.35);
}

.btn--navy {
  background: var(--navy);
  color: #fff;
}

.btn--navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.btn--outline-navy:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.btn--sm {
  padding: 11px 20px;
  font-size: 0.86rem;
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-dark);
  color: #B8CBE0;
  font-size: 0.82rem;
  position: relative;
  z-index: 110;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--topbar-h);
  gap: 16px;
}

.topbar-center {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: #DCE8F5;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .topbar-center {
    display: none;
  }
}

.topbar a {
  color: #DCE8F5;
  font-weight: 500;
}

.topbar a:hover {
  color: var(--accent);
}

.topbar-group {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: none;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.22rem;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.brand-name small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  padding: 10px 14px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: 6px;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.main-nav a:hover {
  color: var(--accent);
}

.main-nav a.is-active {
  color: var(--accent);
}

.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
}

/* Home page transparent header when unscrolled (Desktop & Mobile) */
.site-header.site-header--home:not(.is-scrolled) {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.site-header.site-header--home:not(.is-scrolled) .main-nav>a,
.site-header.site-header--home:not(.is-scrolled) .nav-dropdown>a {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.site-header.site-header--home:not(.is-scrolled) .main-nav>a:hover,
.site-header.site-header--home:not(.is-scrolled) .nav-dropdown>a:hover {
  color: var(--accent);
}

.site-header.site-header--home:not(.is-scrolled) .main-nav a.is-active {
  color: #ffffff;
}

.site-header.site-header--home:not(.is-scrolled) .nav-chevron {
  stroke: #ffffff;
}

/* Mobile Toggle styling on Home Transparent Header */
.site-header.site-header--home:not(.is-scrolled) .nav-toggle {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}

.site-header.site-header--home:not(.is-scrolled) .nav-toggle span,
.site-header.site-header--home:not(.is-scrolled) .nav-toggle span::before,
.site-header.site-header--home:not(.is-scrolled) .nav-toggle span::after {
  background: #ffffff;
}

.site-header.site-header--home:not(.is-scrolled) .nav-toggle.is-open span {
  background: transparent !important;
}

.site-header.site-header--home:not(.is-scrolled) .nav-toggle.is-open span::before,
.site-header.site-header--home:not(.is-scrolled) .nav-toggle.is-open span::after {
  background: #ffffff !important;
}

.header-cta {
  flex: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: #f1f5f9;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  flex: none;
  padding: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  background: #e2e8f0;
  border-color: var(--accent);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--navy);
  transform: translateX(-50%);
  transition: transform 0.25s var(--ease), top 0.25s var(--ease), background-color 0.25s ease;
}

.nav-toggle span {
  top: 50%;
  margin-top: -1.25px;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-toggle.is-open span {
  background: transparent !important;
}

.nav-toggle.is-open span::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
  background: var(--navy) !important;
}

.nav-toggle.is-open span::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
  background: var(--navy) !important;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--topbar-h));
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.78) 42%, rgba(15, 23, 42, 0.38) 75%, rgba(15, 23, 42, 0.25) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  padding-block: clamp(45px, 9vw, 130px);
  max-width: 700px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 132, 199, 0.16);
  border: 1px solid rgba(0, 132, 199, 0.5);
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: clamp(0.7rem, 1.8vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: clamp(14px, 2.5vw, 24px);
}

.hero-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.85rem, 5.2vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.12;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero .lede {
  color: #C9D9EA;
  margin-top: clamp(12px, 2vw, 22px);
  font-size: clamp(0.92rem, 2vw, 1.15rem);
  line-height: 1.6;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(20px, 3vw, 36px);
}

.hero-products {
  margin-top: clamp(24px, 3.5vw, 42px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: clamp(0.74rem, 1.6vw, 0.8rem);
  color: #9FB6CC;
}

.hero-products b {
  color: #fff;
  font-weight: 500;
}

.hero-products span+span::before {
  content: "·";
  margin-right: 12px;
  color: var(--accent);
}

/* Hero stats (unboxed, clean modern layout) */
.hero-stats-wrap {
  position: relative;
  margin-top: 0;
  padding: 44px 0 16px;
  z-index: 2;
}

.hero-stats {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 36px);
  overflow: visible;
}

.hstat {
  padding: 12px 20px;
  border-left: 2px solid rgba(0, 132, 199, 0.25);
  position: relative;
  transition: transform 0.25s var(--ease);
}

.hstat:first-child {
  border-left: 2px solid rgba(0, 132, 199, 0.25);
}

.hstat::before {
  display: none;
}

.hstat:hover {
  transform: translateY(-2px);
}

.hstat-value {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.hstat-value sup {
  font-size: 0.5em;
  color: var(--accent);
  font-weight: 700;
}

.hstat-label {
  margin-top: 10px;
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- About split (image + content) ---------- */
.media-frame {
  position: relative;
}

.media-frame img {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.media-frame--tall img {
  aspect-ratio: 4 / 4.6;
}

.media-frame--wide img {
  aspect-ratio: 4 / 3;
}

.media-badge {
  position: absolute;
  bottom: 26px;
  left: -22px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  max-width: 240px;
}

.media-badge .big {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.media-badge .txt {
  margin-top: 8px;
  font-size: 0.88rem;
  color: #C9D9EA;
  line-height: 1.5;
}

.media-accent-bar {
  position: absolute;
  top: -18px;
  right: 26px;
  width: 90px;
  height: 8px;
  background: var(--accent);
  border-radius: 4px;
}

.content-block .eyebrow {
  margin-bottom: 14px;
}

.content-block .h2 {
  margin-bottom: 20px;
}

.content-block p+p {
  margin-top: 1em;
}

.check-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.96rem;
  font-family: var(--font-head);
}

.check-list .tick {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 132, 199, 0.14);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.check-list .tick svg {
  width: 12px;
  height: 12px;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
  align-items: center;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
  transition: color 0.2s;
}

.link-more:hover {
  color: var(--accent);
}

.link-more .arrow {
  transition: transform 0.25s var(--ease);
}

.link-more:hover .arrow {
  transform: translateX(4px);
}

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 30px);
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media--fitted {
  height: 220px;
  background: #ffffff;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
  transition: transform 0.5s var(--ease);
}

.product-media--fitted img {
  object-fit: contain;
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-formula {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 31, 56, 0.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  padding: 7px 12px;
  border-radius: 5px;
  border-left: 3px solid var(--accent);
}

.product-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body h3 {
  font-size: 1.18rem;
}

.product-cas {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.03em;
}

.product-body p {
  margin-top: 12px;
  font-size: 0.93rem;
  flex: 1;
}

.product-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}

.product-link .arrow {
  transition: transform 0.25s var(--ease);
}

.product-card:hover .product-link .arrow {
  transform: translateX(4px);
}

/* ---------- Why us (navy) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 26px);
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: clamp(24px, 2.6vw, 34px);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-5px);
  border-color: rgba(0, 132, 199, 0.5);
}

.why-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(0, 132, 199, 0.15);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.why-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.why-card h3 {
  color: #fff;
  font-size: 1.14rem;
}

.why-card p {
  margin-top: 10px;
  font-size: 0.92rem;
  color: #AFC3D8;
}

.why-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #5F7B97;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 14px;
}

/* ---------- Industries ---------- */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 26px);
}

.ind-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.ind-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ind-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.ind-card:hover img {
  transform: scale(1.07);
}

.ind-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 31, 56, 0.92) 0%, rgba(7, 31, 56, 0.35) 55%, rgba(7, 31, 56, 0.05) 100%);
}

.ind-content {
  position: relative;
  z-index: 2;
  padding: 22px;
  color: #fff;
}

.ind-content h3 {
  color: #fff;
  font-size: 1.16rem;
}

.ind-content p {
  margin-top: 8px;
  font-size: 0.86rem;
  color: #C9D9EA;
  line-height: 1.55;
}

.ind-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold);
  padding: 5px 10px;
  border: 1px solid rgba(0, 132, 199, 0.55);
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.4);
}

/* ---------- Feature rows (alternating image/text) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.feature-row+.feature-row {
  margin-top: clamp(56px, 8vw, 100px);
}

.feature-row--flip .feature-media {
  order: 2;
}

.feature-media {
  position: relative;
}

.feature-media img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.feature-media .media-accent-bar {
  top: auto;
  bottom: -14px;
  right: 30px;
}

.feature-list {
  margin-top: 24px;
}

.feature-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.feature-list li:last-child {
  border-bottom: 0;
}

.feature-list .f-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--sky-2);
  display: grid;
  place-items: center;
}

.feature-list .f-icon svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
}

.feature-list strong {
  display: block;
  font-family: var(--font-head);
  color: var(--ink);
  font-size: 1rem;
}

.feature-list span {
  font-size: 0.9rem;
}

/* ---------- Quality badges ---------- */
.badge-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.q-badge {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.q-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.q-badge .q-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--sky-2);
  display: grid;
  place-items: center;
}

.q-badge .q-icon svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
}

.q-badge strong {
  font-family: var(--font-head);
  color: var(--ink);
  display: block;
  font-size: 1rem;
}

.q-badge span {
  font-size: 0.84rem;
  display: block;
  margin-top: 6px;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 26px);
  counter-reset: step;
}

.grid-3.steps {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4.steps {
  grid-template-columns: repeat(4, 1fr);
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--sky-2);
  line-height: 1;
}

.step-card .s-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 132, 199, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.step-card .s-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.step-card h3 {
  font-size: 1.08rem;
}

.step-card p {
  margin-top: 9px;
  font-size: 0.9rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 840px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
}

.faq-item[open],
.faq-item.is-open,
.faq-item:has(.faq-question[aria-expanded="true"]),
.faq-item:has(.faq-answer.is-open) {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  background: var(--sky);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--ink);
  background: transparent;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item .q-mark {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sky-2);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 1.15rem;
  transition: transform 0.3s var(--ease), background 0.25s, color 0.25s;
}

.faq-item[open] .q-mark {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

/* Button-based accordion for product detail pages */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px 26px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s, background-color 0.2s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question[aria-expanded="true"] {
  color: var(--navy);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--muted);
  fill: none;
  transition: transform 0.3s var(--ease), stroke 0.25s;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
  stroke: var(--accent);
}

.faq-answer {
  display: none;
  width: 100%;
  max-width: 100%;
  padding: 0 26px 24px;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--body);
  background: transparent;
}

details.faq-item[open] .faq-answer,
.faq-answer.is-open {
  display: block;
}

.faq-answer a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.faq-answer a:hover {
  border-color: var(--accent);
}


/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.cta-band img.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(15, 23, 42, 0.95) 20%, rgba(27, 37, 51, 0.72) 60%, rgba(27, 37, 51, 0.35));
}

.cta-inner {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 7vw, 80px) clamp(28px, 5vw, 70px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.cta-inner .h2 {
  color: #fff;
  max-width: 22ch;
}

.cta-inner p {
  color: #C9D9EA;
  margin-top: 14px;
  max-width: 52ch;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Page hero (inner) ---------- */
.page-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.page-hero .hero-bg::after {
  background: linear-gradient(100deg, rgba(7, 31, 56, 0.95) 0%, rgba(7, 31, 56, 0.8) 55%, rgba(7, 31, 56, 0.45) 100%);
}

.page-hero-content {
  position: relative;
  padding-block: clamp(76px, 10vw, 120px);
  max-width: 760px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 4.6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-hero .lede {
  color: #C9D9EA;
  margin-top: 18px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: #9FB6CC;
}

.breadcrumb a {
  color: #C9D9EA;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  color: var(--accent);
}

.breadcrumb [aria-current] {
  color: #fff;
}

/* ---------- Product detail (products page) ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 70px);
  padding-block: clamp(44px, 6vw, 72px);
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.product-detail:last-child {
  border-bottom: 0;
}

.product-detail--flip .pd-media {
  order: 2;
}

.pd-media {
  position: relative;
  background: #f1f5f9;
  border-radius: var(--radius);
  overflow: hidden;
}

.pd-media img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f1f5f9;
  box-shadow: var(--shadow-md);
}

.pd-media .product-formula {
  top: 16px;
  left: 16px;
  font-size: 0.95rem;
  padding: 9px 15px;
}

.pd-head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pd-head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.pd-cas {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

.pd-body>p {
  margin-top: 16px;
  font-size: 0.99rem;
}

.pd-apps {
  margin-top: 22px;
}

.pd-apps h4,
.spec-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-apps h4::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.app-tag {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--sky);
  border: 1px solid var(--border);
  padding: 7px 13px;
  border-radius: 999px;
}

.spec-table {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-table table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 12px 18px;
  font-size: 0.88rem;
}

.spec-table th {
  width: 42%;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--muted);
  background: var(--sky);
  border-right: 1px solid var(--border);
}

.spec-table td {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink);
}

.spec-table tr+tr th,
.spec-table tr+tr td {
  border-top: 1px solid var(--border);
}

.pd-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* ---------- Equipment table ---------- */
.equip-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.equip-table caption {
  text-align: left;
  padding: 0 0 16px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.1rem;
}

.equip-table th,
.equip-table td {
  text-align: left;
  padding: 16px 22px;
  font-size: 0.94rem;
  vertical-align: top;
}

.equip-table thead th {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.equip-table tbody tr+tr td {
  border-top: 1px solid var(--border);
}

.equip-table tbody tr:hover td {
  background: var(--sky);
}

.equip-table td:first-child {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow-sm);
}

.form-card .h3 {
  margin-bottom: 6px;
}

.form-card>p {
  font-size: 0.92rem;
  margin-bottom: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--ink);
  margin-bottom: 7px;
}

.form-field label i {
  color: var(--accent);
  font-style: normal;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--sky);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 132, 199, 0.14);
}

.form-status {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
}

/* ---- Career Form Custom Styles ---- */
.form-section-divider {
  margin: 32px 0 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}

.form-section-divider:first-of-type {
  margin-top: 10px;
}

.form-section-title {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.form-section-title .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 132, 199, 0.12);
  color: var(--accent);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 700;
}

.file-upload-wrap {
  position: relative;
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  padding: 16px 20px;
  transition: all 0.2s ease;
}

.file-upload-wrap:hover,
.file-upload-wrap:focus-within {
  border-color: var(--accent);
  background: #f0f9ff;
}

.file-upload-wrap input[type="file"] {
  width: 100%;
  font-size: 0.9rem;
  color: #475569;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.file-upload-hint {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 6px;
  display: block;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  margin: 20px 0 24px;
}

.form-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 30px;
  color: #fff;
}

.info-card h3 {
  color: #fff;
  margin-bottom: 18px;
}

.info-line {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: flex-start;
}

.info-line:last-child {
  border-bottom: 0;
}

.info-line svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 3px;
}

.info-line strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8FA9C4;
  margin-bottom: 3px;
}

.info-line a,
.info-line span {
  color: #fff;
  font-size: 0.97rem;
}

.info-line a:hover {
  color: var(--accent);
}

.hours-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 30px;
}

.hours-card h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.hours-card table {
  width: 100%;
  border-collapse: collapse;
}

.hours-card td {
  padding: 8px 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--border);
}

.hours-card tr:last-child td {
  border-bottom: 0;
}

.hours-card td:last-child {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink);
}

.map-wrap {
  margin-top: clamp(40px, 6vw, 64px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
  filter: saturate(0.85);
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background-color: #06101E;
  background-image: linear-gradient(180deg, rgba(6, 16, 30, 0.50) 0%, rgba(6, 16, 30, 0.65) 100%), url("../assets/img/wordmap.jpeg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #DCE8F5;
}

.footer-cta-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(52px, 6vw, 76px);
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand .brand-name small {
  color: #6E87A3;
}

.footer-brand p {
  margin-top: 20px;
  font-size: 0.92rem;
  max-width: 36ch;
}

.footer-col h3 {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 0.94rem;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-col address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer-col address a {
  color: #DCE8F5;
  font-weight: 500;
  white-space: nowrap;
}

.footer-col address a:hover {
  color: var(--accent);
}

.footer-contact-line {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-contact-line svg {
  flex: none;
  width: 16px;
  height: 16px;
  color: var(--accent);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.footer-bottom .mono {
  font-size: 0.72rem;
  color: #5F7B97;
}

.footer-disclaimer {
  padding-bottom: 22px;
  font-size: 0.74rem;
  color: #4E6480;
  line-height: 1.6;
}

/* ---------- Native View Transitions & Smooth Page Transitions ---------- */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: 160ms cubic-bezier(0.22, 1, 0.36, 1) both page-fade-out;
}

::view-transition-new(root) {
  animation: 220ms cubic-bezier(0.22, 1, 0.36, 1) both page-fade-in;
}

@keyframes page-fade-out {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.995); }
}

@keyframes page-fade-in {
  from { opacity: 0; transform: scale(0.995); }
  to { opacity: 1; transform: scale(1); }
}

main#main {
  transition: opacity 0.18s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
}

main#main.is-transitioning {
  opacity: 0;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.06s;
}

.reveal-delay-2 {
  transition-delay: 0.12s;
}

.reveal-delay-3 {
  transition-delay: 0.18s;
}

/* ---------- Utility ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
  font-size: 0.9rem;
  border-radius: 0 0 6px 0;
}

.skip-link:focus {
  left: 0;
}

.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {

  .grid-4,
  .why-grid,
  .ind-grid,
  .badge-strip,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hstat:nth-child(3) {
    border-left: 0;
  }

  .hstat:nth-child(n+3) {
    border-top: 1px solid var(--border);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail--flip .pd-media {
    order: 0;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row--flip .feature-media {
    order: 0;
  }
}

@media (max-width: 991px) {
  .topbar-inner {
    justify-content: space-between;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
    flex-direction: column;
    align-items: stretch;
    padding: 14px var(--gutter) 24px;
    gap: 2px;
    display: none;
    max-height: calc(100vh - var(--header-h) - 40px);
    overflow-y: auto;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 10px;
    font-size: 1.02rem;
    border-bottom: 1px solid var(--sky-2);
    border-radius: 6px;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a.is-active::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .media-badge {
    left: 16px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .grid-3,
  .product-grid,
  .grid-4,
  .why-grid,
  .ind-grid,
  .badge-strip,
  .steps,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hstat {
    border-left: 0;
  }

  .hstat:nth-child(n+2) {
    border-top: 1px solid var(--border);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ind-card {
    aspect-ratio: 16 / 10;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   INDIVIDUAL PRODUCT PAGE STYLES
   Used on: product-*.html pages
   ============================================================ */

/* --- Chem badge strip (CAS / UN / HS codes) --- */
.chem-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 24px;
}

.chem-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--sky);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink);
  font-weight: 500;
}

.chem-badge b {
  color: var(--navy);
  font-weight: 700;
}

.chem-badge--un {
  background: #FFF7ED;
  border-color: #FBD8B0;
  color: #7A3800;
}

.chem-badge--cas {
  background: #EEF4FF;
  border-color: #C7D9FF;
  color: #1A3A7A;
}

.chem-badge--hs {
  background: #F0FAF3;
  border-color: #B9E5C6;
  color: #1A4A2A;
}

/* --- Product formula hero display --- */
.product-formula-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

/* --- Product intro two-column --- */
.product-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.product-intro-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: #f1f5f9;
}

.product-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f1f5f9;
}

.product-intro-media .formula-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 16px;
  background: rgba(11, 46, 79, 0.88);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 600;
}

/* --- Property / spec table (enhanced) --- */
.prop-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin-top: 16px;
}

.prop-table tr:nth-child(even) {
  background: var(--sky);
}

.prop-table th[scope="row"] {
  width: 38%;
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  padding: 10px 14px;
  font-size: 0.88rem;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.prop-table td {
  padding: 10px 14px;
  color: var(--body);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}

/* --- Application sector cards --- */
.app-sectors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.app-sector-card {
  padding: 22px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}

.app-sector-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.app-sector-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), #1A4A7A);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.app-sector-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
}

.app-sector-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.app-sector-card p {
  font-size: 0.87rem;
  line-height: 1.55;
  color: var(--body);
}

/* --- Safety notice banner --- */
.safety-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: #F0F9FF;
  border: 1px solid #B9E6FE;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  margin: 24px 0;
}

.safety-notice svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: #0284C7;
  fill: none;
  margin-top: 2px;
}

.safety-notice p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #0C4A6E;
}

.safety-notice strong {
  color: #0369A1;
}

/* --- Related products grid --- */
.related-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.related-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
  background: var(--white);
}

.related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.related-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f1f5f9;
}

.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f1f5f9;
  transition: transform 0.4s var(--ease);
}

.related-card:hover .related-card-img img {
  transform: scale(1.05);
}

.related-card-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-card-formula {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 6px;
}

.related-card-body h3 {
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.related-card-body p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}

.related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}

.related-card-link:hover {
  color: var(--accent);
}

/* --- Trust pillars (why source from us) --- */
.trust-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.trust-pillar {
  padding: 24px 20px;
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
}

.trust-pillar .pillar-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  background: rgba(0, 132, 199, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-pillar .pillar-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
}

.trust-pillar h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.trust-pillar p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

/* --- Packing options list --- */
.packing-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.packing-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--sky);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 500;
}

.packing-option svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
}

/* --- Responsive adjustments for product pages --- */
@media (max-width: 900px) {
  .product-intro-grid {
    grid-template-columns: 1fr;
  }

  .related-products {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .related-products {
    grid-template-columns: 1fr;
  }

  .app-sectors {
    grid-template-columns: 1fr;
  }

  .trust-pillars {
    grid-template-columns: 1fr 1fr;
  }
}


/* --- Product quick-nav strip --- */
.product-quicknav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.product-quicknav a {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
}

.product-quicknav a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ============================================================
   NAV DROPDOWN & PRODUCT SLIDER
   ============================================================ */

/* --- Nav Dropdown --- */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown>a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-chevron {
  transition: transform 0.2s var(--ease);
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:hover {
  background: var(--sky);
  color: var(--navy);
}

.dropdown-header-link {
  font-weight: 700 !important;
  color: var(--navy) !important;
  background: var(--sky-2) !important;
}

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

@media (max-width: 991px) {
  .nav-dropdown {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 8px 16px;
    background: transparent;
    display: none;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .dropdown-menu a {
    font-size: 0.92rem;
    padding: 8px 12px;
    border-bottom: none;
    color: var(--body);
  }

  .dropdown-menu a:hover {
    color: var(--accent);
    background: var(--sky);
  }
}


/* --- Product Slider & Controls --- */
.slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.slider-btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: scale(1.05);
}

.slider-btn:active {
  transform: scale(0.95);
}

.product-slider-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 24px;
}

.product-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0 16px;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-slider-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
}

@media (max-width: 900px) {
  .product-slider-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .product-slider-card {
    flex: 0 0 100%;
  }
}

/* ============================================================
   ISO Hexagonal Certification Badges & Screen Height Section
   ============================================================ */

#certifications {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding-block: clamp(20px, 3.5vh, 44px);
  box-sizing: border-box;
}

#certifications .container {
  width: 100%;
}

#certifications .h2 {
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  margin-top: 6px;
  margin-bottom: 10px;
  line-height: 1.15;
}

#certifications p {
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  line-height: 1.5;
  margin-bottom: 8px;
}

#certifications .feature-list {
  margin-top: 14px;
  gap: 10px;
}

#certifications .feature-list li {
  gap: 12px;
  margin-bottom: 6px;
}

#certifications .feature-list {
  margin-top: 14px;
  gap: 10px;
}

#certifications .feature-list li {
  gap: 12px;
  margin-bottom: 6px;
}

#certifications .feature-list .f-icon {
  width: 32px;
  height: 32px;
  flex: none;
}

#certifications .feature-list strong {
  font-size: 0.9rem;
}

#certifications .feature-list span {
  font-size: 0.78rem;
  line-height: 1.35;
}

.iso-cert-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  width: 100%;
}

.iso-hex-row {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 22px);
  width: 100%;
}

.iso-hex-row--top {
  margin-bottom: clamp(-32px, -2.8vw, -26px);
  z-index: 2;
}

.iso-hex-row--bottom {
  z-index: 1;
}

.iso-hex-card {
  width: clamp(175px, 16vw, 215px);
  height: clamp(195px, 18vw, 240px);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
  position: relative;
  cursor: pointer;
}

.iso-hex-card:hover {
  transform: translateY(-6px) scale(1.04);
  filter: drop-shadow(0 16px 32px rgba(0, 132, 199, 0.5));
  z-index: 10;
}

.iso-hex-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, #0A58CA 0%, #004E89 55%, #002D52 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 10px;
  position: relative;
}

/* Subtle glossy top highlight */
.iso-hex-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.iso-hex-badge-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
  color: var(--brand-gold);
  opacity: 0.95;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.iso-hex-title {
  font-family: var(--font-head);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1;
}

.iso-hex-number {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 1.4vw, 1.45rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 3px 0 5px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.iso-hex-divider {
  width: 26px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  margin: 0 auto 5px;
  border-radius: 2px;
}

.iso-hex-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 0.75vw, 0.78rem);
  font-weight: 600;
  color: #DCE8F5;
  line-height: 1.25;
  max-width: 135px;
  text-align: center;
}

@media (max-width: 768px) {
  #certifications {
    min-height: auto;
    padding-block: 40px;
  }

  .iso-hex-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .iso-hex-row--top {
    margin-bottom: 0;
  }

  .iso-hex-card {
    width: 200px;
    height: 225px;
  }
}

/* ---------- Footer ISO Certification Badges ---------- */
.footer-logo-wrap {
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  display: inline-block;
}

.footer-iso-cert {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
}

.footer-iso-row {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-iso-row--top {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: -15px;
  z-index: 2;
}

.footer-iso-row--bottom {
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 1;
}

.footer-iso-card {
  width: 98px;
  height: 110px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
  position: relative;
  cursor: default;
}

.footer-iso-card:hover {
  transform: translateY(-3px) scale(1.05);
  filter: drop-shadow(0 8px 18px rgba(0, 132, 199, 0.5));
  z-index: 10;
}

.footer-iso-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, #0A58CA 0%, #004E89 55%, #002D52 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 6px;
  position: relative;
}

.footer-iso-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.footer-iso-icon {
  width: 12px;
  height: 12px;
  color: var(--brand-gold, #F59E0B);
  margin-bottom: 2px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.footer-iso-title {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1;
}

.footer-iso-num {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 2px 0 3px;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.footer-iso-div {
  width: 16px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 auto 3px;
  border-radius: 1px;
}

.footer-iso-sub {
  font-family: var(--font-body);
  font-size: 0.48rem;
  font-weight: 600;
  color: #DCE8F5;
  line-height: 1.15;
  max-width: 80px;
  text-align: center;
}

@media (max-width: 400px) {
  .footer-iso-card {
    width: 90px;
    height: 102px;
  }
}

/* ============================================================
   INDUSTRIES SHOWCASE SECTION (Dynamic Hover Image Switcher)
   ============================================================ */
.industry-showcase {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  border: 2px solid #0084C7;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  background: #000000;
  margin-top: 10px;
}

.industry-screens {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.industry-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.05);
}

.industry-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.industry-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-pills-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.industry-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 22px;
  background: rgba(10, 37, 64, 0.82);
  border: 1.5px solid rgba(0, 132, 199, 0.45);
  border-radius: 999px;
  color: #FFFFFF;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  text-align: left;
  user-select: none;
}

.industry-pill .pill-chevron {
  width: 15px;
  height: 15px;
  stroke: #38bdf8;
  transition: transform 0.25s ease, stroke 0.25s ease;
  flex-shrink: 0;
}

.industry-pill:hover,
.industry-pill.is-active {
  background: linear-gradient(135deg, rgba(0, 132, 199, 0.95), rgba(10, 37, 64, 0.98));
  border-color: #38bdf8;
  box-shadow: 0 6px 24px rgba(0, 132, 199, 0.45), 0 0 0 1px #38bdf8;
  transform: translateY(-2px);
  color: #FFFFFF;
}

.industry-pill:hover .pill-chevron,
.industry-pill.is-active .pill-chevron {
  stroke: #FFFFFF;
  transform: translateX(3px);
}

@media (max-width: 1100px) {
  .industry-pills-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .industry-showcase {
    min-height: 420px;
    padding: 20px 16px;
    border-radius: 20px;
  }
  .industry-pills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .industry-pill {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .industry-pills-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

