:root {
  --primary: #005A32;
  --leaf: #A8E063;
  --dark: #003B24;
  --bg: #F6F6F6;
  --text: #333333;
  --white: #FFFFFF;
  --water: #3CBCC3;
  --line: rgba(0, 90, 50, 0.14);
  --shadow: 0 22px 55px rgba(0, 59, 36, 0.16);
  --bal-green-deep: #005A32;
  --bal-green-dark: #003B24;
  --bal-green-leaf: #A8E063;
  --bal-green-soft: #EAF6EF;
  --bal-aqua-tech: #3CBCC3;
  --bal-blue-deep: #0B3A75;
  --bal-charcoal: #333333;
  --bal-gray-soft: #F6F6F6;
  --bal-white: #FFFFFF;
  --bal-card-border: rgba(0, 90, 50, 0.12);
  --bal-shadow-soft: 0 12px 30px rgba(0, 59, 36, 0.10);
  --bal-shadow-hover: 0 18px 42px rgba(0, 59, 36, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  letter-spacing: 0;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--dark);
}
.brand img {
  width: auto;
  max-width: 230px;
  height: 46px;
  object-fit: contain;
}
.brand span { display: none; }
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.6vw, 22px);
  font-size: 0.92rem;
  font-weight: 650;
  color: #234036;
}
.main-nav a { padding: 10px 0; }
.main-nav a:hover { color: var(--primary); }
.main-nav a.is-active {
  color: var(--primary);
  border-bottom: 2px solid var(--leaf);
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-switcher {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 59, 36, 0.06);
}
.language-switcher button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
}
.language-switcher button:last-child { border-right: 0; }
.language-switcher button:hover,
.language-switcher button.is-active {
  background: var(--primary);
  color: var(--white);
}
.symbio-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.btn {
  border: 0;
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 90, 50, 0.22);
}
.btn-primary:hover { background: var(--dark); }
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 1px solid rgba(0, 90, 50, 0.18);
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 9px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--primary);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  overflow: hidden;
  background: var(--dark);
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 800ms ease;
  display: grid;
  align-items: center;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 59, 36, 0.92), rgba(0, 90, 50, 0.62), rgba(0, 59, 36, 0.22)),
    linear-gradient(0deg, rgba(0, 59, 36, 0.62), rgba(0, 59, 36, 0.08) 45%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 92px);
  color: var(--white);
  padding: 24px;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 3px 18px rgba(0, 24, 14, 0.82);
}
.hero-content h2 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}
.hero-content p {
  max-width: 650px;
  margin: 0 0 28px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 44px;
  height: 54px;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  background: rgba(0, 59, 36, 0.46);
  color: white;
  font-size: 2rem;
  cursor: pointer;
}
.hero-prev { left: 18px; }
.hero-next { right: 18px; }
.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 38px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}
.hero-dots button.is-active { background: var(--leaf); }

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}
.page-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: clamp(96px, 12vw, 150px) clamp(18px, 5vw, 72px) clamp(56px, 7vw, 90px);
  background:
    linear-gradient(90deg, rgba(0, 59, 36, 0.64), rgba(0, 90, 50, 0.30), rgba(0, 59, 36, 0.08)),
    var(--page-bg, url("public/assets/balponics/hero/hero-commercial-hydroponic-farm.jpg")) center/cover;
  color: var(--white);
}
.page-hero-content {
  width: min(900px, 100%);
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  max-width: 720px;
  color: rgba(255,255,255,0.9);
  font-size: 1.12rem;
}
.page-hero .section-kicker {
  color: var(--leaf);
}
.page-intro {
  background: var(--white);
}
.page-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.page-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--bal-shadow-soft);
}
.page-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
}
.stat-grid {
  width: min(980px, 100%);
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat-grid span {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #f5fbf7;
  color: var(--dark);
  font-weight: 800;
}
.stat-grid small {
  color: var(--text);
  font-weight: 600;
}
.inline-form-panel {
  width: min(980px, 100%);
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--bal-shadow-soft);
}
.contact-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.contact-list span {
  display: block;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.section-heading {
  width: min(940px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}
.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}
h1, h2, h3 { color: var(--dark); letter-spacing: 0; }
h1, h2 { margin: 0; font-size: clamp(2rem, 4.5vw, 4rem); line-height: 1.05; }
h3 { margin: 0 0 10px; font-size: 1.1rem; }
p { line-height: 1.7; }
.section-heading p {
  margin: 14px auto 0;
  max-width: 760px;
  font-size: 1.05rem;
}
.split {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
}
.split-center { align-items: center; }
.prose p:first-child { margin-top: 0; }
.about-band, .why-band { background: var(--white); }
.systems-band {
  background:
    linear-gradient(180deg, rgba(168, 224, 99, 0.14), rgba(60, 188, 195, 0.12)),
    var(--white);
}
.technology-band, .careers-band {
  background: #eaf3ef;
}
.symbiosis-band {
  background: var(--dark);
  color: rgba(255,255,255,0.86);
}
.symbiosis-band h2, .symbiosis-band .section-kicker { color: var(--white); }

.capability-grid, .insight-grid, .impact-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.capability-grid article, .insight-grid article, .impact-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 12px 34px rgba(0, 59, 36, 0.06);
}
.capability-grid strong {
  display: block;
  color: var(--dark);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.capability-grid span { line-height: 1.55; }

.solution-grid, .product-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.solution-card, .product-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(0, 59, 36, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.solution-card:hover, .product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.solution-card .solution-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.solution-card .solution-body {
  padding: 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.solution-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #e8f5ea;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 18px;
}
.solution-card p { flex: 1; }
.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.product-card .bal-icon-box,
.solution-card .bal-icon-box {
  color: var(--bal-green-deep);
}
.bal-card:hover .bal-icon-box img {
  filter: brightness(0) invert(1);
}
.product-body { padding: 20px; }
.category {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-body p { margin: 0 0 14px; }
.best-for {
  padding: 12px;
  border-radius: 8px;
  background: #f1f7f4;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 14px;
}
.card-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.filters {
  width: min(1180px, 100%);
  margin: 0 auto 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: #244238;
  padding: 9px 12px;
  font-weight: 750;
  cursor: pointer;
}
.filter-button.is-active {
  background: var(--primary);
  color: var(--white);
}
.center-action { text-align: center; margin-top: 28px; }
.feature-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.why-list, .career-roles {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.why-list span, .career-roles span {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 750;
}
.inquiry-band {
  background:
    linear-gradient(110deg, rgba(0, 59, 36, 0.94), rgba(0, 90, 50, 0.82)),
    url("public/assets/balponics/hero/hero-commercial-hydroponic-farm.jpg") center/cover;
}
.inquiry-panel {
  width: min(820px, 100%);
  color: var(--white);
}
.inquiry-panel h2 { color: var(--white); }
.inquiry-panel .section-kicker { color: var(--leaf); }
.inquiry-panel p { color: rgba(255,255,255,0.86); font-size: 1.08rem; }

.site-footer {
  padding: 42px clamp(18px, 5vw, 72px);
  background: #062a1b;
  color: rgba(255,255,255,0.78);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.footer-brand img {
  width: auto;
  max-width: 300px;
  height: 64px;
  object-fit: contain;
}
.footer-brand > div { display: none; }
.footer-brand strong { color: var(--white); font-size: 1.2rem; }
.footer-brand p { margin: 3px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-grid h3 { color: var(--white); font-size: 0.95rem; }
.footer-grid a, .footer-grid p { display: block; margin: 8px 0; }
.socials { display: flex; gap: 8px; }
.socials span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-weight: 850;
}
.newsletter {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.newsletter label { color: var(--white); font-weight: 750; margin-right: 8px; }
.newsletter input {
  min-height: 42px;
  min-width: min(320px, 100%);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.legal { margin: 26px 0 0; font-size: 0.9rem; }

.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 24, 14, 0.72);
}
.modal-card {
  position: relative;
  width: min(980px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.detail-main {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.thumbs button.is-active { border-color: var(--primary); }
.thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.includes-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0;
  list-style: none;
}
.includes-list li {
  padding: 10px;
  background: #f1f7f4;
  border-radius: 8px;
}
.pricing-note {
  padding: 12px;
  border-left: 4px solid var(--water);
  background: #eef9f9;
}
.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 44px;
  padding: 10px 12px;
}
.inquiry-form textarea, .inquiry-form button { grid-column: 1 / -1; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: auto auto; }
  .nav-toggle { display: block; justify-self: end; }
  .main-nav, .header-actions {
    display: none;
    grid-column: 1 / -1;
  }
  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-actions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .site-header.nav-open .header-actions { align-items: center; }
  .main-nav { gap: 12px 18px; }
  .capability-grid, .insight-grid, .impact-grid, .solution-grid, .product-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-grid,
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header { padding: 10px 16px; }
  .hero { min-height: 680px; }
  .hero-content { margin-left: 20px; padding-right: 28px; }
  .hero-arrow { top: auto; bottom: 58px; transform: none; }
  .split, .detail-grid, .inquiry-form { grid-template-columns: 1fr; }
  .capability-grid, .insight-grid, .impact-grid, .solution-grid, .product-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .page-grid,
  .stat-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .includes-list { grid-template-columns: 1fr; }
  .modal-card { padding: 18px; }
}

/* Balponics enhancement layer */
body {
  font-family: Inter, Poppins, Montserrat, Arial, sans-serif;
  background: var(--bal-gray-soft);
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: 0;
}

p { line-height: 1.65; }

.btn,
button {
  border-radius: 999px;
  font-weight: 800;
}

.site-header {
  box-shadow: 0 10px 26px rgba(0, 59, 36, 0.07);
}

.brand span {
  font-size: 1.25rem;
}

.bal-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
  display: none;
}

.hero-slide::after {
  display: none;
}

.bal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: white;
}

.hero-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--bal-white);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0, 24, 14, 0.92);
}

.bal-card {
  border: 1px solid var(--bal-card-border);
  box-shadow: var(--bal-shadow-soft);
}

.bal-card:hover {
  box-shadow: var(--bal-shadow-hover);
}

.bal-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--bal-green-soft);
  color: var(--bal-green-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(0, 90, 50, 0.08);
  transition: all 0.25s ease;
  flex: 0 0 auto;
}

.bal-icon-box img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(25%) sepia(68%) saturate(901%) hue-rotate(115deg) brightness(90%) contrast(101%);
}

.bal-card:hover .bal-icon-box {
  background: var(--bal-green-deep);
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.capability-grid article {
  display: grid;
  gap: 12px;
}

.how-band {
  background: var(--bal-white);
}

.timeline {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.timeline article {
  position: relative;
  background: var(--bal-white);
  border: 1px solid var(--bal-card-border);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--bal-shadow-soft);
}

.timeline article::after {
  content: "";
  position: absolute;
  top: 33px;
  right: -12px;
  width: 12px;
  height: 2px;
  background: var(--bal-green-leaf);
}

.timeline article:last-child::after {
  display: none;
}

.timeline span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--bal-green-deep);
  color: var(--bal-white);
  font-weight: 800;
  margin-bottom: 12px;
}

.timeline p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.product-grid {
  transition: opacity 150ms ease, transform 150ms ease;
}

.product-grid.is-filtering {
  opacity: 0.35;
  transform: translateY(4px);
}

.product-topline,
.detail-heading {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.product-photo {
  background: var(--bal-green-soft);
}

.filter-button {
  border-radius: 999px;
}

.tech-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.tech-strip span,
.trust-strip span {
  display: inline-flex;
  gap: 9px;
  align-items: center;
}

.tech-strip span {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--bal-card-border);
  border-radius: 8px;
  padding: 11px 12px;
  font-weight: 750;
  color: var(--bal-green-dark);
}

.tech-strip img,
.trust-strip img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(68%) saturate(901%) hue-rotate(115deg) brightness(90%) contrast(101%);
}

.training-band {
  background: var(--bal-white);
}

.image-grid {
  grid-template-columns: repeat(3, 1fr);
}

.image-grid article {
  overflow: hidden;
  padding: 0;
}

.image-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-grid h3,
.image-grid p {
  margin-left: 18px;
  margin-right: 18px;
}

.image-grid p {
  margin-bottom: 20px;
}

.symbiosis-band {
  background: linear-gradient(135deg, #f3fbf5, #e5f6ed);
  color: var(--bal-charcoal);
}

.symbiosis-band h2,
.symbiosis-band h3 {
  color: var(--bal-green-dark);
}

.symbiosis-band .section-kicker {
  color: var(--bal-green-deep);
}

.ecosystem-card {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  background: var(--bal-white);
  border: 1px solid var(--bal-card-border);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--bal-shadow-soft);
}

.ecosystem-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.ecosystem-side img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.ecosystem-side p {
  margin-top: 0;
}

.ecosystem-loop {
  width: 82px;
  height: 82px;
  align-self: center;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--bal-green-soft);
  border: 1px solid var(--bal-card-border);
}

.ecosystem-loop img {
  width: 42px;
  height: 42px;
}

.ecosystem-copy {
  grid-column: 1 / -1;
  text-align: center;
  width: min(850px, 100%);
  margin: 0 auto;
}

.trust-strip span {
  background: var(--bal-white);
  color: var(--bal-green-dark);
}

.inquiry-band {
  background:
    linear-gradient(110deg, rgba(0, 59, 36, 0.92), rgba(0, 90, 50, 0.78)),
    url("public/assets/balponics/backgrounds/inquiry-greenhouse.jpg") center/cover;
}

.footer-cta {
  margin-top: 10px;
}

.newsletter {
  display: none;
}

@media (max-width: 1050px) {
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline article::after {
    display: none;
  }

  .ecosystem-card {
    grid-template-columns: 1fr;
  }

  .ecosystem-loop {
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .timeline,
  .tech-strip,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
  }

  .product-topline,
  .detail-heading {
    align-items: flex-start;
  }
}


/* Careers page */
.careers-page .page-hero {
  min-height: 560px;
}
.careers-hero .page-hero-content {
  max-width: 780px;
}
.careers-overview,
.careers-profile-section {
  background: var(--white);
}
.careers-culture-band,
.careers-leadership-section,
.careers-apply-section {
  background: #f7fbf8;
}
.careers-culture-grid,
.careers-area-grid,
.executive-profile-grid,
.careers-check-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.careers-culture-grid {
  grid-template-columns: repeat(4, 1fr);
}
.careers-culture-grid article,
.careers-area-grid article,
.executive-profile-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--bal-shadow-soft);
}
.careers-culture-grid article,
.careers-area-grid article {
  padding: 24px;
}
.careers-image-row {
  width: min(1180px, 100%);
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.careers-image-row img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--bal-shadow-soft);
}
.careers-area-grid {
  grid-template-columns: repeat(3, 1fr);
}
.careers-area-grid ul {
  margin: 14px 0 0;
  padding-left: 19px;
  color: var(--text);
  line-height: 1.8;
}
.executive-profile-grid {
  grid-template-columns: repeat(2, 1fr);
}
.executive-profile-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 18px;
  align-items: start;
}
.executive-profile-card img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 8px;
}
.executive-profile-card strong {
  display: block;
  color: var(--primary);
  margin-bottom: 10px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(0, 90, 50, 0.18);
  border-radius: 999px;
  padding: 5px 10px;
  background: #f5fbf7;
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 750;
}
.careers-check-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
}
.careers-check-grid span {
  padding: 14px 14px 14px 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  position: relative;
  font-weight: 700;
}
.careers-check-grid span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(168, 224, 99, 0.22);
}
.file-field {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf9;
  color: var(--dark);
}

/* Balponics team page */
.balponics-team-page .team-page-hero .page-hero-content { max-width: 860px; }
.team-operations-gallery,
.operations-culture-section,
.leadership-section { background: #f7fbf8; }
.team-image-grid,
.operations-culture-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.team-image-grid { grid-template-columns: repeat(4, 1fr); }
.team-image-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--bal-shadow-soft);
  overflow: hidden;
}
.team-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.team-image-card div { padding: 18px; }
.team-image-card h3 { margin-bottom: 8px; }
.operations-culture-grid { grid-template-columns: repeat(3, 1fr); }
.operations-culture-grid span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
  color: var(--dark);
}
.balponics-team-page .executive-profile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.executive-profile-body { display: flex; flex-direction: column; }
.executive-tagline { color: var(--text); }
@media (max-width: 980px) {
  .team-image-grid,
  .operations-culture-grid,
  .balponics-team-page .executive-profile-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .team-image-grid,
  .operations-culture-grid,
  .balponics-team-page .executive-profile-grid { grid-template-columns: 1fr; }
}

/* Balponics executive profile popup */
.balponics-team-page .executive-profile-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: clamp(18px, 3vw, 28px);
}
.balponics-team-page .executive-profile-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.balponics-team-page .executive-profile-card:hover,
.balponics-team-page .executive-profile-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 132, 62, .28);
  box-shadow: 0 22px 54px rgba(0, 58, 32, .16);
  outline: none;
}
.balponics-team-page .executive-profile-card::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #3CBCC3);
}
.balponics-team-page .executive-profile-card > img {
  width: 100%;
  aspect-ratio: 4 / 3.9;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
}
.balponics-team-page .executive-profile-body {
  flex: 1;
  padding: clamp(18px, 2.5vw, 26px);
}
.balponics-team-page .executive-profile-body h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
}
.balponics-team-page .executive-profile-body .executive-profile-trigger {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.executive-profile-modal .executive-modal-card {
  width: min(1120px, 96vw);
  padding: 0;
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  overflow: hidden;
}
.executive-profile-modal #executiveModalContent {
  display: contents;
}
.executive-modal-media {
  margin: 0;
  min-height: 100%;
  background: #f3f8f4;
}
.executive-modal-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}
.executive-modal-body {
  padding: clamp(24px, 3vw, 38px);
  overflow: auto;
}
.executive-modal-body h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  margin: 8px 0 10px;
}
.executive-modal-body > strong {
  display: block;
  color: var(--primary);
  margin-bottom: 14px;
}
.executive-modal-body p {
  color: var(--muted);
  line-height: 1.65;
}
.executive-modal-body .tag-row {
  margin: 14px 0 18px;
}
@media (max-width: 820px) {
  .executive-profile-modal .executive-modal-card {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }
  .executive-modal-media img {
    min-height: 0;
    max-height: 46vh;
  }
}


/* Final Balponics team page alignment with SymbioGreens executive format */
.balponics-team-page {
  background: #eef7f0;
}
.balponics-team-page .team-page-hero .page-hero-content {
  max-width: 880px;
}
.balponics-team-page .team-operations-gallery,
.balponics-team-page .operations-culture-section,
.balponics-team-page .team-executive-section {
  background: #f7fbf8;
}
.balponics-team-page .team-image-grid,
.balponics-team-page .operations-culture-grid,
.balponics-team-page .executive-profile-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.balponics-team-page .team-image-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.balponics-team-page .team-image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--bal-shadow-soft);
}
.balponics-team-page .team-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.balponics-team-page .team-image-card div {
  padding: 18px;
}
.balponics-team-page .operations-culture-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.balponics-team-page .operations-culture-grid span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--dark);
  font-weight: 800;
}
.balponics-team-page .executive-profile-grid {
  grid-template-columns: repeat(2, minmax(290px, 430px));
  justify-content: center;
  gap: clamp(18px, 3vw, 28px);
}
.balponics-team-page .executive-profile-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 76, 52, .14);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbfdfb), #fff;
  box-shadow: 0 20px 44px rgba(0, 45, 32, .11);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.balponics-team-page .executive-profile-card:hover,
.balponics-team-page .executive-profile-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 132, 62, .28);
  box-shadow: 0 22px 54px rgba(0, 58, 32, .16);
  outline: none;
}
.balponics-team-page .executive-profile-card::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #3cbcc3);
}
.balponics-team-page .executive-profile-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  background: #f4f8f4;
}
.balponics-team-page .executive-profile-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}
.balponics-team-page .executive-profile-body h3 {
  margin: 0 0 6px;
  color: var(--primary-dark);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.04;
}
.balponics-team-page .executive-profile-body > strong {
  display: block;
  margin-bottom: 10px;
  color: #8a2440;
}
.balponics-team-page .executive-tagline {
  color: var(--dark);
  font-weight: 850;
  line-height: 1.5;
}
.balponics-team-page .executive-profile-body .tag-row {
  margin: 12px 0 14px;
}
.balponics-team-page .executive-profile-trigger {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.executive-profile-modal .executive-modal-card {
  width: min(1120px, 96vw);
  padding: 0;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  overflow: hidden;
}
.executive-profile-modal #executiveModalContent {
  display: contents;
}
.executive-profile-modal .executive-modal-media {
  margin: 0;
  min-height: 100%;
  background: #f4f8f4;
}
.executive-profile-modal .executive-modal-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}
.executive-profile-modal .executive-modal-body {
  padding: clamp(22px, 3vw, 34px);
  overflow: auto;
}
.executive-profile-modal .executive-modal-body h2 {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}
.executive-profile-modal .executive-modal-body > strong {
  display: block;
  margin-bottom: 12px;
  color: #8a2440;
}
.executive-profile-modal .executive-modal-body p {
  color: var(--muted);
  line-height: 1.58;
}
.executive-profile-modal .executive-modal-body .tag-row {
  margin: 14px 0 18px;
}
@media (max-width: 980px) {
  .balponics-team-page .team-image-grid,
  .balponics-team-page .operations-culture-grid,
  .balponics-team-page .executive-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .balponics-team-page .team-image-grid,
  .balponics-team-page .operations-culture-grid,
  .balponics-team-page .executive-profile-grid {
    grid-template-columns: 1fr;
  }
  .executive-profile-modal .executive-modal-card {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }
  .executive-profile-modal .executive-modal-media img {
    min-height: 320px;
    max-height: 420px;
  }
}


.footer-contact-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.site-footer .footer-contact-links a {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.site-footer .footer-contact-links a:hover,
.site-footer .footer-contact-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
}
.footer-contact-links svg,
.contact-channel svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  stroke-width: 1.8;
}
.contact-channel-list {
  gap: 10px;
}
.contact-list .contact-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}
.contact-list a.contact-channel:hover,
.contact-list a.contact-channel:focus-visible {
  border-color: var(--green);
  color: var(--green-deep);
}
.contact-channel > span {
  padding: 0;
  border: 0;
  background: transparent;
}
.department-contacts {
  margin-top: 28px;
}
.department-contacts > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}
.department-contacts a {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.department-contacts a:hover,
.department-contacts a:focus-visible {
  color: var(--green-deep);
}
.department-contacts span {
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}
@media (max-width: 560px) {
  .department-contacts > div { grid-template-columns: 1fr; }
}
/* Hero contrast repair */
.hero .bal-hero-content,
.hero .bal-hero-content h2,
.hero .bal-hero-content p,
.hero .hero-eyebrow {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: 0 3px 18px rgba(0, 24, 14, 0.88);
}
.hero .bal-hero-content {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.page-hero .page-hero-content,
.page-hero .page-hero-content h1,
.page-hero .page-hero-content p,
.page-hero .page-hero-content .section-kicker {
  color: #fff !important;
  text-shadow: 0 3px 16px rgba(0, 24, 14, 0.82);
}

/* Local contact icons keep the site independent of external scripts. */
i[data-lucide] {
  display: inline-grid;
  width: 19px;
  height: 19px;
  place-items: center;
  flex: 0 0 19px;
  font-style: normal;
  color: currentColor;
}
i[data-lucide="mail"]::before { content: "\2709"; }
i[data-lucide="phone"]::before { content: "\260E"; }
i[data-lucide="message-circle"]::before { content: "\25CF"; font-size: 0.72em; border: 1px solid currentColor; border-radius: 50%; line-height: 1; }
i[data-lucide="map-pin"]::before { content: "\25C6"; font-size: 0.72em; }
