:root {
  --primary: #0f7045;
  --primary-dark: #0a5734;
  --accent: #a4c83a;
  --accent-dark: #7ea30f;
  --ink: #183024;
  --muted: #637467;
  --line: #dce6dc;
  --bg: #f7faf5;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(9, 45, 26, 0.12);
  --radius: 24px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }

.container { width: var(--container); margin: 0 auto; }
.section { padding: 88px 0; }
.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--primary);
}
.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head h2,
.text-block h2,
.cta-box h2,
.sustainability-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  margin: 0 0 16px;
}
.section-head p,
.text-block p,
.cta-box p,
.sustainability-copy p,
.hero-copy p { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent-dark));
  color: var(--white);
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: rgba(255,255,255,0.55);
}
.hero .btn-outline,
.cta .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-sm { padding: 12px 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220,230,220,0.8);
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(14, 50, 30, 0.08); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}
.brand img { height: 58px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
}
.site-nav a:not(.btn) { color: #274636; }
.site-nav a:not(.btn):hover { color: var(--primary); }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
  transition: 0.25s ease;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #082d1d;
}
.hero-media,
.hero-overlay { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 31, 20, 0.92) 0%, rgba(7, 31, 20, 0.84) 30%, rgba(7, 31, 20, 0.45) 60%, rgba(7, 31, 20, 0.18) 100%),
    radial-gradient(circle at 25% 30%, rgba(164, 200, 58, 0.18), transparent 36%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 40px;
  align-items: end;
  padding: 90px 0 70px;
}
.hero-copy { max-width: 700px; color: var(--white); }
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}
.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.96;
}
.hero-copy h1 span { color: var(--accent); }
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.hero-points li {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.08);
}
.hero-card {
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(8, 32, 21, 0.62);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow);
  color: var(--white);
  backdrop-filter: blur(12px);
}
.hero-card h3 { margin-top: 0; font-size: 1.35rem; }
.mini-stats {
  display: grid;
  gap: 14px;
}
.mini-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
}
.mini-stats strong {
  display: block;
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 5px;
}
.mini-stats span { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

.intro-strip {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 26px 0;
}
.intro-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(10, 87, 52, 0.05);
}
.intro-item strong { display: block; color: var(--primary); margin-bottom: 4px; }
.intro-item span { color: var(--muted); font-size: 0.95rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 24px;
}
.bullet-grid div {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-weight: 600;
}
.image-frame,
.product-highlight,
.workflow-image,
.sustainability-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-frame img,
.product-highlight img,
.workflow-image img,
.sustainability-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-highlight { margin-bottom: 32px; }
.product-grid,
.benefit-grid,
.gallery-grid {
  display: grid;
  gap: 22px;
}
.product-grid { grid-template-columns: repeat(4, 1fr); }
.card {
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(16, 51, 29, 0.07);
}
.card h3 { margin-top: 0; margin-bottom: 12px; font-size: 1.3rem; }
.card p { color: var(--muted); margin-bottom: 14px; }
.card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: #355345;
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.pooling { background: linear-gradient(180deg, #f5faf5, #ffffff); }
.pooling-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}
.step-list { display: grid; gap: 16px; }
.step {
  display: flex;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}
.step span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-weight: 800;
  flex-shrink: 0;
}
.step h3 { margin: 0 0 4px; }
.step p { margin: 0; color: var(--muted); }

.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.industry-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(19, 58, 33, 0.07);
}
.industry-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.industry-content { padding: 22px; }
.industry-content h3 { margin: 0 0 10px; }
.industry-content p { margin: 0; color: var(--muted); }

.solutions { background: var(--bg); }
.benefit-grid { grid-template-columns: repeat(3, 1fr); }
.benefit {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fcf5);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(9, 50, 25, 0.05);
}
.benefit h3 { margin: 0 0 10px; }
.benefit p { margin: 0; color: var(--muted); }

.sustainability-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
  padding: 40px;
  border-radius: 32px;
  background: linear-gradient(135deg, #f9fcf6, #edf6e6);
  border: 1px solid #dbe7d0;
}
.check-list { margin-top: 18px; display: grid; gap: 10px; }
.check-list li {
  padding-left: 30px;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 900;
}

.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-item {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(10, 40, 23, 0.08);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.cta {
  background:
    linear-gradient(120deg, var(--primary-dark), var(--primary)),
    linear-gradient(0deg, rgba(255,255,255,0.05), rgba(255,255,255,0.05));
}
.cta-box {
  padding: 40px;
  border-radius: 30px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta-box .section-tag { color: #d7f28d; }
.cta-box p { color: rgba(255,255,255,0.85); max-width: 760px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.site-footer {
  background: #0d2017;
  color: rgba(255,255,255,0.9);
  padding-top: 58px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
}
.footer-logo { width: 180px; margin-bottom: 16px; }
.site-footer h3 { margin-top: 0; color: var(--white); font-size: 1.1rem; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer a:hover { color: #d2ec7d; }
.footer-bottom {
  margin-top: 34px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.09);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 1080px) {
  .hero-content,
  .two-col,
  .pooling-layout,
  .sustainability-wrap,
  .footer-grid { grid-template-columns: 1fr; }
  .product-grid,
  .benefit-grid,
  .industry-grid,
  .gallery-grid,
  .intro-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .hero { min-height: auto; }
  .hero-content { grid-template-columns: 1fr; padding: 82px 0 60px; }
  .hero-card { max-width: 420px; }
  .hero-copy h1 { font-size: clamp(2.4rem, 11vw, 4.2rem); }
  .bullet-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .container { width: min(calc(100% - 28px), 1180px); }
  .product-grid,
  .benefit-grid,
  .industry-grid,
  .gallery-grid,
  .intro-grid { grid-template-columns: 1fr; }
  .hero-actions,
  .cta-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn,
  .cta-actions .btn { width: 100%; }
  .hero-points { flex-direction: column; }
  .hero-card { padding: 20px; }
  .sustainability-wrap,
  .cta-box { padding: 24px; }
  .brand img { height: 52px; }
}


/* Multi-page website styles */
.site-nav a.active:not(.btn) { color: var(--primary); position: relative; }
.site-nav a.active:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -12px; height: 3px; border-radius: 3px; background: var(--accent); }
.site-nav .btn.active { box-shadow: 0 0 0 4px rgba(164, 200, 58, 0.2); }

.page-hero {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #0c3d27;
  background-position: center;
  background-size: cover;
}
.page-hero-about { background-image: url('assets/images/about.jpg'); }
.page-hero-products { background-image: url('assets/images/products-lineup.jpg'); }
.page-hero-pooling { background-image: url('assets/images/workflow.png'); background-position: center; }
.page-hero-industries { background-image: url('assets/images/automotive.jpg'); }
.page-hero-solutions { background-image: url('assets/images/gallery-4.jpg'); }
.page-hero-gallery { background-image: url('assets/images/gallery-2.jpg'); }
.page-hero-contact { background-image: url('assets/images/sustainability.jpg'); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 37, 23, .95), rgba(7, 37, 23, .68) 52%, rgba(7, 37, 23, .25)); }
.page-hero-content { position: relative; z-index: 2; padding: 90px 0 64px; color: #fff; max-width: 850px; margin-left: max(20px, calc((100% - 1180px) / 2)); margin-right: 20px; }
.page-hero-content h1 { margin: 0 0 18px; font-size: clamp(2.7rem, 5.2vw, 5rem); line-height: 1; max-width: 900px; }
.page-hero-content p { max-width: 720px; color: rgba(255,255,255,.84); font-size: 1.1rem; }
.soft-section { background: var(--bg); }
.values-layout { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.value-panel { padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(145deg, #fff, #f3f9ef); }
.value-panel h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.15; margin: 0 0 14px; }
.value-panel p { margin: 0; color: var(--muted); }

.product-catalog { display: grid; gap: 34px; }
.catalog-card { display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border-radius: 28px; border: 1px solid var(--line); background: #fff; box-shadow: 0 15px 34px rgba(12, 68, 38, .08); }
.catalog-card:nth-child(even) .catalog-image { order: 2; }
.catalog-image { min-height: 430px; overflow: hidden; }
.catalog-image img { width: 100%; height: 100%; object-fit: cover; }
.catalog-content { padding: 34px; }
.catalog-type { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: #edf6df; color: var(--primary); font-size: .75rem; font-weight: 800; letter-spacing: .1em; }
.catalog-content h2 { margin: 15px 0 10px; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.1; }
.catalog-content > p { color: var(--muted); }
.spec-table { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 22px 0; }
.spec-table div { padding: 13px 15px; border-radius: 14px; background: var(--bg); border: 1px solid var(--line); }
.spec-table span, .spec-table strong { display: block; }
.spec-table span { color: var(--muted); font-size: .82rem; }
.spec-table strong { font-size: .96rem; }
.feature-list { display: grid; gap: 9px; margin: 18px 0 22px; }
.feature-list li { position: relative; padding-left: 24px; color: #355345; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 900; }
.text-link { color: var(--primary); font-weight: 800; }
.text-link:hover { color: var(--accent-dark); }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-card { padding: 26px; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 24px rgba(15, 70, 39, .06); }
.process-card > span { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; font-weight: 900; margin-bottom: 18px; }
.process-card h3 { margin: 0 0 9px; }
.process-card p { margin: 0; color: var(--muted); }
.compare-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; }
.comparison-table { border-radius: 24px; overflow: hidden; border: 1px solid var(--line); }
.comparison-row { display: grid; grid-template-columns: 1fr 1fr; padding: 17px 20px; background: #fff; border-bottom: 1px solid var(--line); gap: 20px; }
.comparison-row:last-child { border-bottom: 0; }
.comparison-row strong { color: var(--primary); }
.comparison-head { background: var(--primary); color: #fff; font-weight: 800; }
.comparison-head strong { color: var(--accent); }

.industry-detail-section { overflow: hidden; }
.industry-detail { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.industry-detail.reverse .industry-detail-image { order: 2; }
.industry-detail-image { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.industry-detail-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.industry-detail-copy h2 { font-size: clamp(2rem, 3.5vw, 3.3rem); line-height: 1.1; margin: 0 0 15px; }
.industry-detail-copy p { color: var(--muted); }

.solution-showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.solution-showcase { overflow: hidden; border-radius: 28px; border: 1px solid var(--line); background: #fff; box-shadow: 0 12px 30px rgba(12, 55, 31, .07); }
.solution-showcase img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.solution-showcase > div { padding: 27px; }
.solution-showcase h2 { margin: 0 0 12px; line-height: 1.15; }
.solution-showcase p { color: var(--muted); }

.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.filter-btn { border: 1px solid var(--line); background: #fff; color: var(--ink); padding: 11px 18px; border-radius: 999px; font-weight: 700; cursor: pointer; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.gallery-page-grid .gallery-item { position: relative; transition: opacity .25s ease, transform .25s ease; }
.gallery-page-grid .gallery-item.hidden { display: none; }
.gallery-item figcaption { padding: 14px 16px; font-weight: 700; background: #fff; }

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 40px; align-items: start; }
.contact-info h2 { font-size: clamp(2.1rem, 3.7vw, 3.3rem); line-height: 1.1; margin: 0 0 15px; }
.contact-info > p { color: var(--muted); }
.contact-info-card { padding: 20px; border-radius: 20px; background: var(--bg); border: 1px solid var(--line); margin-top: 14px; }
.contact-info-card h3, .contact-info-card p { margin: 0; }
.contact-info-card p { color: var(--muted); margin-top: 5px; }
.warning-card { background: #fffbea; border-color: #eee0a1; }
.enquiry-form { padding: 30px; border-radius: 28px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.enquiry-form label { display: grid; gap: 8px; font-weight: 700; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { width: 100%; border: 1px solid #ccd9ce; border-radius: 13px; padding: 14px 15px; font: inherit; color: var(--ink); background: #fbfdfb; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { outline: 3px solid rgba(164, 200, 58, .22); border-color: var(--primary); }
.file-label span { font-size: .82rem; color: var(--muted); font-weight: 400; }
.form-message { margin: 0; font-weight: 700; color: var(--primary); }

@media (max-width: 1080px) {
  .values-layout, .solution-showcase-grid, .contact-layout, .compare-wrap { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-card { grid-template-columns: 1fr; }
  .catalog-card:nth-child(even) .catalog-image { order: 0; }
  .industry-detail { grid-template-columns: 1fr; }
  .industry-detail.reverse .industry-detail-image { order: 0; }
}
@media (max-width: 760px) {
  .page-hero { min-height: 410px; }
  .page-hero-content { padding: 80px 0 50px; margin-left: 20px; }
  .process-grid, .spec-table, .form-row { grid-template-columns: 1fr; }
  .catalog-image { min-height: 280px; }
  .catalog-content { padding: 24px; }
  .comparison-row { grid-template-columns: 1fr; gap: 3px; }
  .site-nav a.active:not(.btn)::after { display: none; }
}

/* 2026 premium visual system */
:root {
  --primary: #27764d;
  --primary-dark: #173e2c;
  --accent: #b9e878;
  --accent-dark: #76a83f;
  --ink: #183427;
  --muted: #65786e;
  --line: #dce9df;
  --bg: #f3f8f1;
  --white: #fff;
  --shadow: 0 24px 70px rgba(31, 79, 51, .12);
  --radius: 30px;
  --container: min(1240px, calc(100% - 64px));
}

html { scroll-padding-top: 100px; }
body {
  background: #fbfdf9;
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: -.01em;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 8% 18%, rgba(185,232,120,.15), transparent 25%), radial-gradient(circle at 92% 72%, rgba(82,151,103,.09), transparent 30%);
}
::selection { background: var(--accent); color: var(--primary-dark); }
.section { padding: clamp(90px, 10vw, 150px) 0; }
.section-head { max-width: 820px; margin-bottom: 52px; }
.section-head h2, .text-block h2, .cta-box h2, .sustainability-copy h2, .industry-detail-copy h2, .contact-info h2 {
  font-size: clamp(2.35rem, 4.5vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 650;
}
.section-head p, .text-block p, .cta-box p, .sustainability-copy p, .hero-copy p, .page-hero-content p {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}
.section-tag, .eyebrow, .catalog-type {
  padding: 8px 12px;
  border-radius: 999px;
  background: #e7f5df;
  color: var(--primary);
  letter-spacing: .16em;
  font-size: .7rem;
  font-weight: 800;
}
.eyebrow { margin-bottom: 22px; }
.btn {
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 15px;
  background: var(--primary-dark);
  box-shadow: 0 10px 30px rgba(23,62,44,.18);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, background .35s ease;
}
.btn::after { content: "\2197"; font-size: 1rem; transition: transform .3s ease; }
.btn:hover { transform: translateY(-4px); background: var(--primary); box-shadow: 0 18px 40px rgba(23,62,44,.22); }
.btn:hover::after { transform: translate(3px,-3px); }
.btn-outline { box-shadow: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  background: transparent;
  border: 0;
  transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}
.site-header.scrolled { background: rgba(253,255,251,.9); backdrop-filter: blur(22px); box-shadow: 0 1px 0 rgba(27,72,48,.1); }
.nav-wrap { min-height: 92px; }
.brand { padding: 8px 14px; border-radius: 14px; background: rgba(255,255,255,.92); box-shadow: 0 8px 30px rgba(25,58,39,.08); }
.brand img { height: 50px; }
.site-nav { gap: 30px; font-size: .92rem; }
.site-nav a:not(.btn) { color: #fff; position: relative; }
.site-nav a:not(.btn)::before { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px; background: var(--accent); transition: width .3s ease; }
.site-nav a:not(.btn):hover::before { width: 100%; }
.site-header.scrolled .site-nav a:not(.btn) { color: var(--ink); }
.site-nav .btn { background: var(--accent); color: var(--primary-dark); box-shadow: none; }
.site-nav .btn::after { display: none; }
.site-nav a.active:not(.btn)::after { display: none; }
.site-nav a.active:not(.btn)::before { width: 100%; }
.nav-progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: linear-gradient(90deg,var(--primary),var(--accent)); }

.hero {
  min-height: 100svh;
  background: var(--bg);
  isolation: isolate;
}
.hero-media { left: 44%; border-radius: 0 0 0 70px; overflow: hidden; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(243,248,241,1),rgba(243,248,241,.08) 55%), linear-gradient(0deg,rgba(19,61,42,.2),transparent); }
.hero-media img { animation: heroZoom 16s ease-out both; }
.hero-overlay { background: radial-gradient(circle at 20% 35%, rgba(185,232,120,.28), transparent 24%); }
.hero-content { grid-template-columns: minmax(0,1fr) 340px; align-items: center; padding: 160px 0 90px; }
.hero-copy { max-width: 780px; color: var(--ink); }
.hero-copy h1 { max-width: 760px; font-size: clamp(4rem, 7.4vw, 7.6rem); line-height: .88; letter-spacing: -.075em; font-weight: 650; }
.hero-copy h1 span { display: block; color: var(--primary); }
.hero-copy p { color: var(--muted); max-width: 630px; }
.hero .btn-outline { color: var(--primary-dark); border-color: #abcab2; background: rgba(255,255,255,.65); backdrop-filter: blur(12px); }
.hero-points li { color: var(--primary-dark); border-color: rgba(39,118,77,.18); background: rgba(255,255,255,.7); backdrop-filter: blur(12px); }
.hero-card {
  margin-top: 150px;
  color: var(--ink);
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.9);
  backdrop-filter: blur(20px);
}
.hero-card h3 { font-size: .78rem; text-transform: uppercase; letter-spacing: .15em; color: var(--primary); }
.mini-stats { grid-template-columns: 1fr 1fr; }
.mini-stats div { background: #f2f8ee; }
.mini-stats strong { color: var(--primary-dark); }
.mini-stats span { color: var(--muted); font-size: .8rem; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.intro-strip { background: var(--primary-dark); border: 0; color: white; }
.intro-grid { gap: 0; padding: 0; }
.intro-item { position: relative; padding: 36px 28px; border-radius: 0; background: transparent; box-shadow: none; }
.intro-item + .intro-item { border-left: 1px solid rgba(255,255,255,.12); }
.intro-item strong { color: var(--accent); font-size: 1.05rem; }
.intro-item span { color: rgba(255,255,255,.65); }
.two-col { gap: clamp(45px,7vw,100px); }
.image-frame, .product-highlight, .workflow-image, .sustainability-media { border-radius: var(--radius); box-shadow: var(--shadow); }
.image-frame { transform: rotate(1.5deg); }
.image-frame img, .sustainability-media img { min-height: 560px; }
.bullet-grid div { padding: 16px 18px; border: 0; border-radius: 13px; background: #eef6e9; }

.products { background: var(--primary-dark); color: #fff; border-radius: 70px 70px 0 0; }
.products .section-tag { background: rgba(185,232,120,.13); color: var(--accent); }
.products .section-head p, .products .card p, .products .card li { color: rgba(255,255,255,.63); }
.product-highlight { height: min(54vw,620px); }
.product-highlight img { transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.product-highlight:hover img { transform: scale(1.035); }
.product-grid { grid-template-columns: repeat(2,1fr); margin-top: -90px; position: relative; padding: 0 35px; }
.card { padding: 32px; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); backdrop-filter: blur(18px); box-shadow: none; transition: transform .4s ease, background .4s ease; }
.card:hover { transform: translateY(-8px); background: rgba(255,255,255,.12); }
.card h3 { font-size: 1.45rem; }

.pooling { background: #fbfdf9; }
.pooling-layout { gap: clamp(40px,8vw,110px); }
.workflow-image { box-shadow: none; background: #edf6e8; padding: 20px; }
.step { padding: 23px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.step span, .process-card > span { background: var(--accent); color: var(--primary-dark); }
.step h3 { font-size: 1.35rem; }
.industry-grid { gap: 16px; }
.industry-card { position: relative; min-height: 600px; border: 0; border-radius: var(--radius); box-shadow: none; }
.industry-card img { position: absolute; inset: 0; height: 100%; aspect-ratio: auto; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.industry-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent,rgba(12,40,27,.92)); }
.industry-card:hover img { transform: scale(1.05); }
.industry-content { position: absolute; z-index: 2; inset: auto 0 0; padding: 32px; color: #fff; }
.industry-content h3 { font-size: 2rem; }
.industry-content p { color: rgba(255,255,255,.72); }
.benefit-grid { grid-template-columns: repeat(12,1fr); gap: 16px; }
.benefit { grid-column: span 4; min-height: 230px; padding: 32px; border: 0; border-radius: 24px; background: #fff; box-shadow: 0 16px 50px rgba(41,83,55,.07); transition: transform .35s ease; }
.benefit:nth-child(1), .benefit:nth-child(6) { grid-column: span 5; }
.benefit:nth-child(2), .benefit:nth-child(5) { grid-column: span 3; }
.benefit:hover { transform: translateY(-7px); }
.benefit h3 { font-size: 1.45rem; }
.sustainability-wrap { padding: clamp(30px,5vw,70px); gap: 70px; border: 0; border-radius: 45px; background: #e9f4e4; }
.check-list li::before, .feature-list li::before { content: "\2713"; }
.gallery-grid { gap: 14px; }
.gallery-item { border-radius: 20px; box-shadow: none; }
.gallery-item:nth-child(2), .gallery-item:nth-child(5) { transform: translateY(30px); }
.cta { background: transparent; padding-top: 50px; }
.cta-box { position: relative; overflow: hidden; padding: clamp(35px,6vw,75px); border-radius: 40px; background: var(--primary-dark); }
.cta-box::after { content: ""; position: absolute; width: 380px; height: 380px; right: -120px; top: -180px; border: 70px solid rgba(185,232,120,.12); border-radius: 50%; }
.cta-box > * { position: relative; z-index: 1; }
.cta-box .section-tag { background: rgba(185,232,120,.12); color: var(--accent); }
.cta .btn { background: var(--accent); color: var(--primary-dark); }
.cta .btn-outline { background: transparent; color: #fff; }
.site-footer { margin-top: 90px; padding-top: 80px; background: #10281d; }
.footer-grid { gap: 50px; }
.footer-logo { background: white; padding: 10px 14px; border-radius: 12px; }

.page-hero { min-height: 72svh; align-items: center; border-radius: 0 0 60px 60px; background-attachment: fixed; }
.page-hero-overlay { background: linear-gradient(90deg,rgba(18,62,41,.91),rgba(18,62,41,.52) 58%,rgba(18,62,41,.12)); }
.page-hero-content { padding: 180px 0 100px; margin: 0 auto; width: var(--container); max-width: none; }
.page-hero-content h1 { max-width: 980px; font-size: clamp(3.8rem,7vw,7rem); line-height: .9; letter-spacing: -.065em; font-weight: 650; }
.page-hero-content p { max-width: 700px; }
.soft-section { background: #eff6eb; }
.values-layout { gap: 16px; }
.value-panel, .process-card { border: 0; border-radius: 24px; background: #fff; box-shadow: 0 14px 45px rgba(37,77,51,.07); }
.value-panel { padding: 42px; }
.process-grid { gap: 16px; }
.process-card { padding: 32px; transition: transform .35s ease; }
.process-card:hover { transform: translateY(-7px); }
.catalog-card { min-height: 590px; border: 0; border-radius: 34px; box-shadow: 0 22px 60px rgba(35,76,49,.1); }
.catalog-image { min-height: 560px; }
.catalog-image img { transition: transform .9s cubic-bezier(.2,.8,.2,1); }
.catalog-card:hover .catalog-image img { transform: scale(1.04); }
.catalog-content { padding: clamp(30px,5vw,64px); align-self: center; }
.catalog-content h2 { font-size: clamp(2.2rem,3.5vw,3.5rem); letter-spacing: -.045em; }
.spec-table div { border: 0; background: #eff6eb; }
.text-link { display: inline-flex; margin-top: 10px; padding-bottom: 4px; border-bottom: 1px solid currentColor; }
.industry-detail { gap: clamp(45px,8vw,110px); }
.industry-detail-image { border-radius: 34px; box-shadow: none; }
.industry-detail-image img { aspect-ratio: 1/1; transition: transform .9s ease; }
.industry-detail-image:hover img { transform: scale(1.04); }
.solution-showcase-grid { gap: 18px; }
.solution-showcase { border: 0; border-radius: 30px; box-shadow: 0 18px 50px rgba(38,79,52,.08); }
.solution-showcase > div { padding: 36px; }
.solution-showcase h2 { font-size: 2rem; letter-spacing: -.035em; }
.filter-btn { padding: 12px 20px; border: 0; background: #eaf3e6; transition: transform .25s ease, background .25s ease; }
.filter-btn:hover, .filter-btn.active { background: var(--primary-dark); }
.gallery-page-grid .gallery-item { transform: none; }
.gallery-page-grid .gallery-item img { aspect-ratio: 1/1; }
.enquiry-form { padding: clamp(28px,5vw,55px); border: 0; border-radius: 32px; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { padding: 16px; border: 0; background: #eff6eb; }
.contact-info-card { border: 0; padding: 24px; background: #edf5e9; }

.reveal { transform: translateY(45px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 1080px) {
  .hero-media { left: 30%; opacity: .42; }
  .hero-media::after { background: linear-gradient(90deg,#f3f8f1 5%,rgba(243,248,241,.65) 58%,rgba(243,248,241,.25)); }
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { margin-top: 0; max-width: 580px; }
  .site-nav { gap: 18px; }
  .benefit, .benefit:nth-child(n) { grid-column: span 6; }
}
@media (max-width: 860px) {
  :root { --container: min(100% - 34px, 1240px); }
  .site-header { background: rgba(253,255,251,.9); backdrop-filter: blur(20px); }
  .nav-wrap { min-height: 78px; }
  .site-nav { top: calc(100% + 2px); left: 17px; right: 17px; padding: 22px; border: 0; border-radius: 22px; }
  .site-nav a:not(.btn) { color: var(--ink); width: 100%; padding: 7px 0; }
  .hero-content { padding-top: 135px; }
  .hero-copy h1 { font-size: clamp(3.4rem,14vw,6rem); }
  .hero-card { display: none; }
  .page-hero { min-height: 70svh; background-attachment: scroll; border-radius: 0 0 35px 35px; }
  .page-hero-content { padding-top: 150px; }
  .page-hero-content h1 { font-size: clamp(3.2rem,12vw,5.5rem); }
  .product-grid { margin-top: 20px; padding: 0; }
  .industry-card { min-height: 520px; }
}
@media (max-width: 640px) {
  .section { padding: 85px 0; }
  .hero-media { left: 0; opacity: .3; border-radius: 0; }
  .hero-media::after { background: linear-gradient(90deg,rgba(243,248,241,.96),rgba(243,248,241,.63)); }
  .hero-copy h1 { font-size: clamp(3.2rem,16vw,4.7rem); }
  .hero-points { display: none; }
  .intro-grid { grid-template-columns: 1fr 1fr; }
  .intro-item { padding: 25px 18px; }
  .intro-item + .intro-item { border-left: 0; }
  .intro-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,.12); }
  .intro-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.12); }
  .product-grid, .industry-grid { grid-template-columns: 1fr; }
  .benefit, .benefit:nth-child(n) { grid-column: span 12; min-height: auto; }
  .image-frame img, .sustainability-media img { min-height: 380px; }
  .gallery-item:nth-child(n) { transform: none; }
  .catalog-card { min-height: 0; }
  .catalog-image { min-height: 310px; }
  .footer-grid { gap: 34px; }
}
