:root {
  --green: #155f28;
  --green-2: #246f35;
  --green-dark: #0d3319;
  --orange: #f26922;
  --orange-dark: #c94711;
  --ink: #102015;
  --muted: #617066;
  --line: #dbe7dd;
  --paper: #f7fbf7;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 32, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,
.panel-icon,
.card-icon {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon {
  width: 1.1em;
  height: 1.1em;
}

.panel-icon,
.card-icon {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 251, 247, 0.88);
  border-bottom: 1px solid rgba(21, 95, 40, 0.12);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, padding 180ms ease;
}

.site-header.scrolled {
  padding-block: 12px;
  box-shadow: 0 12px 36px rgba(16, 32, 21, 0.08);
}

.brand img {
  width: min(260px, 52vw);
  height: auto;
  transition: transform 220ms ease;
}

.brand:hover img {
  transform: translateY(-1px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--green-dark);
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange-dark);
  outline: none;
}

.nav-cta {
  color: var(--white) !important;
  background: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  padding: 160px clamp(20px, 5vw, 72px) 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 22%, rgba(242, 105, 34, 0.15), transparent 28%),
    linear-gradient(135deg, #f8fcf8 0%, #eef7ee 52%, #fff3ec 100%);
}

.hero-bg {
  position: absolute;
  inset: 84px 0 0 auto;
  width: min(58vw, 820px);
  height: calc(100% - 84px);
  pointer-events: none;
  opacity: 0.98;
}

.hero-vector {
  width: 100%;
  height: 100%;
}

.vector-wave {
  fill: none;
  stroke: rgba(242, 105, 34, 0.45);
  stroke-width: 10;
  stroke-linecap: round;
  animation: vectorSlide 7s ease-in-out infinite alternate;
}

.vector-wave.secondary {
  stroke: rgba(21, 95, 40, 0.24);
  stroke-width: 7;
  animation-delay: 450ms;
}

.molecule,
.lab-lines {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.molecule {
  stroke: rgba(21, 95, 40, 0.72);
  stroke-width: 9;
  animation: vectorFloat 8s ease-in-out infinite;
}

.lab-lines {
  stroke: rgba(242, 105, 34, 0.72);
  stroke-width: 8;
  animation: vectorFloat 9s ease-in-out infinite reverse;
}

.vector-fill {
  fill: url("#heroVectorGrad");
  animation: vectorPulse 8s ease-in-out infinite;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 112px auto auto 0;
  width: 42%;
  height: 8px;
  background: var(--orange);
}

.hero-content,
.hero-panel {
  position: relative;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  color: var(--green-dark);
  font-size: clamp(3.2rem, 9vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  color: var(--green-dark);
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  color: var(--green-dark);
  font-size: 1.12rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-lede {
  max-width: 620px;
  color: var(--green);
  font-size: clamp(1.22rem, 2.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(242, 105, 34, 0.22);
}

.button.secondary {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--line);
}

.button.light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero-panel {
  align-self: stretch;
  display: grid;
  align-content: end;
  gap: 14px;
}

.hero-panel div {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(21, 95, 40, 0.15);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  animation: cardLift 700ms ease both;
}

.hero-panel div:nth-child(2) {
  animation-delay: 90ms;
}

.hero-panel div:nth-child(3) {
  animation-delay: 180ms;
}

.hero-panel .panel-icon {
  margin-bottom: 14px;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 1.08rem;
}

.hero-panel span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: clamp(70px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--white);
}

.section-copy p {
  max-width: 860px;
  font-size: 1.06rem;
}

.about-visuals {
  display: grid;
  gap: 16px;
}

.about-visuals img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 32, 21, 0.12);
}

.about-visuals img:first-child {
  transform: translateX(-18px);
}

.about-visuals img:last-child {
  transform: translateX(18px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 74px);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.solution-card,
.process-steps article,
.service-list article,
.mission-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 32, 21, 0.07);
}

.solution-card {
  min-height: 250px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 105, 34, 0.36);
  box-shadow: 0 18px 44px rgba(16, 32, 21, 0.11);
}

.solution-card:hover .icon,
.service-list article:hover .card-icon,
.process-steps article:hover .card-icon {
  animation: iconPulse 620ms ease;
}

.solution-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

.solution-card span .icon {
  width: 21px;
  height: 21px;
}

.statement {
  padding: 58px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--green-dark);
}

.image-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(230px, 18vw);
  gap: 18px;
  padding: clamp(32px, 5vw, 70px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

.showcase-card {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-dark);
  box-shadow: 0 18px 44px rgba(16, 32, 21, 0.12);
}

.showcase-card.large {
  grid-row: span 2;
}

.showcase-card.wide {
  grid-column: span 2;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 680ms ease, filter 680ms ease;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 36, 18, 0.78));
}

.showcase-card figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-weight: 800;
  line-height: 1.25;
}

.showcase-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.statement p {
  max-width: 920px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
}

.mission {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  background: var(--white);
}

.mission-card {
  padding: clamp(28px, 4vw, 48px);
}

.mission-card h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.process {
  background: linear-gradient(180deg, #f7fbf7, #ffffff);
}

.process > h2 {
  max-width: 900px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.process-steps article {
  padding: 26px;
}

.card-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  padding: 8px;
  border-radius: 8px;
  color: var(--orange-dark);
  background: #fff2ea;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 420px;
}

.product-tabs {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.tab-list {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  background: #eef7ee;
}

.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 1;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: var(--green-dark);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tab.active {
  color: var(--white);
  background: var(--green);
}

.tab-panel {
  padding: clamp(26px, 4vw, 44px);
}

.tab-panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tab-panel li {
  position: relative;
  min-height: 112px;
  padding: 20px 20px 20px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--paper);
  font-weight: 800;
  line-height: 1.35;
}

.tab-panel li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 27px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(242, 105, 34, 0.12);
}

.services {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  background: var(--white);
}

.services h2 {
  max-width: 980px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-list article {
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-list article:hover,
.process-steps article:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 95, 40, 0.26);
  box-shadow: 0 18px 44px rgba(16, 32, 21, 0.1);
}

.services-visual {
  position: sticky;
  top: 110px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.services-visual img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 760ms ease;
}

.services-visual:hover img {
  transform: scale(1.06);
}

.closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(54px, 8vw, 90px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(13, 51, 25, 0.96), rgba(21, 95, 40, 0.94)),
    radial-gradient(circle at 92% 12%, rgba(242, 105, 34, 0.36), transparent 32%);
}

.closing h2,
.closing p {
  color: var(--white);
}

.closing h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.closing-copy {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78) !important;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  min-width: min(100%, 430px);
}

.quote {
  margin-bottom: 14px;
  color: #ffd7c3 !important;
  font-weight: 800;
}

.site-footer {
  padding: clamp(42px, 6vw, 76px) clamp(20px, 5vw, 72px) 26px;
  background: #0b2714;
  border-top: 6px solid var(--orange);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.5fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.footer-brand img {
  width: min(310px, 72vw);
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 6px;
  color: #ffd7c3;
  font-weight: 800;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-links h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
}

.footer-links a,
.footer-links p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-links .icon,
.footer-email .icon {
  color: var(--orange);
}

.footer-links a + a,
.footer-links p + a {
  margin-top: 11px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-email:hover,
.footer-email:focus-visible {
  color: #ffd7c3;
  outline: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: clamp(34px, 5vw, 62px);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .split,
  .mission,
  .services {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .process-steps,
  .tab-panel ul {
    grid-template-columns: 1fr;
  }

  .image-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-card.large,
  .showcase-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .services-visual {
    position: relative;
    top: auto;
  }

  .section-head,
  .closing,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .closing-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .hero {
    padding-top: 132px;
  }

  .hero::before {
    width: 66%;
    top: 96px;
  }

  .solution-grid,
  .service-list,
  .image-showcase {
    grid-template-columns: 1fr;
  }

  .tab-list {
    flex-direction: column;
  }

  .about-visuals img:first-child,
  .about-visuals img:last-child {
    transform: none;
  }

  .services-visual img {
    min-height: 320px;
  }
}

@keyframes cardLift {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vectorFloat {
  from {
    transform: translate3d(0, -8px, 0);
  }

  to {
    transform: translate3d(0, 10px, 0);
  }
}

@keyframes vectorSlide {
  from {
    transform: translate3d(-18px, 0, 0);
  }

  to {
    transform: translate3d(18px, -8px, 0);
  }
}

@keyframes vectorPulse {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.12) rotate(-3deg);
  }
}

/* Professional design refresh */
:root {
  --green: #16602b;
  --green-2: #238543;
  --green-dark: #092414;
  --orange: #f36a21;
  --orange-dark: #cf4f13;
  --ink: #0d1f14;
  --muted: #637267;
  --line: #d7e5d9;
  --paper: #f3f7f1;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(7, 24, 13, 0.14);
}

body {
  background:
    linear-gradient(90deg, rgba(21, 95, 40, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f7faf6 0%, #eef5ef 100%);
  background-size: 42px 42px, auto;
}

.site-header {
  inset: 18px clamp(16px, 4vw, 54px) auto;
  width: auto;
  border: 1px solid rgba(21, 95, 40, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(13, 31, 20, 0.08);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
}

.nav-cta {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 10px 22px rgba(21, 95, 40, 0.2);
}

.hero {
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  align-items: center;
  padding: 176px clamp(20px, 5vw, 72px) 42px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(7, 31, 17, 0.96) 0%, rgba(9, 47, 25, 0.92) 48%, rgba(15, 73, 36, 0.82) 100%),
    radial-gradient(circle at 78% 18%, rgba(242, 105, 34, 0.35), transparent 32%),
    linear-gradient(135deg, #0c2616, #123f22);
}

.hero::before {
  inset: 128px auto auto clamp(20px, 5vw, 72px);
  width: 180px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(242, 105, 34, 0));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, black 28%, black 86%, transparent);
  pointer-events: none;
}

.hero-bg {
  inset: 104px -6vw 0 auto;
  width: min(62vw, 900px);
  height: calc(100% - 104px);
  opacity: 0.82;
  filter: drop-shadow(0 24px 80px rgba(242, 105, 34, 0.16));
}

.vector-wave {
  stroke: rgba(242, 105, 34, 0.55);
}

.vector-wave.secondary {
  stroke: rgba(255, 255, 255, 0.22);
}

.molecule {
  stroke: rgba(255, 255, 255, 0.42);
}

.lab-lines {
  stroke: rgba(242, 105, 34, 0.72);
}

.hero-content {
  z-index: 1;
  max-width: 880px;
}

.hero .eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffd1bb;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(3.4rem, 8.3vw, 7.1rem);
  line-height: 0.94;
}

.hero-lede {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.2rem, 1.9vw, 1.65rem);
  font-weight: 600;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-actions {
  margin-top: 38px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
}

.button.primary {
  background: linear-gradient(135deg, var(--orange), #ff884a);
  box-shadow: 0 16px 34px rgba(242, 105, 34, 0.28);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
}

.hero-panel {
  z-index: 1;
  align-self: center;
  gap: 16px;
}

.hero-panel div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--orange);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.hero-panel strong {
  color: var(--white);
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.68);
}

.hero-panel .panel-icon {
  color: #ffad84;
}

.hero-strip {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-strip div {
  min-height: 86px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-strip span {
  display: block;
  margin-bottom: 8px;
  color: #ffb28c;
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-strip strong {
  color: var(--white);
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  line-height: 1.3;
}

.section {
  padding: clamp(86px, 10vw, 136px) clamp(20px, 5vw, 72px);
}

.intro {
  position: relative;
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 1fr) minmax(300px, 0.48fr);
  background:
    linear-gradient(180deg, #ffffff, #f7fbf7);
}

.intro::before,
.products::before,
.process::before {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 95, 40, 0.18), transparent);
}

.section-copy h2,
.split h2,
.process h2,
.products h2,
.services h2 {
  max-width: 880px;
}

.about-visuals {
  position: relative;
}

.about-visuals::before {
  content: "";
  position: absolute;
  inset: 28px -18px -18px 28px;
  border: 1px solid rgba(242, 105, 34, 0.28);
  border-radius: 8px;
}

.about-visuals img {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.split {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(21, 95, 40, 0.04), transparent 38%),
    var(--paper);
}

.solution-card,
.process-steps article,
.service-list article,
.mission-card,
.product-tabs {
  border-color: rgba(21, 95, 40, 0.12);
  box-shadow: 0 18px 52px rgba(8, 34, 18, 0.08);
}

.solution-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
}

.solution-card::after,
.mission-card::after,
.service-list article::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.solution-card:hover::after,
.mission-card:hover::after,
.service-list article:hover::after {
  transform: scaleX(1);
}

.solution-card span,
.card-icon {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--white);
}

.image-showcase {
  grid-template-columns: 0.9fr 1.08fr 0.92fr;
  grid-auto-rows: minmax(250px, 17vw);
  padding-top: clamp(70px, 8vw, 112px);
  padding-bottom: clamp(70px, 8vw, 112px);
  background:
    linear-gradient(180deg, #ffffff 0%, #edf5ef 100%);
}

.showcase-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  padding: clamp(26px, 4vw, 40px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 36, 20, 0.96), rgba(22, 96, 43, 0.92)),
    radial-gradient(circle at 85% 8%, rgba(242, 105, 34, 0.32), transparent 28%);
  box-shadow: var(--shadow);
}

.showcase-intro .section-label,
.showcase-intro h2,
.showcase-intro p {
  color: var(--white);
}

.showcase-intro .section-label {
  color: #ffb28c;
}

.showcase-intro h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
}

.showcase-intro p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.showcase-card {
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 66px rgba(7, 31, 17, 0.16);
}

.showcase-card figcaption {
  bottom: 22px;
  font-size: 1.05rem;
}

.statement {
  padding-block: clamp(70px, 9vw, 116px);
  background:
    linear-gradient(135deg, rgba(9, 36, 20, 0.96), rgba(18, 82, 38, 0.94)),
    radial-gradient(circle at 85% 35%, rgba(242, 105, 34, 0.42), transparent 34%);
}

.mission {
  gap: 24px;
  background: #ffffff;
}

.mission-card,
.service-list article {
  position: relative;
  overflow: hidden;
}

.mission-card {
  min-height: 360px;
}

.process {
  position: relative;
  background:
    linear-gradient(180deg, #f4faf4, #ffffff);
}

.process-steps article {
  min-height: 260px;
}

.product-tabs {
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.tab-list {
  border: 1px solid rgba(21, 95, 40, 0.12);
  border-radius: 8px 8px 0 0;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(8, 34, 18, 0.06);
}

.tab {
  min-height: 58px;
}

.tab.active {
  background: linear-gradient(135deg, var(--green), var(--green-2));
}

.tab-panel {
  border: 1px solid rgba(21, 95, 40, 0.12);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(8, 34, 18, 0.09);
}

.tab-panel li {
  background: linear-gradient(180deg, #f8fbf8, #eef7ef);
}

.services {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 58%, #f1f7f2 58%, #f1f7f2 100%);
}

.services-visual {
  border: 1px solid rgba(21, 95, 40, 0.12);
}

.closing {
  background:
    linear-gradient(135deg, rgba(7, 31, 17, 0.97), rgba(21, 95, 40, 0.94)),
    radial-gradient(circle at 88% 14%, rgba(242, 105, 34, 0.42), transparent 30%);
}

.site-footer {
  background:
    linear-gradient(180deg, #0b2714, #07180d);
}

@media (max-width: 980px) {
  .site-header {
    inset: 12px 14px auto;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

  .hero-bg {
    inset: 74px -22vw auto auto;
    width: 100vw;
    height: 560px;
    opacity: 0.34;
  }

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

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

  .image-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-intro {
    grid-column: 1 / -1;
  }

  .services {
    background: #ffffff;
  }
}

@media (max-width: 760px) {
  .site-header {
    border-radius: 8px;
  }

  .brand img {
    width: min(210px, 56vw);
  }

  .hero {
    padding-top: 132px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 15vw, 4.6rem);
  }

  .hero-tags,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-tags span,
  .button {
    width: 100%;
  }

  .hero-bg {
    width: 132vw;
    height: 430px;
  }

  .image-showcase {
    grid-template-columns: 1fr;
  }
}

/* Contact section upgrade */
.closing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: center;
  gap: clamp(30px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(76px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.closing::before {
  content: "";
  position: absolute;
  inset: 20px clamp(20px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.closing::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 420px;
  aspect-ratio: 1;
  border: 42px solid rgba(242, 105, 34, 0.16);
  border-radius: 50%;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  max-width: 820px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.contact-card {
  min-height: 158px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(242, 105, 34, 0.48);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.contact-card .card-icon {
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff8a4f);
}

.contact-card span,
.form-head span,
.contact-form label span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.primary-contact {
  background: linear-gradient(135deg, rgba(242, 105, 34, 0.24), rgba(255, 255, 255, 0.08));
}

.contact-form {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.form-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(21, 95, 40, 0.12);
}

.form-head span,
.contact-form label span {
  color: var(--orange-dark);
}

.form-head h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(21, 95, 40, 0.16);
  border-radius: 8px;
  background: #f7fbf7;
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
  padding: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(242, 105, 34, 0.72);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(242, 105, 34, 0.12);
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

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

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

/* Contact form removed: action panel plus stronger mobile behavior */
.contact-action-panel {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.07)),
    radial-gradient(circle at 100% 0%, rgba(242, 105, 34, 0.2), transparent 34%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.action-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff8a4f);
  box-shadow: 0 18px 34px rgba(242, 105, 34, 0.24);
}

.action-panel-icon .icon {
  width: 28px;
  height: 28px;
}

.contact-action-panel > span {
  display: block;
  margin-bottom: 10px;
  color: #ffbe9f;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-action-panel h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

.contact-action-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-actions .button {
  width: 100%;
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
  }

  .hero-panel {
    align-self: stretch;
  }
}

@media (max-width: 980px) {
  h1 {
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.95rem, 7vw, 3.4rem);
  }

  .section {
    padding-block: clamp(58px, 11vw, 92px);
  }

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

  .contact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-main {
    gap: 34px;
  }
}

@media (max-width: 760px) {
  body {
    background-size: 30px 30px, auto;
  }

  .site-header {
    inset: 8px 10px auto;
    padding: 10px 12px;
  }

  .site-nav {
    left: 0;
    right: 0;
    margin-top: 8px;
  }

  .hero {
    gap: 24px;
    padding: 118px 18px 34px;
  }

  .hero::before {
    inset: 96px auto auto 18px;
    width: 112px;
  }

  .hero-bg {
    inset: 80px -54vw auto auto;
    width: 156vw;
    height: 390px;
    opacity: 0.25;
  }

  .hero-panel div,
  .hero-strip div,
  .solution-card,
  .process-steps article,
  .service-list article,
  .mission-card,
  .contact-card,
  .contact-action-panel {
    padding: 20px;
  }

  .hero-strip {
    margin-top: 4px;
  }

  .intro,
  .split,
  .mission,
  .services,
  .closing {
    gap: 24px;
  }

  .section {
    padding: 56px 18px;
  }

  .section-head {
    gap: 14px;
  }

  .about-visuals {
    gap: 10px;
  }

  .image-showcase {
    gap: 12px;
    padding: 52px 18px;
  }

  .showcase-card,
  .showcase-intro {
    min-height: 220px;
  }

  .tab {
    justify-content: flex-start;
    padding-inline: 14px;
  }

  .tab-panel {
    padding: 18px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-card {
    min-height: auto;
  }

  .closing {
    padding: 62px 18px;
  }

  .closing::before {
    inset: 14px;
  }

  .contact-actions {
    margin-top: 22px;
  }

  .footer-main,
  .footer-links {
    gap: 24px;
  }

  .site-footer {
    padding: 38px 18px 24px;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: min(180px, 56vw);
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    padding: 8px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 14vw, 3.4rem);
  }

  .hero-lede {
    font-size: 1.06rem;
  }

  .button {
    min-height: 50px;
    padding-inline: 16px;
  }

  .footer-brand img {
    width: min(250px, 76vw);
  }
}

/* Final hero mobile fix */
@media (max-width: 820px) {
  .hero {
    display: block;
    min-height: auto;
    padding: 122px 18px 34px;
  }

  .hero::before {
    inset: 94px auto auto 18px;
    width: 118px;
  }

  .hero::after {
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, black, black 62%, transparent);
  }

  .hero-bg {
    inset: 82px -70vw auto auto;
    width: 178vw;
    height: 390px;
    opacity: 0.22;
  }

  .hero-content {
    max-width: none;
  }

  .hero .eyebrow {
    max-width: 100%;
    padding: 7px 10px;
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(2.55rem, 13vw, 4.15rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .hero-lede {
    max-width: none;
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .hero-tags {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .hero-tags span {
    width: 100%;
    min-height: 36px;
    padding: 8px 12px;
    justify-content: center;
    text-align: center;
    font-size: 0.84rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

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

  .hero-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .hero-panel div {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    padding: 16px;
  }

  .hero-panel .panel-icon {
    grid-row: span 2;
    width: 26px;
    height: 26px;
    margin: 0;
  }

  .hero-panel strong {
    margin: 0;
    font-size: 0.98rem;
  }

  .hero-panel span {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .hero-strip {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .hero-strip div {
    min-height: auto;
    padding: 15px 16px;
  }
}

@media (max-width: 380px) {
  .hero {
    padding-inline: 14px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12.5vw, 3rem);
  }

  .hero-panel div {
    grid-template-columns: 1fr;
  }

  .hero-panel .panel-icon {
    grid-row: auto;
    margin-bottom: 8px;
  }
}
