/* ============================================================
   ALIS Valves - Main Stylesheet
   All colours and spacing use CSS custom properties
============================================================ */

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

/* ---- CSS Variables ---- */
:root {
  --green:        #0c5c3a; /* Sophisticated Forest Emerald */
  --green-dark:   #073b24; /* Rich Dark Green for hover */
  --green-light:  #128250; /* Vibrant Accent Mint Green */
  --green-bg:     #eff6f2; /* Soft Accent Background tint */
  --white:        #ffffff;
  --off-white:    #f7faf8; /* Softer light grey background */
  --text-dark:    #0f1714; /* Deep charcoal/almost black */
  --text-mid:     #3a4a43; /* Medium grey/green tint body text */
  --text-light:   #687a71; /* Muted text */
  --border:       rgba(0, 0, 0, 0.06); /* Clean subtle border */
  --font-main:    'Barlow', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --max-w:        1320px;
  --page-px:      48px;
  --radius:       8px; /* Slightly rounder, modern corners */
  --transition:   .25s cubic-bezier(0.4, 0, 0.2, 1); /* Softer micro-animation transitions */
  --shadow-sm:    none;
  --shadow-md:    none;
  --shadow-lg:    none;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.75;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; }
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-px);
}
.container--narrow { max-width: 860px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  font-family: var(--font-main); font-size: 13px; font-weight: 700;
  letter-spacing: .06em; border-radius: 4px; cursor: pointer;
  border: 1.5px solid transparent;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--sm { padding: 8px 18px; font-size: 12px; }
.btn-primary     { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-outline-g   { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-g:hover { background: var(--green); color: var(--white); }
.btn-outline-w   { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.7); }
.btn-outline-w:hover { background: var(--white); color: var(--green); border-color: var(--white); }

/* ---- Section helpers ---- */
.section { padding: clamp(64px, 8vw, 96px) 0; }
.section--gray  { background: var(--off-white); }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-main); font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800; line-height: 1.2; margin-bottom: 16px; color: var(--text-dark);
  letter-spacing: -0.025em;
}
.section-subtitle {
  font-size: 15px; color: var(--text-light);
  max-width: 640px; margin-bottom: 56px;
  line-height: 1.6;
}

/* ============================================================
   SITE HEADER
============================================================ */
.site-header {
  position: relative; z-index: 1000;
  background: var(--white);
  box-shadow: none;
}

/* Row 1 */
.header-row1 { border-bottom: none; }
.header-row1__inner {
  display: flex; align-items: center;
  height: 88px; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--page-px);
}

/* Logo */
.logo {
  display: inline-flex; flex-direction: column; gap: 3px;
  text-decoration: none; flex-shrink: 0; line-height: 1;
}
.logo__img { height: 70px; width: auto; max-width: 220px; object-fit: contain; }
.logo__main {
  font-family: var(--font-main); font-size: 38px; font-weight: 800;
  color: var(--green); letter-spacing: -0.02em; line-height: 1;
}
.logo__sub {
  font-size: 10px; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--green-light); padding-left: 2px;
}

/* Primary Nav */
.primary-nav { display: flex; align-items: center; justify-content: flex-end; margin-left: auto; }
.primary-nav__list { display: flex; align-items: center; gap: 32px; }
.primary-nav__item { position: relative; }
.primary-nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0; height: 88px;
  font-size: 13px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--text-dark);
  white-space: nowrap; border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.primary-nav__link svg.nav-chevron {
  width: 10px; height: 10px; stroke: currentColor; fill: none;
  stroke-width: 3; transition: transform .2s; flex-shrink: 0;
}
.primary-nav__item:hover .primary-nav__link,
.primary-nav__item.is-active .primary-nav__link { color: var(--green); border-bottom-color: transparent; }
.primary-nav__item:hover .primary-nav__link svg.nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.primary-dropdown {
  display: none; position: absolute; top: 88px; right: 0; left: auto;
  min-width: 220px; background: var(--white);
  border: 1px solid var(--border); border-top: 3px solid var(--green);
  box-shadow: var(--shadow-lg); border-radius: 0 0 var(--radius) var(--radius);
  padding: 8px 0; z-index: 900;
  animation: dropFade .2s ease;
}
.primary-nav__item:hover .primary-dropdown { display: block; }
.primary-dropdown__link {
  display: block; padding: 10px 20px; font-size: 13px;
  color: var(--text-mid);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.primary-dropdown__link:hover { background: var(--green-bg); color: var(--green); padding-left: 26px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; background: none;
  border: none; cursor: pointer; margin-left: auto; padding: 6px;
}
.hamburger__bar {
  display: block; width: 100%; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.is-open .hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(15,23,20,.4); z-index: 998; opacity: 0;
  transition: opacity .25s;
}
.mobile-nav-overlay.is-visible { display: block; opacity: 1; }

/* Row 2 - Sub-nav (Mega Menu Style stacked vertical) */
.header-row2 {
  border-top: none; border-bottom: none; background: var(--white);
  margin-bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.header-row2__inner {
  display: flex; justify-content: flex-end;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--page-px);
}
.subnav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  align-items: stretch;
  gap: 20px;
}
.subnav-col {
  position: relative;
  min-height: auto;
  padding: 20px 16px; border-left: none;
  display: flex; flex-direction: column; gap: 10px;
  justify-content: flex-start;
}
.subnav-col + .subnav-col::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}
.subnav-col:first-child { border-left: none; padding-left: 0; }
.subnav-col:last-child  { padding-right: 0; }
.subnav-col__label {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-light); line-height: 1.4; margin-bottom: 4px;
  max-width: 100%;
}
.subnav-col__links { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; row-gap: 8px; }
.subnav-col__item  { position: relative; }
.subnav-col__links > li { position: relative; }
.subnav-col__link,
.subnav-col__links > li > a {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 0; font-size: 12px; font-weight: 700;
  letter-spacing: .04em;
  color: var(--text-dark); white-space: nowrap;
  line-height: 1.25;
  text-transform: uppercase;
  transition: color var(--transition);
}
.subnav-col__links > li.menu-item-has-children > a::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  margin-left: 5px;
  opacity: .7;
}
.subnav-col__link svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 3; transition: transform .15s; }
.subnav-col__item:hover .subnav-col__link,
.subnav-col__links > li > a:hover {
  color: var(--green);
}
.subnav-col__item:hover .subnav-col__link svg { transform: rotate(180deg); }
.subnav-dropdown,
.subnav-col__links > li > .sub-menu {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  min-width: 200px; background: var(--white);
  border: 1px solid var(--border); border-top: 3px solid var(--green);
  box-shadow: var(--shadow-md); border-radius: 0 0 var(--radius) var(--radius);
  padding: 8px 0; z-index: 800; animation: dropFade .15s ease;
}
.subnav-col__item:hover .subnav-dropdown,
.subnav-col__links > li:hover > .sub-menu { display: block; }
.subnav-dropdown__link,
.subnav-col__links > li > .sub-menu a { display: block; padding: 8px 18px; font-size: 12px; color: var(--text-mid); transition: background .12s, color .12s; }
.subnav-dropdown__link:hover,
.subnav-col__links > li > .sub-menu a:hover { background: var(--green-bg); color: var(--green); }

/* Right-align the last subnav column (Applications) for right edge alignment */
.subnav-col:last-child {
  align-items: flex-end;
  text-align: right;
}
.subnav-col:last-child .subnav-col__links {
  justify-content: flex-end;
}
.subnav-col:last-child .subnav-dropdown,
.subnav-col:last-child .subnav-col__links > li > .sub-menu {
  left: auto;
  right: 0;
}

@keyframes dropFade {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO SLIDER
============================================================ */
.hero-wrapper {
  padding-top: 28px;
  padding-bottom: 0;
}
.hero {
  background: var(--white);
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.hero__box {
  position: relative;
  width: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius);
}
.hero__slides { position: relative; width: 100%; }
.hero__slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  min-height: 480px;
  background: var(--white);
}
.hero__slide.active { display: grid; }
.hero__bg {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--white);
}
.hero__overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.hero__content {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  padding: 64px 48px 64px var(--page-px);
}

.hero__content .btn-outline-w {
  color: var(--green);
  border-color: var(--green);
}
.hero__content .btn-outline-w:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.hero__tag {
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--green); margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-main);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800; line-height: 1.1; color: var(--text-dark);
  max-width: 620px; margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.hero__subtitle {
  font-size: clamp(16px, 1.5vw, 20px); color: var(--text-mid); max-width: 580px;
  margin-bottom: 36px; line-height: 1.6;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.hero__controls {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 18px; z-index: 10;
}
.hero__arrow {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.95); border: 1px solid rgba(12,92,58,.2);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.hero__arrow:hover { background: var(--green); border-color: var(--green); transform: scale(1.05); }
.hero__arrow svg { width: 15px; height: 15px; stroke: var(--green); fill: none; stroke-width: 2.5; }
.hero__arrow:hover svg { stroke: var(--white); }
.hero__dots { display: flex; gap: 10px; align-items: center; }
.hero__dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(12,92,58,.2);
  border: none; cursor: pointer; transition: background .25s, transform .25s;
}
.hero__dot.active { background: var(--green); transform: scale(1.35); }

/* ============================================================
   PAGE HERO BANNER — Creative inner-page header
============================================================ */
.page-hero {
  position: relative;
  background: var(--green);
  background-size: cover;
  background-position: center;
  padding: 0;
  overflow: hidden;
  /* Shimmer line at the bottom */
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Dark overlay for pages with background images */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,28,18,.88) 0%, rgba(10,52,30,.72) 100%);
  z-index: 0;
}

/* Geometric SVG dot-pattern overlay */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  padding-top: 48px;
  padding-bottom: 52px;
}

/* Breadcrumbs inside hero */
.page-hero__inner .breadcrumbs {
  margin-bottom: 20px;
}
.page-hero__inner .breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0; margin: 0;
}
.page-hero__inner .breadcrumbs__item {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.page-hero__inner .breadcrumbs__item a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
}
.page-hero__inner .breadcrumbs__item a:hover { color: #fff; }
.page-hero__inner .breadcrumbs__item span { color: var(--green-light); }
/* Slash divider */
.page-hero__inner .breadcrumbs__item + .breadcrumbs__item::before {
  content: '/';
  margin: 0 8px;
  color: rgba(255,255,255,.3);
  font-weight: 300;
}

/* Content wrapper */
.page-hero__content {}

/* Title */
.page-hero__title {
  font-family: var(--font-main);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 14px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-transform: capitalize;
}

/* Divider accent between title and subtitle */
.page-hero__title::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), transparent);
  margin-top: 14px;
  border-radius: 2px;
}

/* Subtitle — sits below the divider line */
.page-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  max-width: 680px;
  line-height: 1.7;
  margin: 16px 0 0;
  font-weight: 400;
}

/* Product-cat variant (no bg image) — keep solid green */
.page-hero--product-cat {
  background: var(--green);
}
.page-hero--product-cat::before {
  background: linear-gradient(135deg, rgba(5,22,12,.75) 0%, rgba(12,50,28,.6) 100%);
}

/* Fade-in animation */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-hero__inner .breadcrumbs { animation: heroFadeUp .5s ease both; }
.page-hero__title               { animation: heroFadeUp .55s .08s ease both; }
.page-hero__sub                 { animation: heroFadeUp .55s .16s ease both; }

/* Generic page body */
.page-content__body { max-width: 980px; font-size: 15.5px; line-height: 1.85; color: var(--text-mid); }
.page-content__body h2, .page-content__body h3 { font-family: var(--font-main); font-weight: 700; color: var(--text-dark); margin: 28px 0 14px; }
.page-content__body p { margin-bottom: 18px; }
.page-content__body ul, .page-content__body ol { margin: 0 0 18px 22px; }
.page-content__body ul { list-style: disc; }
.page-content__body ol { list-style: decimal; }
.page-content__body blockquote {
  margin: 24px 0; padding: 18px 22px;
  border-left: 4px solid var(--green); background: var(--off-white);
  color: var(--text-dark); font-weight: 500;
}

/* ============================================================
   WHO WE ARE
============================================================ */
.who__intro-text { font-size: 15.5px; color: var(--text-mid); max-width: 100%; line-height: 1.8; margin-bottom: 56px; }
.who__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: start; }
/* Each box is now a single unified flat card — image on top, content below */
.who__box {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.who__box:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(12, 92, 58, 0.15);
  transform: translateY(-4px);
}
.who__image {
  width: 100%;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.who__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.who__box:hover .who__img { transform: scale(1.05); }
.who__card {
  padding: 26px;
  flex: 1;
}
.who__card-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
}
.who__card-title { font-family: var(--font-main); font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); line-height: 1.4; }
.who__card p { font-size: 13.5px; color: var(--text-light); line-height: 1.65; }

/* About page */
.about-intro { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: 44px; align-items: center; }
.about-intro__body { font-size: 15px; color: var(--text-mid); line-height: 1.85; }
.about-intro__body p { margin-bottom: 18px; }
.about-intro__image { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(0, 0, 0, 0.08); min-height: 320px; }
.about-intro__image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   PRODUCT RANGE — Matches Expertise Section layout
============================================================ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(12, 92, 58, 0.15);
}

.product-card__img-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--off-white);
  position: relative;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img {
  transform: scale(1.05);
}

.product-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-bg) 0%, #ffffff 100%);
}

.product-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.product-card__meta {
  margin-bottom: 2px;
}
.product-card__count {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card__name {
  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--text-dark);
}

.product-card__desc {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 12px;
}

.product-card__link {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green);
  border: 1.5px solid var(--green);
  border-radius: 4px;
  padding: 8px 18px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.product-card__link:hover {
  background: var(--green);
  color: var(--white);
}
.product-card__link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
  transition: transform 0.2s ease;
}
.product-card__link:hover svg {
  transform: translateX(2px);
}

/* Product archive grid (3-col separated) */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px; background: transparent;
  border: none; border-radius: 0; overflow: visible;
}
.product-card[role="listitem"] {
  background: var(--white); padding: 32px 24px 24px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px; border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.06); transform: none;
  min-height: 100%; box-shadow: var(--shadow-sm);
}
.product-card[role="listitem"]:hover { background: #fdfefe; box-shadow: var(--shadow-md); border-color: var(--green); transform: translateY(-4px); }
.product-card__img-wrap {
  width: 100%; height: 220px; overflow: hidden; border-radius: var(--radius);
  background:
    radial-gradient(circle at 22% 18%, rgba(12,92,58,.12), transparent 30%),
    linear-gradient(135deg, #eff6ef 0%, #ffffff 100%);
  display: flex; align-items: center; justify-content: center; padding: 12px;
}
.product-card__img-wrap a {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.product-card__img-wrap img,
.product-card[role="listitem"] .product-card__img {
  width: auto; height: auto; max-width: 100%; max-height: 100%;
  object-fit: contain; filter: drop-shadow(0 12px 22px rgba(15,23,20,.10));
}
.product-card__img-placeholder {
  display: block; width: 88px; height: 88px; border-radius: 20px;
  background:
    radial-gradient(circle at 35% 35%, rgba(12,92,58,.14), rgba(12,92,58,.05) 60%, transparent 61%),
    linear-gradient(135deg, rgba(12,92,58,.08), rgba(12,92,58,.02));
}
.product-card[role="listitem"] .product-card__body { width: 100%; padding: 0; }
.product-card__name a { color: var(--text-dark); }
.product-card__name a:hover { color: var(--green); }
.product-card[role="listitem"] .product-card__name { font-size: 20px; line-height: 1.25; margin-bottom: 8px; }
.product-card[role="listitem"] .product-card__desc {
  font-size: 13.5px; color: var(--text-light); line-height: 1.6;
  max-width: 260px; margin: 0 auto;
}
.product-card__actions { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   CORE CAPABILITIES
============================================================ */
.capabilities__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.capability-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--white); border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.capability-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(12, 92, 58, 0.15); }
.capability-card__img { width: 100%; height: 220px; overflow: hidden; }
.capability-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.capability-card:hover .capability-card__img img { transform: scale(1.05); }
.capability-card__body { padding: 26px; display: flex; flex-direction: column; gap: 8px; }
.capability-card__title { font-family: var(--font-main); font-size: 19px; font-weight: 700; margin-bottom: 0; color: var(--text-dark); }
.capability-card__desc { font-size: 13.5px; color: var(--text-light); line-height: 1.65; margin-bottom: 12px; }
.capability-card__link {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--green); border: 1.5px solid var(--green); border-radius: 4px;
  padding: 8px 18px; transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.capability-card__link:hover { background: var(--green); color: var(--white); }

/* ============================================================
   WHY CHOOSE ALIS
============================================================ */
.why { background: var(--off-white); }
.why__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why__images { position: relative; height: 380px; }
.why__img-main {
  position: absolute; left: 0; top: 0; width: 75%; height: 75%;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.why__img-main img { width: 100%; height: 100%; object-fit: cover; }
.why__img-accent {
  position: absolute; right: 0; bottom: 0; width: 52%; height: 52%;
  border-radius: var(--radius); overflow: hidden;
  border: 4px solid var(--white);
}
.why__img-accent img { width: 100%; height: 100%; object-fit: cover; }
.why__list { margin: 24px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.why__item { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--text-mid); }
.why__icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-bg); border: none;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.why__icon svg { width: 11px; height: 11px; stroke: var(--green); fill: none; stroke-width: 3; }

/* ============================================================
   KEY FIGURES
============================================================ */
.figures__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; background: transparent; border: none;
  border-radius: 0; overflow: visible;
}
.figure-item {
  background: var(--white); padding: 40px 30px; text-align: center;
  border-radius: var(--radius); border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.figure-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.figure-item__value {
  font-family: var(--font-main); font-size: clamp(38px, 4vw, 54px);
  font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.figure-item__label { font-size: 14px; font-weight: 500; color: var(--text-light); max-width: 200px; margin: 0 auto; line-height: 1.4; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { background: var(--off-white); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card {
  background: var(--white); border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius); padding: 32px; position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.testimonial-card__quote {
  font-size: 64px; line-height: 1; color: var(--green-light);
  opacity: .12; font-family: Georgia, serif; position: absolute; top: 12px; left: 24px;
}
.testimonial-card__text { font-size: 14.5px; color: var(--text-mid); line-height: 1.75; margin-top: 20px; margin-bottom: 24px; position: relative; z-index: 2; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--green-bg); }
.testimonial-card__avatar-img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__name { font-weight: 700; font-size: 14.5px; color: var(--text-dark); }
.testimonial-card__role { font-size: 12px; color: var(--text-light); }

/* ============================================================
   BLOG CARDS
============================================================ */
.blogs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card {
  background: var(--white); border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition); cursor: pointer;
}
.blog-card:hover { box-shadow: var(--shadow-md); border-color: rgba(12, 92, 58, 0.15); transform: translateY(-4px); }
.blog-card__img { width: 100%; height: 210px; overflow: hidden; }
.blog-card__img-tag { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card__img-tag { transform: scale(1.05); }
.blog-card__body { padding: 26px; }
.blog-card__date {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
}
.blog-card__title { font-family: var(--font-main); font-size: 18px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
.blog-card__title a { color: var(--text-dark); }
.blog-card__title a:hover { color: var(--green); }
.blog-card__excerpt { font-size: 13.5px; color: var(--text-light); line-height: 1.65; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  background: #06281d;
  padding: 80px var(--page-px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1), transparent 50%);
  pointer-events: none;
}
.cta-banner__title {
  font-family: var(--font-main); font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; color: var(--white); margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.cta-banner__sub { font-size: 16px; color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 36px; line-height: 1.6; }

/* ============================================================
   FOOTER INQUIRY SECTION (CTA green gradient background)
============================================================ */
.footer-inquiry {
  background: #06281d;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.footer-inquiry::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.08), transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(0,0,0,.1), transparent 50%);
  pointer-events: none;
}
.footer-inquiry__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.footer-inquiry__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
}
.footer-inquiry__title {
  font-family: var(--font-cond);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.footer-inquiry__sub {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 340px;
}
.footer-inquiry__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-inquiry__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,.85);
  list-style: none;
}
.footer-inquiry__features svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,.9);
  fill: none;
  flex-shrink: 0;
}
/* Form inside inquiry section — no extra box, transparent background */
.footer-inquiry__form .inquiry-form,
.footer-inquiry__form .alis-cf7-form {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}
.footer-inquiry__form .form-group label {
  color: rgba(255,255,255,.85);
  font-size: 15px;
}
.footer-inquiry__form .form-group input,
.footer-inquiry__form .form-group textarea,
.footer-inquiry__form .form-group select {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 16px;
}
.footer-inquiry__form .form-group input::placeholder,
.footer-inquiry__form .form-group textarea::placeholder {
  color: rgba(255,255,255,.45);
}
.footer-inquiry__form .form-group input:focus,
.footer-inquiry__form .form-group textarea:focus {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.18);
  box-shadow: 0 0 0 3px rgba(255,255,255,.1);
  outline: none;
}
.footer-inquiry__form .inquiry-submit .btn,
.footer-inquiry__form .btn {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.footer-inquiry__form .inquiry-submit .btn:hover,
.footer-inquiry__form .btn:hover {
  background: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.9);
}

/* ============================================================
   FOOTER
============================================================ */
.footer { background: #06281d; color: rgba(255,255,255,.75); padding: 80px 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--page-px) 64px;
}
.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.footer__contact-info li {
  list-style: none;
}
.footer__contact-info a {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: color var(--transition), padding-left var(--transition);
}
.footer__contact-info a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer__contact-info svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255,255,255,.8);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 4px;
}
.footer__contact-info span {
  line-height: 1.5;
}
.footer__logo-main { font-family: var(--font-main); font-size: 32px; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.footer__logo-sub  { font-size: 12px; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 16px; font-weight: 700; }
.footer__logo-img  { height: 44px; width: auto; margin-bottom: 16px; }
.footer__tagline   { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.75; max-width: 280px; margin-bottom: 24px; }
.footer__social    { display: flex; gap: 12px; }
.footer__social-link {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer__social-link svg { width: 16px; height: 16px; stroke: rgba(255,255,255,.9); fill: none; stroke-width: 2; }
.footer__social-link:hover { background: rgba(255,255,255,.3); border-color: rgba(255,255,255,.5); }
.footer__social-link:hover svg { stroke: white; }
.footer__col-title {
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 24px; padding-bottom: 8px;
  border-bottom: 2px solid rgba(255,255,255,.35); display: inline-block;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__link, .footer__link-item a {
  font-size: 16px; color: rgba(255,255,255,.7); transition: color var(--transition), padding-left var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer__link svg, .footer__link-item a svg { width: 14px; height: 14px; stroke: rgba(255,255,255,.6); fill: none; stroke-width: 2; flex-shrink: 0; }
.footer__link:hover, .footer__link-item a:hover { color: var(--white); padding-left: 4px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 24px var(--page-px); max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,.5); text-align: center;
}

/* ============================================================
   PRODUCT HERO (detail page)
============================================================ */
.product-hero { 
  background-color: #083d2c;
  background-image: linear-gradient(to right, #083d2c 0%, #083d2c 45%, rgba(8, 61, 44, 0.72) 60%, rgba(6, 43, 30, 0.2) 100%), url('../img/refinery_night.jpg');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.product-hero__inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); align-items: center;
  min-height: 500px; max-width: var(--max-w); margin: 0 auto; padding: 16px var(--page-px) 28px var(--page-px);
  position: relative;
  z-index: 2;
}
.product-hero__content { padding: 20px 48px 20px 0; }
.product-hero__title { 
  font-family: var(--font-cond); 
  font-size: clamp(28px, 3.5vw, 40px); 
  font-weight: 700; 
  color: var(--white); 
  margin-bottom: 24px; 
  line-height: 1.1; 
}
.product-hero__badges {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.hero-badge__icon svg {
  width: 22px;
  height: 22px;
}
.hero-badge__text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product-hero__desc { 
  font-size: 14.5px; 
  color: rgba(255, 255, 255, 0.82); 
  line-height: 1.8; 
  max-width: 580px; 
  margin-bottom: 32px; 
}
.product-hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-hero-solid {
  background: var(--white);
  color: #073b24;
  border-color: var(--white);
}
.btn-hero-solid:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #05241a;
  border-color: rgba(255, 255, 255, 0.9);
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 24px;
}
.btn-download:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.btn-download svg.icon-catalogue {
  margin-right: 2px;
  opacity: 0.8;
}
.btn-download svg.icon-arrow {
  margin-left: 2px;
  animation: bounceVertical 2s infinite;
}
@keyframes bounceVertical {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}
.product-hero__card {
  align-self: stretch; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  padding: 20px 0; 
  min-height: 540px;
  position: relative;
  background: none;
  border-radius: 0;
  box-shadow: none;
  border: none;
}
.product-hero__card::before {
  display: none;
}
.product-hero__img {
  width: 100%; 
  height: 100%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  position: relative;
  z-index: 2;
}
.product-hero__img-tag {
  width: 100%; 
  height: auto;
  object-fit: contain; 
  max-height: 540px;
}

/* Product description */
.product-desc { padding: 42px 0 24px; }
.product-desc__body { font-size: 14.5px; color: var(--text-mid); line-height: 1.9; max-width: 1040px; }
.product-desc__body p { margin-bottom: 16px; }

/* Tab bar */
.tab-bar { border-bottom: 1px solid var(--border); background: var(--white); z-index: 100; }
.tab-bar__inner {
  display: flex; align-items: center; max-width: var(--max-w);
  margin: 0 auto; padding: 0 var(--page-px); gap: 0;
}
.tab-btn {
  display: inline-flex; align-items: center;
  padding: 14px 24px; font-size: 13px; font-weight: 600; color: var(--text-mid);
  background: none; border: none; border-bottom: 3px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}
.tab-btn:hover { color: var(--green); }
.tab-btn.active { color: var(--white); background: var(--green); border-bottom-color: var(--green); }
.product-tabs-content { background: var(--white); }
.product-tab-panel { display: none; }
.product-tab-panel.is-active { display: block; }

/* Specifications */
.specs-section { padding: 72px 0; background: var(--white); }
.specs-section__title { font-family: var(--font-cond); font-size: 38px; font-weight: 700; color: var(--text-dark); margin-bottom: 36px; letter-spacing: -0.01em; text-transform: uppercase; }
.specs-layout { display: grid; grid-template-columns: 1fr 320px 1fr; gap: 40px; align-items: stretch; }
.specs-layout.specs-layout--no-img { grid-template-columns: 1fr 1fr; gap: 48px; }
.specs-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: transform var(--transition);
}
.spec-item:last-child {
  border-bottom: none;
}
.spec-item:hover {
  transform: translateX(4px);
}
.spec-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(12, 92, 58, 0.08);
}
.spec-item__icon svg {
  width: 18px;
  height: 18px;
}
.spec-item__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.spec-item__label {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0;
}
.spec-item__value {
  font-family: var(--font-main);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.45;
}
.specs-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--green-bg);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
}
.specs-img__tag { width: 100%; height: auto; object-fit: contain; max-height: 260px; transition: transform var(--transition); }
.specs-img:hover .specs-img__tag { transform: scale(1.03); }

/* Product images tab */
.product-images-section { padding: 58px 0 70px; }
.product-images-section__title { font-family: var(--font-cond); font-size: 34px; font-weight: 700; color: var(--text-dark); margin-bottom: 32px; }
.product-images-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-image-card {
  border-radius: var(--radius); overflow: hidden; background: var(--off-white);
  border: 1px solid var(--border); height: 240px;
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
}
.product-image-card__img {
  width: auto; height: auto;
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.06));
}

/* Download tab */
.product-download-section { padding: 58px 0 70px; }
.product-download-section__title { font-family: var(--font-cond); font-size: 34px; font-weight: 700; color: var(--text-dark); margin-bottom: 32px; }
.product-download-card {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 32px; border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(135deg, #f6faf6 0%, #ffffff 100%);
}
.product-download-card__content { display: flex; flex-direction: column; gap: 6px; }
.product-download-card__name { font-family: var(--font-cond); font-size: 28px; font-weight: 700; color: var(--text-dark); }
.product-download-card__meta { font-size: 14px; color: var(--text-light); }

/* Accessories */
.accessories-section { padding: 58px 0 70px; background: var(--off-white); }
.accessories-section__title { font-family: var(--font-cond); font-size: 34px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.accessories-section__desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; max-width: 760px; margin-bottom: 32px; }
.accessories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.accessory-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; text-align: center; transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer; display: flex; flex-direction: column;
}
.accessory-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.accessory-card__img,
.related-card__img {
  width: 100%; height: 240px; overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(46,125,50,.12), transparent 30%),
    linear-gradient(135deg, #eff6ef 0%, #ffffff 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
}
.accessory-card__img-tag,
.related-card__img-tag {
  width: auto; height: auto;
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.10));
}
.accessory-card__placeholder,
.related-card__placeholder {
  display: block; width: 72px; height: 72px; border-radius: 18px;
  background:
    radial-gradient(circle at 35% 35%, rgba(46,125,50,.14), rgba(46,125,50,.05) 60%, transparent 61%),
    linear-gradient(135deg, rgba(46,125,50,.08), rgba(46,125,50,.02));
}
.accessory-card__name { padding: 16px 14px; font-size: 13px; font-weight: 600; color: var(--text-dark); }
.accessory-card__link { display: flex; flex-direction: column; height: 100%; color: var(--text-dark); }
.accessory-card__link:hover .accessory-card__name { color: var(--green); }

/* Inquiry form */
.inquiry-section { background: var(--green); padding: 72px 0; }
.inquiry-section__title { font-family: var(--font-cond); font-size: 36px; font-weight: 700; color: var(--white); text-align: center; margin-bottom: 36px; }
.inquiry-form { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.inquiry-form .full-width { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.8); letter-spacing: .04em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 10px 14px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 4px; font-family: var(--font-main); font-size: 13.5px; color: var(--white); outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.45); }
.form-group input:focus,
.form-group textarea:focus { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.18); }
.form-group textarea { resize: vertical; min-height: 110px; }
.inquiry-submit { text-align: center; margin-top: 8px; }
.inquiry-form__response { margin-top: 12px; font-size: 14px; color: rgba(255,255,255,.9); min-height: 20px; }

/* Contact page */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info__body { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; }
.contact-info__list { margin-top: 16px; }
.contact-form-wrap__title { margin-bottom: 18px; }
.contact-form-wrap .form-group label { color: var(--text-mid); }
.contact-form-wrap .form-group input,
.contact-form-wrap .form-group textarea { background: var(--white); border: 1.5px solid var(--border); color: var(--text-dark); }
.contact-form-wrap .form-group input::placeholder,
.contact-form-wrap .form-group textarea::placeholder { color: var(--text-light); }
.contact-form-wrap .form-group input:focus,
.contact-form-wrap .form-group textarea:focus { border-color: var(--green); }
.contact-form { grid-template-columns: 1fr 1fr; }
.contact-cards {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px; margin-top: 42px;
}
.contact-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.contact-card__title { font-family: var(--font-cond); font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.contact-card__line { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 8px; }
.contact-card__line:last-child { margin-bottom: 0; }
.contact-card__line a { color: inherit; }
.contact-card__line a:hover { color: var(--green); }
.contact-map { margin-top: 32px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.contact-map iframe { display: block; width: 100%; min-height: 360px; border: 0; }

/* Contact Form 7 */
.alis-cf7-form .wpcf7-form {
  display: grid;
  gap: 14px;
}
.alis-cf7-form .wpcf7-form p { margin: 0; }
.alis-cf7-form .wpcf7-form-control-wrap { display: block; }
.alis-cf7-form input[type="text"],
.alis-cf7-form input[type="email"],
.alis-cf7-form input[type="tel"],
.alis-cf7-form input[type="number"],
.alis-cf7-form input[type="url"],
.alis-cf7-form textarea,
.alis-cf7-form select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 13.5px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.alis-cf7-form textarea { min-height: 110px; resize: vertical; }
.alis-cf7-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 3px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.alis-cf7-form .wpcf7-spinner { margin: 12px 0 0; }
.alis-cf7-form .wpcf7-not-valid-tip { margin-top: 6px; font-size: 12px; }
.alis-cf7-form .wpcf7-response-output { margin: 14px 0 0 !important; padding: 10px 12px !important; border-radius: 4px; font-size: 13px; }

.inquiry-section .alis-cf7-form input[type="text"],
.inquiry-section .alis-cf7-form input[type="email"],
.inquiry-section .alis-cf7-form input[type="tel"],
.inquiry-section .alis-cf7-form input[type="number"],
.inquiry-section .alis-cf7-form input[type="url"],
.inquiry-section .alis-cf7-form textarea,
.inquiry-section .alis-cf7-form select {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
}
.inquiry-section .alis-cf7-form input::placeholder,
.inquiry-section .alis-cf7-form textarea::placeholder { color: rgba(255,255,255,.45); }
.inquiry-section .alis-cf7-form input:focus,
.inquiry-section .alis-cf7-form textarea:focus,
.inquiry-section .alis-cf7-form select:focus {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.18);
}
.inquiry-section .alis-cf7-form input[type="submit"] {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.inquiry-section .alis-cf7-form input[type="submit"]:hover {
  background: var(--white);
  color: var(--green);
}
.inquiry-section .alis-cf7-form .wpcf7-response-output {
  color: rgba(255,255,255,.95);
  border-color: rgba(255,255,255,.3) !important;
}

.contact-form-wrap .alis-cf7-form input[type="text"],
.contact-form-wrap .alis-cf7-form input[type="email"],
.contact-form-wrap .alis-cf7-form input[type="tel"],
.contact-form-wrap .alis-cf7-form input[type="number"],
.contact-form-wrap .alis-cf7-form input[type="url"],
.contact-form-wrap .alis-cf7-form textarea,
.contact-form-wrap .alis-cf7-form select {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-dark);
}
.contact-form-wrap .alis-cf7-form input::placeholder,
.contact-form-wrap .alis-cf7-form textarea::placeholder { color: var(--text-light); }
.contact-form-wrap .alis-cf7-form input:focus,
.contact-form-wrap .alis-cf7-form textarea:focus,
.contact-form-wrap .alis-cf7-form select:focus { border-color: var(--green); }
.contact-form-wrap .alis-cf7-form input[type="submit"] {
  background: var(--green);
  color: var(--white);
  border: 1.5px solid var(--green);
}
.contact-form-wrap .alis-cf7-form input[type="submit"]:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

/* FAQ */
.faq-section { padding: 72px 0; }
.faq-section__title { font-family: var(--font-cond); font-size: 34px; font-weight: 700; color: var(--text-dark); margin-bottom: 32px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.faq-col { display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item.open { border-color: #b2dfb4; }
.faq-item__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; background: var(--white); border: none; cursor: pointer;
  text-align: left; font-family: var(--font-main); font-size: 13.5px; font-weight: 600;
  color: var(--text-dark); transition: background var(--transition), color var(--transition); line-height: 1.45;
}
.faq-item.open .faq-item__trigger { background: var(--green-bg); color: var(--green); }
.faq-item__icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1.5px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}
.faq-item__icon svg { width: 12px; height: 12px; stroke: var(--text-light); fill: none; stroke-width: 2.5; }
.faq-item.open .faq-item__icon { background: var(--green); border-color: var(--green); }
.faq-item.open .faq-item__icon svg { stroke: var(--white); }
.faq-item__body {
  display: none; padding: 12px 20px 18px; font-size: 13.5px;
  color: var(--text-mid); line-height: 1.7; background: var(--white); border-top: 1px solid #e8f5e9;
}
.faq-item.open .faq-item__body { display: block; }

/* Related Products */
.related-section { padding: 56px 0 84px; background: var(--off-white); }
.related-section__title { font-family: var(--font-cond); font-size: 34px; font-weight: 700; margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.related-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; text-align: center; transition: box-shadow var(--transition), transform var(--transition);
}
.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.related-card__link { display: flex; flex-direction: column; height: 100%; color: var(--text-dark); }
.related-card__link:hover .related-card__name { color: var(--green); }
.related-card__name { padding: 16px 14px; font-size: 13px; font-weight: 600; color: var(--text-dark); }

/* Products layout */
.products-section { padding: 56px 0 80px; }
.products-layout  { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 32px; align-items: start; }
.products-main { min-width: 0; }

/* Sidebar */
.sidebar { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; position: sticky; top: 160px; }
.sidebar__header { padding: 12px 18px; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); border-bottom: 1px solid var(--border); background: var(--off-white); }
.sidebar__cat { border-bottom: 1px solid var(--border); }
.sidebar__cat:last-child { border-bottom: none; }
.sidebar__cat-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px; background: var(--white); transition: color var(--transition), background var(--transition);
}
.sidebar__cat-row.active { background: #fbfdfb; }
.sidebar__cat-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; padding: 0; font-size: 14px; font-weight: 700; color: var(--text-dark);
  background: transparent; border: none; cursor: pointer; text-align: center;
  transition: color var(--transition), background var(--transition); border-radius: 50%;
}
.sidebar__cat-toggle:hover { background: var(--green-bg); }
.sidebar__cat-toggle.active { color: var(--green); }
.cat-icon { font-size: 18px; font-weight: 300; color: var(--text-light); line-height: 1; flex-shrink: 0; }
.sidebar__cat-toggle.active .cat-icon { color: var(--green); }
.sidebar__sub { display: none; padding: 6px 18px 14px; background: var(--off-white); }
.sidebar__sub.open { display: block; }
.sidebar__sub-item { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 13px; color: var(--text-mid); cursor: pointer; transition: color var(--transition); }
.sidebar__sub-item:hover { color: var(--green); }
.sidebar__sub-link.is-current { color: var(--green); font-weight: 700; }
.sidebar__sub-item input[type="checkbox"] { width: 14px; height: 14px; accent-color: var(--green); flex-shrink: 0; cursor: pointer; }
.sidebar__sub-note { font-size: 13px; color: var(--text-light); padding: 6px 0; }
.sidebar__checkbox { accent-color: var(--green); }

/* Breadcrumbs */
.breadcrumbs { margin-bottom: 16px; }
.breadcrumbs__list { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.breadcrumbs__item { font-size: 13px; color: rgba(255,255,255,.7); }
.breadcrumbs__item a { color: rgba(255,255,255,.85); }
.breadcrumbs__item a:hover { color: var(--white); }
.breadcrumbs__item + .breadcrumbs__item::before { content: '/'; margin-right: 6px; }

/* Pagination */
.pagination { margin: 40px 0; }
.pagination__list { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.pagination__item .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 3px;
  border: 1.5px solid var(--border); font-size: 13px; font-weight: 600;
  color: var(--text-mid); transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.pagination__item .page-numbers.current,
.pagination__item .page-numbers:hover { background: var(--green); color: var(--white); border-color: var(--green); }

/* Case study blocks */
.cs-block { margin-bottom: 36px; }
.cs-block__title { font-family: var(--font-cond); font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--green); }
.cs-block__body { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; }

/* Single post */
.single-post__hero-img { margin-bottom: 32px; border-radius: var(--radius); overflow: hidden; }
.single-post__hero-img img { width: 100%; height: auto; }
.single-post__hero-sep { display: inline-block; margin: 0 10px; opacity: .7; }
.single-post__body { font-size: 15.5px; line-height: 1.85; color: var(--text-mid); }
.single-post__body h2, .single-post__body h3 { font-family: var(--font-cond); font-weight: 700; color: var(--text-dark); margin: 28px 0 14px; }
.single-post__body p { margin-bottom: 18px; }
.single-post__body ul, .single-post__body ol { margin: 0 0 18px 22px; list-style: disc; }
.single-post__body ol { list-style: decimal; }
.single-post__body img { border-radius: var(--radius); }
.single-post__body blockquote {
  margin: 24px 0; padding: 18px 22px;
  border-left: 4px solid var(--green); background: var(--off-white);
  color: var(--text-dark); font-weight: 500;
}
.single-post__body a { color: var(--green); text-decoration: underline; }
.single-post__nav { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); }

/* No results */
.no-results { padding: 40px; text-align: center; color: var(--text-light); font-size: 15px; }

/* WooCommerce placeholder */
.woocommerce-page .page-hero { background: var(--green); }

/* ============================================================
   WOOCOMMERCE PRODUCT GRID - ALIS styled overrides
============================================================ */

/* Grid wrapper matches our product-grid style */
.woo-product-grid.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 24px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Each product card in the loop */
.woo-product-grid li.product,
li.product.product-card {
  background: var(--white) !important;
  padding: 28px 20px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 10px !important;
  margin: 0 !important;
  float: none !important;
  width: auto !important;
  transition: background var(--transition) !important;
}
.woo-product-grid li.product:hover { background: #f9fffe !important; }

/* Product image in loop */
.woo-product-grid li.product a img,
li.product .product-card__img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  border-radius: var(--radius) !important;
  margin: 0 auto !important;
}

/* Product title in loop */
.woo-product-grid li.product .woocommerce-loop-product__title,
.woo-product-grid li.product h2 {
  font-family: var(--font-cond) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woo-product-grid li.product .woocommerce-loop-product__title a,
.woo-product-grid li.product h2 a { color: var(--text-dark) !important; }
.woo-product-grid li.product .woocommerce-loop-product__title a:hover { color: var(--green) !important; }

/* Hide WooCommerce price and rating in loop */
.woo-product-grid li.product .price,
.woo-product-grid li.product .star-rating { display: none !important; }

/* Keep actions visible on archive cards */
.woo-product-grid li.product .product-card__actions { display: flex; gap: 8px; }

/* Sidebar link items (non-checkbox version) */
.sidebar__cat-label { color: inherit; text-decoration: none; flex: 1; display: block; }
.sidebar__sub-link {
  display: block; padding: 6px 0;
  font-size: 13px; color: var(--text-mid);
  text-decoration: none;
  transition: color var(--transition);
}
.sidebar__sub-link:hover { color: var(--green); }

/* WooCommerce product category page meta */
/* WooCommerce pagination */
.woocommerce nav.woocommerce-pagination ul {
  display: flex; gap: 6px; justify-content: center;
  flex-wrap: wrap; margin: 40px 0; padding: 0; list-style: none; border: none;
}
.woocommerce nav.woocommerce-pagination ul li { border: none; padding: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 3px;
  border: 1.5px solid var(--border); font-size: 13px; font-weight: 600;
  color: var(--text-mid); background: var(--white);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--green) !important; color: var(--white) !important;
  border-color: var(--green) !important;
}

/* WooCommerce notices */
.woocommerce-info,
.woocommerce-message {
  border-top-color: var(--green) !important;
  background: var(--green-bg) !important;
}

/* ============================================================
   INDUSTRIES WE SERVE SECTION
============================================================ */
.industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.industry-card {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 1;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
  transition: opacity var(--transition);
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.industry-card__bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.industry-card:hover .industry-card__bg {
  transform: scale(1.06);
}
.industry-card__content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 3;
}
.industry-card__icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.industry-card:hover .industry-card__icon-box {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.industry-card__icon-box svg {
  width: 20px;
  height: 20px;
}
.industry-card__icon-box i {
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.industry-card__title {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.35;
}
.industry-card__excerpt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.industry-card__link {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 4;
}

/* ============================================================
   INDUSTRY SPLIT HERO SECTION
============================================================ */
.industry-hero-wrapper {
  padding-top: 28px;
  padding-bottom: 0;
}
.industry-hero {
  position: relative;
  background: var(--white);
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.industry-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  position: relative;
  min-height: 560px;
  z-index: 3;
  width: 100%;
}
.industry-hero__content {
  padding: 48px 36px;
  position: relative;
  z-index: 10;
}
.industry-hero__content .breadcrumbs {
  margin-bottom: 24px;
}
.industry-hero__content .breadcrumbs__item a {
  color: var(--text-light);
}
.industry-hero__content .breadcrumbs__item a:hover {
  color: var(--green);
}
.industry-hero__content .breadcrumbs__item span {
  color: var(--text-dark);
}
.industry-hero__badge-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 12px;
}
.industry-hero__title {
  font-family: var(--font-main);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.industry-hero__subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--text-mid);
  line-height: 1.45;
  margin-bottom: 24px;
}
.industry-hero__desc {
  font-size: 15.5px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 32px;
}
.industry-hero__badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.ind-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.ind-badge__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.ind-badge__icon svg {
  width: 20px;
  height: 20px;
}
.ind-badge:hover .ind-badge__icon {
  background: var(--green);
  color: var(--white);
}
.ind-badge__text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.3;
}
.industry-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-hero-solid {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.btn-hero-solid:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}
.btn-hero-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn-hero-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-hero-outline svg {
  transition: transform var(--transition);
}
.btn-hero-outline:hover svg {
  transform: translateY(2px);
}

.industry-hero__image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
}
.industry-hero__image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.industry-hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--white) 0%, rgba(255, 255, 255, 0.7) 12%, rgba(255, 255, 255, 0.2) 28%, transparent 45%);
  z-index: 2;
}

/* ============================================================
   INDUSTRY DETAILS SPLIT SECTION (Why Choose & Applications)
============================================================ */
.ind-split-section {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .ind-split-section {
    grid-template-columns: 1fr 1fr;
  }
}

.ind-split-section__col {
  padding: 60px 24px;
}
@media (min-width: 768px) {
  .ind-split-section__col {
    padding: 80px 48px;
  }
}

.ind-split-section__col--why {
  background: var(--white);
}

.ind-split-section__col--apps {
  background: #06281d;
  position: relative;
  overflow: hidden;
}

.ind-split-section__content {
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 5;
}

@media (min-width: 992px) {
  .ind-split-section__col--why {
    display: flex;
    justify-content: flex-end;
  }
  .ind-split-section__col--apps {
    display: flex;
    justify-content: flex-start;
  }
  .ind-split-section__col--why .ind-split-section__content {
    margin-left: auto;
  }
  .ind-split-section__col--apps .ind-split-section__content {
    margin-right: auto;
  }
}

@media (min-width: 1350px) {
  .ind-split-section__col--why {
    padding-left: calc((100vw - 1320px) / 2 + 15px);
    padding-right: 60px;
  }
  .ind-split-section__col--apps {
    padding-right: calc((100vw - 1320px) / 2 + 15px);
    padding-left: 60px;
  }
}

.ind-split-section__title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.ind-split-section__title.text-green {
  color: var(--green);
}
.ind-split-section__title.text-white {
  color: var(--white);
}

.ind-split-section__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ind-split-section__list--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 20px;
}
@media (min-width: 576px) {
  .ind-split-section__list--grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ind-split-section__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.ind-split-section__list--grid .ind-split-section__item {
  margin-bottom: 0;
}

.ind-split-section__text {
  font-size: 14px;
}
.ind-split-section__col--why .ind-split-section__text {
  color: var(--text-dark);
}
.ind-split-section__col--apps .ind-split-section__text {
  color: rgba(255, 255, 255, 0.85);
}

.ind-split-section__icon,
.ind-split-section__icon-w {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.ind-split-section__icon {
  border: 1.5px solid var(--green);
  color: var(--green);
}
.ind-split-section__icon svg,
.ind-split-section__icon-w svg {
  width: 10px;
  height: 10px;
}

.ind-split-section__icon-w {
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}

/* Faint background graphic */
.ind-split-section__bg-graphic {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 90%;
  max-height: 380px;
  width: auto;
  opacity: 0.04;
  color: var(--white);
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   TECHNICAL SPECIFICATIONS GRID SECTION
============================================================ */
.ind-specs-section {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.ind-specs-section .section-label {
  font-size: 14px;
  text-align: left;
  font-weight: 800;
  margin-bottom: 50px;
}
.ind-specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 20px;
}
@media (min-width: 576px) {
  .ind-specs-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .ind-specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .ind-specs-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
  }
}

.ind-spec-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
}

@media (min-width: 1200px) {
  .ind-spec-col {
    padding: 0 24px;
  }
  .ind-spec-col:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }
  .ind-spec-col:first-child {
    padding-left: 0;
  }
  .ind-spec-col:last-child {
    padding-right: 0;
  }
}

.ind-spec-col__icon {
  color: var(--green);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--green-bg);
  border-radius: 50%;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.ind-spec-col:hover .ind-spec-col__icon {
  transform: translateY(-4px);
  background: var(--green);
  color: var(--white);
}
.ind-spec-col__icon svg {
  width: 20px;
  height: 20px;
}
.ind-spec-col__title {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.ind-spec-col__text {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   OTHER INDUSTRIES WE SERVE SECTION
============================================================ */
.other-industries-section {
  border-top: 1px solid var(--border);
  background: var(--off-white);
}

.industry-card__custom-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}


