/* ============================================================
   Gridstem — Homepage
   Implemented from Figma "Gridstem Design" (node 1:13 / HOME)
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ---------- Design tokens ---------- */
:root {
  --green: #496f33;
  --green-deep: #4b7f2a;
  --olive: #5e8b1a;
  --mint: #c5e5b3;
  --mint-soft: #afcd9e;
  --mint-2: #a6c892;
  --ink: #121212;
  --body: #4a5155;
  --dark: #20272d;
  --darker: #0e181e;
  --panel: rgba(18, 24, 29, 0.85);

  --bg-hero-end: #0e1c06;
  --bg-who: #f2f8f5;
  --bg-contact: #f1f5ef;

  --wrap: 1320px;
  --font-head: 'Cal Sans', 'DM Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --btn-shadow: 0 16px 5px rgba(4, 58, 83, 0.08);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; font-weight: 500;font-family: var(--font-head);}
html { scroll-behavior: smooth; scroll-padding-top: 150px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; }

.border-0{
  border:0 !important;
}
.padding-0{
  padding: 0 !important;
}
.mt-40{
  margin-top: 40px !important;
}
/* ---------- Helpers ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.eyebrow {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
}
.h2 {
  font-family: var(--font-head);
  font-size: 40px;
  line-height: 44px;
  font-weight: 400;
}
.h2 .accent { color: var(--green); }
.lead { font-size: 16px; line-height: 26px; color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px 12px 24px;
  border-radius: 16px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-head);
  font-size: 16px;
  box-shadow: var(--btn-shadow);
  transition: filter .15s ease, transform .15s ease;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn .ico {
  display: flex;
  padding: 4px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}
.btn .ico img { width: 24px; height: 24px; }
.btn--full { width: 100%; justify-content: center; padding-right: 24px; }
.btn--ghost { background: rgba(255, 255, 255, 0.07); box-shadow: 0 16px 10px rgba(4, 58, 83, 0.08); }
.btn--ghost .ico { background: rgba(255, 255, 255, 0.1); }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mint);
  font-family: var(--font-head);
  font-size: 14px;
}
.link-more img { width: 12px; height: 12px; }

/* "manufactured by" chip on images */
.mfr {
  position: absolute;
  left: 24px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
}
.mfr img { height: 28px; width: auto; }

/* ============================================================
   Top strip
   ============================================================ */
.topbar { background: var(--mint-soft); }
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding-block: 6px;
}
.topbar a, .topbar span { font-family: var(--font-head); font-size: 15px; color: var(--ink); }
.topbar .tb-left { display: flex; align-items: center; gap: 8px; }
.topbar .tb-left img { width: 16px; height: 16px; }
.topbar .tb-right { display: flex; align-items: center; gap: 12px; }
.topbar .socials { display: flex; align-items: center; gap: 12px; }
.topbar .socials img { width: 16px; height: 16px; }

/* ============================================================
   Fixed top area (strip + floating nav)
   ============================================================ */
.site-top {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
}
.site-top .topbar { max-height: 60px; overflow: hidden; transition: max-height .3s ease; }
.site-header { padding-top: 12px; transition: padding .3s ease; }
.site-header .wrap { padding-inline: 24px; }
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 13px 0 20px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.83);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
  transition: box-shadow .25s ease;
}
.nav__logo { height: 90px; width: auto; object-fit: contain; display: block; }

/* condensed state on scroll: hide the strip, dock the pill to the top */
.site-top.is-scrolled .topbar { max-height: 0; }
.site-top.is-scrolled .site-header { padding-top: 0; }
.site-top.is-scrolled .nav {
  border-radius: 0 0 13px 13px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
}
.nav__menu a {
  padding: 7px 16px;
  border-radius: 300px;
  font-family: var(--font-head);
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--ink);
  transition: background .15s ease, color .15s ease;
}
.nav__menu a.is-active,
.nav__menu a:hover { background: var(--ink); color: #fff; }
.nav__menu-cta { display: none; }

/* hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 300px 0 96px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.47), var(--bg-hero-end));
}
.hero__inner { display: flex; flex-direction: column; gap: 52px; }
.hero__pill {
  align-self: flex-start;
  padding: 7px 16px;
  border-left: 1px solid var(--mint);
  border-radius: 0 31px 31px 0;
  background: rgba(175, 205, 158, 0.07);
  backdrop-filter: blur(11px);
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 745px;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 72px;
  line-height: 68px;
  color: #f8fafc;
}
.grad-text {
    background: linear-gradient(188deg, var(--green-deep), var(--mint));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__stats {
    display: flex;
    gap: 25px;
    flex: 0 1 600px;
    padding: 47px 0px 0;
    border-top: 2px solid rgba(240, 255, 218, 0.12);
    justify-content: space-between;
}
.stat { max-width: fit-content; }
.stat__label { font-family: var(--font-head); font-size: 20px; line-height: 23px; color: rgba(255, 255, 255, 0.8); }
.stat__num {
  margin-top: 12px;
  font-family: var(--font-head);
  font-size: 48px;
  line-height: 60px;
  color: #fff;
}
.stat__num span { color: #aaca97; }
.hero__aside { flex: 0 1 537px; display: flex; flex-direction: column; gap: 24px; }
.hero__aside p { font-size: 16px; line-height: 26px; color: rgba(255, 255, 255, 0.8); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   Who We Are
   ============================================================ */
.who { background: var(--bg-who); padding: 100px 0; }
.who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.who__head { margin-bottom: 40px; }
.who__head .h2 { margin-top: 8px; max-width: fit-content; }
.who__photos { display: flex; gap: 30px; }
.who__photo {
  position: relative;
  flex: 1;
  height: 340px;
  border-radius: 15px;
  overflow: hidden;
}
.who__photo > img { width: 100%; height: 100%; object-fit: cover; }
.who__photo .mfr { left: 78px; }

.who__aside { display: flex; flex-direction: column; gap: 32px; justify-content: center; }
.who__aside > p { max-width: 640px;color: #4A5155; }
.mini-stats { display: flex; gap: 12px; }
.mini-stat { padding: 10px; }
.mini-stat b {
  display: block;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 48px;
  line-height: 51px;
  color: var(--ink);
}
.industry-section .section-head{
  max-width: 100%;
  text-align: left;
  align-items: start;
}
.mini-stat b span { color: var(--green); }
.mini-stat small { font-family: var(--font-head); font-size: 16px; line-height: 26px; color: var(--body); }

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 578px;
}
.feat { display: flex; gap: 12px; }
.feat::before {
  content: "";
  flex: none;
  width: 4px;
  min-height: 32px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--olive);
}
.feat h4 { font-family: var(--font-head); font-size: 14px; line-height: 20px; font-weight: 400; color: var(--ink); }
.feat p { font-family: var(--font-head); font-size: 14px; line-height: 18px; color: var(--body); }

.who__cta { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.callbox { display: flex; align-items: center; gap: 20px; }
.callbox .dot {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 25px;
  background: var(--green);
}
.callbox .dot img { width: 20px; height: 20px; }
.callbox b { display: block; font-family: var(--font-head); font-size: 16px; line-height: 26px; color: var(--ink); }
.callbox span { font-family: var(--font-head); font-size: 16px; line-height: 20px; color: rgba(32, 39, 45, 0.8); }

/* ============================================================
   Services
   ============================================================ */
.services { background: var(--dark); padding: 100px 0; color: #fff; }
.services .wide { max-width: 1880px; margin-inline: auto; padding-inline: 20px; }
.services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  max-width: var(--wrap);
  margin: 0 auto 60px;
  padding-inline: 20px;
}
.services__head .eyebrow { color: rgba(255, 255, 255, 0.8); }
.services__head .h2 { color: #fff; max-width: 724px; margin-top: 16px; }
.services__head .h2 .accent { color: var(--mint); }
.services__note {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 41px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 556px;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: var(--panel);
}
.card__media { position: relative; height: 288px; overflow: hidden; }
.card__media > img { width: 100%; height: 100%; object-fit: cover; }
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.35));
}
.badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 5px 15px;
  border-radius: 20px;
  background: var(--mint);
  color: #000;
  font-family: var(--font-head);
  font-size: 16px;
  line-height: 26px;
}
.card__media .mfr { left: auto; right: 14px; bottom: 14px; z-index: 2; padding: 6px 20px; }
.card__media .mfr img { height: 26px; }
.card__body { display: flex; flex-direction: column; padding: 20px; flex: 1; }
.card__body h3 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 22px;
  line-height: 20px;
  margin-bottom: 12px;
}
.card__body p {
  font-family: var(--font-head);
  font-size: 16px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  flex: 1;
}
.card__foot {
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.card--catalog {
  background: #0c1904;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 24px;
  min-height: 495px;
}
.card--catalog .plus {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(197, 229, 179, 0.12);
  border: 1px solid rgba(197, 229, 179, 0.3);
}
.card--catalog .plus img { width: 18px; height: 18px; }
.card--catalog h3 { font-family: var(--font-head); font-size: 22px; }
.card--catalog p { font-family: var(--font-head); font-size: 16px; line-height: 22px; color: rgba(255, 255, 255, 0.8); }

/* ============================================================
   Value proposition
   ============================================================ */
.value {
  background: linear-gradient(180deg, #f2f5f6, #e1f4d7);
  padding: 120px 0;
}
.value .wrap { display: flex; gap: 64px; align-items: flex-start; }
.value__left { flex: 0 1 643px; display: flex; flex-direction: column; gap: 64px; }
.value__left .h2 { margin-top: 8px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.value-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border-radius: 12px;
  background: var(--dark);
  border: 1px solid #1e293b;
}
.value-card .plate {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 40px;
  background: rgba(175, 205, 158, 0.13);
  border: 1px solid var(--mint-soft);
}
.value-card .plate img { width: 24px; height: 24px; }
.value-card h3 { font-family: var(--font-head); font-weight: 400; font-size: 22px; line-height: 20px; color: #fff; }
.value-card p { font-family: var(--font-head); font-size: 16px; line-height: 22px; color: rgba(255, 255, 255, 0.8); }

.value__media {
  position: relative;
  flex: 1;
  align-self: stretch;
  min-height: 706px;
  border-radius: 20px;
  overflow: hidden;
}
.value__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.value__media .mfr { left: auto; right: 24px; }

/* ============================================================
   Project banner
   ============================================================ */
.banner {
  position: relative;
  overflow: hidden;
}
.banner__bg { position: absolute; inset: 0; z-index: -1; }
.banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.banner__bg::after { content: ""; position: absolute; inset: 0; background: rgba(17, 22, 27, 0.5); }
.banner__photo { position: relative; height: 450px; }
.banner__photo .mfr { left: auto; right: 40px; bottom: 40px; color: var(--dark); }
.banner__card {
  position: relative;
  margin-top: -37px;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 56px 80px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.04), 0 -10px 15px rgba(0,0,0,0.08);
}
.banner__card-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  /* max-width: var(--wrap); */
  margin-inline: auto;
}
.banner__left { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.crumb { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.crumb .eyebrow { color: var(--ink); }
.crumb .pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.banner__left h2 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 44px;
  line-height: 52px;
  color: var(--ink);
}
.banner__left h2 .grad-text {
  /* background: linear-gradient(90deg, var(--green-deep), #00d492); */
  -webkit-background-clip: text;
  background-clip: text;
  color: #496F33;
}
.banner__left p { font-size: 16px; line-height: 26px; color: var(--body); }
.banner__kv {
  flex: none;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.banner__kv b {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 60px;
  letter-spacing: -1.8px;
  color: var(--ink);
}
.banner__kv b span {
  font-size: 44px;
  letter-spacing: 5.6px;
  background: linear-gradient(90deg, var(--green-deep), #496F33);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.banner__kv small { font-family: var(--font-head); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink); }

/* ============================================================
   Partners
   ============================================================ */
.partners {
  position: relative;
  overflow: hidden;
  background: var(--darker);
  color: #fff;
  padding: 90px 0;
}
.partners__deco { position: absolute; opacity: .6; pointer-events: none; }
.partners__deco--tr {
    top: 100px;
    right: -200px;
}
.partners__deco--bl { bottom: -100px;
    left: -200px; }
.partners__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 724px;
  margin-inline: auto;
}
.partners__inner .eyebrow { color: #fff; }
.partners__inner h2 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 40px;
  line-height: 44px;
}
.partners__inner h2 .accent { color: var(--mint-2); }
.partners__inner p { font-size: 16px; line-height: 26px; color: rgba(255, 255, 255, 0.8); }

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--bg-contact); padding: 100px 0; }
.contact .wrap { display: flex; gap: 87px; align-items: flex-start; }
.contact__left { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.contact__left .h2 { max-width: 500px; }
.contact__left > p { max-width: 640px; }
.contact-card {
  margin-top: 24px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card__head { display: flex; align-items: center; gap: 8px; }
.contact-card__head img { width: 25px; height: 25px; }
.contact-card__head span { font-family: var(--font-head); font-size: 22px; color: var(--ink); }
.contact-card__lines { display: flex; flex-direction: column; gap: 9px; font-family: var(--font-head); font-size: 18px; }
.contact-card__lines p { color: var(--olive); }
.contact-card__lines p span { color: var(--body); }

.contact__right { flex: 1; }
.inquiry {
  background: var(--dark);
  border: 1px solid rgba(107, 158, 34, 0.16);
  border-radius: 20px;
  padding: 44px;
}
.inquiry h3 { font-family: var(--font-head); font-weight: 400; font-size: 36px; color: #fff; }
.inquiry form { display: flex; flex-direction: column; gap: 20px; padding-top: 24px; }
.inquiry .row { display: flex; gap: 20px; }
.inquiry .row > * { flex: 1; }
.inquiry input,
.inquiry select,
.inquiry textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(107, 158, 34, 0.18);
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  outline: none;
}
.inquiry textarea { min-height: 112px; resize: vertical; line-height: 21px; }
.inquiry select { appearance: none; color: rgba(235, 240, 229, 0.55); }
.inquiry ::placeholder { color: rgba(235, 240, 229, 0.25); }
.inquiry input:focus,
.inquiry select:focus,
.inquiry textarea:focus { border-color: rgba(107, 158, 34, 0.6); }
.select-wrap { position: relative; }
.select-wrap img {
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 6px;
  pointer-events: none;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  position: relative;
  overflow: hidden;
  border-top: 4px solid #d0ffb2;
  color: #fff;
}
.footer__bg { position: absolute; inset: 0; z-index: -1; }
.footer__bg img { width: 100%; height: 100%; object-fit: cover; }
.footer__bg::after { content: ""; position: absolute; inset: 0; background: rgba(32, 39, 45, 0.64); }
.footer__content {
  max-width: 1440px;
  margin-inline: auto;
  padding: 80px 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__cols {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__brand { width: 360px; display: flex; flex-direction: column; gap: 24px; }
.footer__brand img.flogo {
    height: 80px;
    width: auto;
    text-align: left;
    margin-right: auto;
}
.footer__brand p { font-family: var(--font-head); font-size: 14px; line-height: 26px; color: rgba(255, 255, 255, 0.8); }
.footer__socials { display: none; gap: 16px; }
.footer__socials img { width: 16px; height: 16px; filter: brightness(0) invert(1); }
.footer__col h4 { font-family: var(--font-head); font-weight: 400; font-size: 22px; margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a, .footer__col li { font-family: var(--font-head); font-size: 14px; line-height: 26px; color: rgba(255, 255, 255, 0.8); }
.footer__col a:hover { color: #fff; }
.footer__divider { height: 1px; background: rgba(255, 255, 255, 0.15); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-head);
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
}
.footer__bottom a { color: inherit; }
.footer__bottom a:hover { text-decoration: underline; color: #fff; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1280px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .card--catalog { min-height: 0; }
  .hero h1 { font-size: 56px; line-height: 56px; }
}
/* ---- Mobile navigation ---- */
@media (max-width: 900px) {
  .nav { padding-right: 8px; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
  .nav__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav.is-open .nav__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav__menu a { text-align: left; padding: 13px 16px; border-radius: 10px; font-size: 15px; }
  .nav__menu-cta { display: flex; justify-content: center; margin-top: 6px; padding: 12px 20px; }
  .nav__menu-cta.is-active,
  .nav__menu-cta:hover { background: var(--green); color: #fff; }
}

@media (max-width: 1024px) {
  .hero { padding-top: 240px; }
  .who__grid { grid-template-columns: 1fr; }
  .value .wrap { flex-direction: column; }
  .value__left { flex-basis: auto; }
  .value__media { width: 100%; min-height: 420px; }
 
  .contact-card {
    margin-top: 0px;
}
  .banner__card-inner { flex-direction: column;gap:20px; align-items: flex-start; }
  .banner__kv { width: auto; align-items: flex-start; text-align: left; }
  .banner__card { padding: 48px 40px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .services__head { flex-direction: column; align-items: flex-start; }
  .services__note { max-width: none; width: 100%; text-align: left; }
  .banner__left h2 {
    font-size: 40px;
}
.inquiry-card {
    margin: 0 auto;
}
}
@media (max-width: 768px) {
  .h2, .banner__left h2, .partners__inner h2, .inquiry h3 { font-size: 28px; line-height: 36px; }
  .hero h1 { font-size: 30px; line-height: 42px; }
  .hero__inner {
    gap: 20px;
} .contact .wrap { flex-direction: column; gap:20px;}
  .hero { padding: 200px 0 64px; }
  .topbar .tb-right span { display: none; }
 
  .who__photo { height: 260px; }
  .feat-grid, .values-grid, .svc-grid { grid-template-columns: 1fr; }
  .hero__stats { flex-wrap: wrap; }
  .inquiry .row { flex-direction: column; }
  .footer__content { padding: 60px 24px 32px; }
  .banner__card { padding: 36px 24px; }.who {
    padding: 80px 0;
}.services {
    padding: 80px 0;
}.value {
    padding: 80px 0;
}    .value__left {
        gap: 30px;
    }.contact {
    padding: 80px 0;
}.contact__right {
    width: 100%;
}    .inquiry-card{
        width: 100%;
    }
}

@media (max-width: 600px) {
 .who__photos { flex-direction: column; }.who {
        padding: 50px 0;
    }.who__grid {
        gap: 50px;
    }    .services {
        padding: 50px 0;
    }.services__head {
        gap: 30px;
        margin-bottom: 50px !important;
    }.value {
        padding: 50px 0;
    }.partners {
    padding: 50px 0;
}    .contact {
        padding: 50px 0;
    }.inquiry {
    padding: 20px;
}.section-head {
    margin: 0 auto 20px !important;
}
.journey-stat {
        padding: 20px 0px !important;
    }
.num-item:not(:last-child){
  border-right: 0 !important;
}.note-line {
    margin-top: 40px !important;
}    .commitment .wrap {
        gap: 30px !important;
    }.journey-stat{
      border-right: 0 !important;
    }.approach-card {
    padding: 20px;
}    .ahead .ahead-grid {
        margin-top: 0px !important;
    }.ahead {
        padding: 50px 0 !important;
    }
    .pp-dash .wrap {
        padding-block: 50px !important;
    }.pp-future {
        padding: 50px 0;
    }.reach__left .section-head h2 {
    font-size: 28px;
}.reach .wrap {
        gap: 50px !important;
    }.inquiry-card {
    padding: 25px !important;
}
.map-banner__pin {
    left: 30% !important;
    top: 50%;
    transform: translate(-20%, -50%) !important;
}
.map-banner__frame {
    height: 350px !important;
}
.together {
    padding: 50px 0 !important;
}
.footer__content {
        padding: 50px 20px 60px;
    }
    .stat__label {
    font-size: 18px;
}
.hero__row {
    gap: 20px;
}.journey-stats {
    gap: 0px !important;
}
    .ahead-hero {
        padding: 20px !important;
    }
}

/* ============================================================
   SHARED — inner-page hero + section headers
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 230px 0 100px;
}
.page-hero__inner { display: flex; flex-direction: column; gap: 32px; }
.page-hero h1 {
  max-width: 860px;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 72px;
  line-height: 68px;
  color: #f8fafc;
}
.page-hero h1 .accent { color: var(--mint); }
.page-hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.page-hero__lead { max-width: 600px; display: flex; flex-direction: column; gap: 24px; }
.page-hero__lead p { font-size: 16px; line-height: 26px; color: rgba(255, 255, 255, 0.8); }
.page-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.section { padding: 100px 0; }
.section--pad-lg { padding: 120px 0; }
.section--light { background: #f8f9fa; }
.section--mint { background: var(--bg-who); }
.section--dark { background: var(--darker); color: #fff; }
.section--dark-img { position: relative; overflow: hidden; color: #fff; }
.section__bg { position: absolute; inset: 0; z-index: 0; }
.section__bg img { width: 100%; height: 100%; object-fit: cover; }
.section__bg::after { content: ""; position: absolute; inset: 0; background: rgba(14, 22, 18, 0.82); }
.section--dark-img > .wrap { position: relative; z-index: 1; }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 40px;
  line-height: 44px;
}
.section-head h2 .accent { color: var(--green); }
.section-head p { font-size: 16px; line-height: 26px; color: var(--body); }
.section--dark .section-head h2,
.section--dark-img .section-head h2 { color: #fff; }
.section--dark .section-head .eyebrow,
.section--dark-img .section-head .eyebrow { color: rgba(255, 255, 255, 0.75); }
.section--dark .section-head p,
.section--dark-img .section-head p { color: rgba(255, 255, 255, 0.8); }

.note-line {
  margin-top: 80px;
  font-family: var(--font-head);
  font-size: 15px;
  line-height: 24px;
  border-left: 4px solid rgba(197, 229, 179, 0.12);
  color: var(--body);
  padding: 5px 20px;
}
.section--dark .note-line { color: rgba(255, 255, 255, 0.55); }

/* ============================================================
   ABOUT — checklist variant of who-we-are
   ============================================================ */
.about-intro .who__grid { align-items: end; }
.checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: center; font-family: var(--font-head); font-size: 16px; line-height: 26px; color: var(--body); }
.checklist .tick {
  flex: none;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--green-deep);
}
.checklist .tick img { width: 10px; height: 10px; }

/* Mission / Vision cards */
.mv-cards { display: flex; gap: 32px; }
.mv-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 20px rgba(14, 24, 30, 0.07), 0 2px 3px rgba(14, 24, 30, 0.04);
}
.mv-card__label { display: flex; align-items: center; gap: 12px; }
.mv-card__label::before { content: ""; width: 56px; height: 4px; border-radius: 999px; background: var(--green); }
.mv-card__label span { font-family: var(--font-head); font-size: 22px; color: var(--ink); }
.mv-card p { font-family: var(--font-head); font-size: 16px; line-height: 26px; color: var(--body); }

/* Industry positioning — numbered columns */
.num-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.num-item:not(:last-child){ display: flex; flex-direction: column; gap: 12px; padding-right: 24px; border-right: 1px solid rgba(255, 255, 255, 0.14); }
.num-item .n { font-family: var(--font-head); font-size: 44px; line-height: 1; color: var(--mint); }
.num-item h3 { font-family: var(--font-head); font-weight: 400; font-size: 20px; line-height: 24px; color: #fff; }
.num-item p { font-family: var(--font-head); font-size: 14px; line-height: 20px; color: rgba(255, 255, 255, 0.7); }

/* Commitment */
.commitment .wrap { display: flex; gap: 64px; align-items: center; }
.commitment__left { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.commitment__left .section-head { align-items: flex-start; text-align: left; margin: 0 0 8px; }
.commit-item { display: flex; gap: 16px; }
.commit-item .plate {
  flex: none;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 20px;
  background: rgba(73, 111, 51, 0.12);
  border: 1px solid rgba(73, 111, 51, 0.2);
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--green);
}
.commitment-paragraph{
  max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: 24px;
    padding-top: 80px;
}
.commitment p{
  color: var(--dark-body, #4A5155);
font-family: "Cal Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 162.5% */
}
.commit-item h3 { font-family: var(--font-head); font-weight: 400; font-size: 22px; line-height: 20px; margin-bottom: 8px; color: var(--ink); }
.commit-item p { font-family: var(--font-head); font-size: 16px; line-height: 26px; color: var(--body); }
.commitment__media { flex: 1; align-self: stretch; min-height: 460px; border-radius: 20px; overflow: hidden; position: relative; }
.commitment__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Journey stats */
.journey-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.journey-stat { display: flex; flex-direction: column; gap: 8px; padding: 24px 0; border-right: 2px solid rgba(240, 255, 218, 0.14); }
.journey-stat b { font-family: var(--font-head); font-weight: 400; font-size: 44px; line-height: 1; color: #C5E5B3; }
.journey-stat b span { color: var(--mint); }
.journey-stat small { font-family: var(--font-head); font-size: 15px; color: #fff; }
.journey-stat p { font-family: var(--font-head); font-size: 14px; line-height: 20px; color: rgba(255, 255, 255, 0.7); }
.journey-stat:last-child{
border-right:0;
}
/* Approach cards */
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.approach-card { display: flex; padding: 24px; border-radius: 20px;
border: 1px solid #E5E7EB;
background: #FFF;flex-direction: column; gap: 16px; }
.approach-card__media { height: 220px; border-radius: 16px; overflow: hidden; }
.approach-card__media img { width: 100%; height: 100%; object-fit: cover; }
.approach-card h3 { font-family: var(--font-head); font-weight: 400; font-size: 20px; color: var(--ink); }
.approach-card p { font-family: var(--font-head); font-size: 15px; line-height: 23px; color: var(--body); }

/* Looking ahead — 6 items */
.ahead-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 32px; }
.ahead-item { display: flex; flex-direction: column; gap: 12px; padding: 24px; border-radius: 14px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); }
.ahead-item__head { display: flex; align-items: center; gap: 14px; }
.ahead-item .plate {
  flex: none;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(197, 229, 179, 0.12);
  border: 1px solid rgba(197, 229, 179, 0.3);
}
.ahead-item .plate img { width: 18px; height: 18px; }
.ahead-item h3 { font-family: var(--font-head); font-weight: 400; font-size: 18px; color: #fff; }
.ahead-item p { font-family: var(--font-head); font-size: 14px; line-height: 21px; color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.reach .wrap { display: flex; gap: 64px; align-items: flex-start; }
.reach__left { flex: 0 1 460px; display: flex; flex-direction: column; gap: 28px; }
.reach__left .section-head { align-items: flex-start; text-align: left; margin: 0; gap: 12px; }
.reach__left .section-head h2 { font-size: 32px; line-height: 38px; }
.methods { display: flex; flex-direction: column; gap: 18px; }
.method { display: flex; gap: 16px; align-items: flex-start; }
.method .ic {
  flex: none;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
}
.method .ic img { width: 20px; height: 20px; }
.method h4 { font-family: var(--font-head); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--olive); margin-bottom: 3px; }
.method b { display: block; font-family: var(--font-head); font-weight: 400; font-size: 16px; color: var(--ink); }
.method span { font-family: var(--font-head); font-size: 14px; color: var(--body); }
.support-card { background: var(--dark); border-radius: 16px; padding: 28px; }
.support-card small { font-family: var(--font-head); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--mint); }
.support-card b { display: block; font-family: var(--font-head); font-weight: 400; font-size: 22px; color: #fff; margin: 8px 0 10px; }
.support-card p { font-family: var(--font-head); font-size: 14px; line-height: 21px; color: rgba(255, 255, 255, 0.75); }

.inquiry-card {
  flex: 1;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 24px 40px rgba(14, 24, 30, 0.08);
}
.inquiry-card h3 { font-family: var(--font-head); font-weight: 400; font-size: 26px; color: var(--ink); margin-bottom: 24px; }
.inquiry-card form { display: flex; flex-direction: column; gap: 18px; }
.inquiry-card .row { display: flex; gap: 18px; }
.inquiry-card .row > * { flex: 1; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--font-head); font-size: 12px; letter-spacing: .5px; text-transform: uppercase; color: var(--body); }
.field input, .field select, .field textarea {
  width: 100%;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--ink);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; line-height: 21px; }
.field select { appearance: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); }
.inquiry-card ::placeholder { color: #9aa1a6; }
.form-note { font-family: var(--font-head); font-size: 13px; color: var(--body); text-align: center; }

/* Map banner */
.map-banner { padding: 0 0 20px; }
.map-banner__frame {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  max-width: var(--wrap);
}
.map-banner__frame img { width: 100%; height: 100%; object-fit: cover; }
.map-banner__pin {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 28px;
  border-radius: 16px;
  background: rgba(18, 24, 29, 0.82);
  backdrop-filter: blur(8px);
  text-align: center;
  color: #fff;
}
.map-banner__pin .dot {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--green);
}
.map-banner__pin .dot img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.map-banner__pin b { font-family: var(--font-head); font-weight: 400; font-size: 18px; }
.map-banner__pin span { font-family: var(--font-head); font-size: 13px; color: rgba(255, 255, 255, 0.75); }

/* FAQ */
.faq-list { max-width: 1040px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq {
  background: #fff;
  border: 1px solid #eceef0;
  border-radius: 16px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 10px; height: 10px;
  border-right: 2px solid var(--body);
  border-bottom: 2px solid var(--body);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq[open] summary::after { transform: rotate(-135deg); }
.faq__body { padding: 0 26px 22px; font-family: var(--font-head); font-size: 15px; line-height: 24px; color: var(--body); }

/* Together band */
.together { background: var(--green); color: #fff; text-align: center; padding: 70px 0; }
.together .eyebrow { color: rgba(255, 255, 255, 0.8); display: inline-flex; align-items: center; gap: 10px; }
.together .eyebrow::before, .together .eyebrow::after { content: ""; width: 24px; height: 1px; background: rgba(255, 255, 255, 0.5); }
.together h2 { font-family: var(--font-head); font-weight: 400; font-size: 40px; line-height: 44px; margin: 14px 0 10px; }
.together p { font-family: var(--font-head); font-size: 16px; color: rgba(255, 255, 255, 0.85); max-width: 620px; margin: 0 auto; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.catalog { padding: 90px 0; background: #f8f9fa; }
.catalog .wrap { display: flex; gap: 40px; align-items: flex-start; }
.cat-nav {
  position: sticky;
  top: 120px;
  flex: none;
  width: 260px;
  background: #fff;
  border: 1px solid #eceef0;
  border-radius: 16px;
  padding: 14px;
}
.cat-nav h4 { font-family: var(--font-head); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--body); padding: 10px 12px; }
.cat-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--ink);
}
.cat-nav a:hover, .cat-nav a.is-active { background: var(--ink); color: #fff; }
.catalog__main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 48px; }
.cat-group__head { margin-bottom: 20px; }
.cat-group__head .eyebrow { color: var(--green); font-size: 13px; }
.cat-group__head h2 { font-family: var(--font-head); font-weight: 400; font-size: 28px; margin-top: 6px; color: var(--ink); }
.cat-group__head p { font-family: var(--font-head); font-size: 15px; line-height: 23px; color: var(--body); margin-top: 8px; max-width: 760px; }
.prod-list { display: flex; flex-direction: column; gap: 16px; }
.prod {
  display: flex;
  gap: 24px;
  background: #fff;
  border: 1px solid #eceef0;
  border-radius: 16px;
  padding: 22px;
}
.prod__media {
  flex: none;
  width: 220px;
  align-self: stretch;
  min-height: 170px;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f6f7;
}
.prod__media img { width: 100%; height: 100%; object-fit: cover; }
.prod__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.prod__body h3 { font-family: var(--font-head); font-weight: 400; font-size: 19px; color: var(--ink); }
.prod__body > p { font-family: var(--font-head); font-size: 14px; line-height: 21px; color: var(--body); }
.prod__specs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.prod__specs span {
  font-family: var(--font-head);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f1f5ef;
  color: var(--green);
}
.prod__aside {
  flex: none;
  width: 208px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 22px;
  border-left: 1px solid #eceef0;
}
.prod__aside .kv {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
}
.prod__aside .kv span { color: var(--body); }
.prod__aside .kv b { font-weight: 400; color: var(--ink); text-align: right; }
.prod__aside .btn-sm--solid { margin-top: 12px; }
.btn-sm {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 16px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-size: 13px;
}
.btn-sm--solid { background: var(--green); color: #fff; }
.btn-sm--ghost { border: 1px solid #d7dbde; color: var(--ink); }
.prod__aside .btn-sm { width: 100%; }

.built-future .num-grid { grid-template-columns: repeat(3, 1fr); }
.built-future .num-item { border-top-color: rgba(255,255,255,0.12); }

/* ============================================================
   Responsive — inner pages
   ============================================================ */
@media (max-width: 1100px) {
  .num-grid, .journey-stats { grid-template-columns: repeat(2, 1fr); }
  .approach-grid, .ahead-grid, .built-future .num-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog .wrap { flex-direction: column; }
  .cat-nav { position: static; width: 100%; display: flex; flex-wrap: wrap; gap: 6px; }
  .cat-nav h4 { width: 100%; }
}
@media (max-width: 1280px) {
  .page-hero h1 { font-size: 56px; }
}
@media (max-width: 1024px) {
  .who__aside > p {
    color: #4A5155;
    max-width: fit-content;
}
.journey-stat {
    padding: 24px 20px;
}
.journey-stat:nth-child(2){
  border-right: 0;
}
.commitment-paragraph {
    padding-top: 40px;
}
.section--pad-lg {
    padding: 100px 0;
}
.feat-grid {
    max-width: fit-content;
}
  .page-hero { padding-top: 200px; }
  .page-hero h1 { font-size: 54px; line-height: 54px; }
  .mv-cards { flex-direction: column; }
  .commitment .wrap { flex-direction: column; align-items: stretch; }
  .reach .wrap { flex-direction: column; }
  .reach__left { flex-basis: auto; }
}
@media (max-width: 768px) {
  .page-hero { padding: 170px 0 64px; }
  .page-hero h1 { font-size: 38px; line-height: 40px; }
  .section, .section--pad-lg, .catalog { padding: 50px 0; }
  .section-head h2, .together h2 { font-size: 28px; line-height: 34px; }
  .num-grid, .journey-stats, .approach-grid, .ahead-grid, .built-future .num-grid { grid-template-columns: 1fr; }
  .inquiry-card, .reach__left .section-head { }
  .inquiry-card .row { flex-direction: column; }
  .prod { flex-direction: column; }
  .prod__media { width: 100%; height: 200px; }
  .commitment__media { min-height: 300px; }
}

/* ============================================================
   PRODUCT PAGE — dashboard catalog (Figma: Product Page 1:967)
   ============================================================ */
.pp-hero { position: relative; overflow: hidden; padding: 240px 0 90px; color: #fff; }
.pp-hero__bg { position: absolute; inset: 0; z-index: -1; }
.pp-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.pp-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.55), #0e1c06); }
.pp-hero__pill {
  display: inline-flex; align-items: center;
  padding: 7px 17px;
  border: 1px solid var(--mint);
  border-radius: 31px;
  background: rgba(175, 205, 158, 0.07);
  backdrop-filter: blur(11px);
  font-family: var(--font-head);
  font-size: 13px; letter-spacing: 1px; color: #fff;
}
.pp-hero h1 {
  margin-top: 24px;
  max-width: 1037px;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 72px;
  line-height: 68px;
  color: #f8fafc;
}
.pp-hero h1 .g {
  background: linear-gradient(90deg, #4b7f2a, #c5e5b3);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pp-hero p { margin-top: 24px; max-width: 561px; font-size: 16px; line-height: 26px; color: rgba(255,255,255,.8); }

.pp-dash { background: #f8f9fa; }
.pp-dash .wrap { display: flex; gap: 42px; align-items: flex-start; padding-block: 64px; }
.pp-side { flex: none; width: 304px; position: sticky; top: 118px; }
.pp-side > h2 { font-family: var(--font-head); font-size: 22px; color: var(--ink); margin-bottom: 20px; }
.pp-catstack { display: flex; flex-direction: column; gap: 16px; }
.pp-catcard {
  display: flex; align-items: center; gap: 12px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  transition: border-color .15s;
}
.pp-catcard:hover { border-color: #cfe0c2; }
.pp-catcard.is-active { border-color: var(--green); }
.pp-catcard__thumb { flex: none; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: #f4f6f9; border-radius: 6px; }
.pp-catcard__thumb svg { width: 20px; height: 20px; color: #94a3b8; }
.pp-catcard.is-active .pp-catcard__thumb svg { color: var(--green); }
.pp-catcard > span:last-child { display: flex; flex-direction: column; }
.pp-catcard__name { font-family: var(--font-head); font-size: 14px; color: var(--ink); line-height: 1.2; }
.pp-catcard.is-active .pp-catcard__name { color: var(--green); }
.pp-catcard__count { font-family: var(--font-head); font-size: 14px; color: var(--body); margin-top: 4px; }

.pp-listings { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 56px; }
.pp-sec__accent { display: flex; align-items: center; gap: 12px; }
.pp-sec__accent::before { content: ""; flex: none; width: 56px; height: 4px; border-radius: 999px; background: var(--green); }
.pp-sec__accent h2 { font-family: var(--font-head); font-size: 22px; color: var(--ink); }
.pp-sec__sub { font-family: var(--font-head); font-size: 16px; line-height: 20px; color: var(--body); margin-top: 14px; }
.pp-sec__desc { font-family: var(--font-head); font-size: 16px; line-height: 20px; color: var(--body); margin-top: 12px; max-width: 974px; }
.pp-listhead { display: flex; align-items: center; gap: 12px; margin: 24px 0 16px; }
.pp-listhead h3 { font-family: var(--font-head); font-size: 18px; color: var(--ink); }
.pp-badge { font-family: var(--font-head); font-size: 12px; color: var(--green); background: rgba(73,111,51,.07); border-radius: 100px; padding: 3px 10px; }

.pp-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 24px; padding: 28px; margin-bottom: 16px; }
.pp-card__row { display: flex; gap: 24px; align-items: flex-start; justify-content: space-between; }
.pp-card__lead { flex: 1; min-width: 0; max-width: 500px; }
.pp-card__lead h4 { font-family: var(--font-head); font-size: 20px; color: var(--ink); }
.pp-card__lead p { font-family: var(--font-head); font-size: 16px; line-height: 18px; color: var(--body); margin-top: 12px; }
.pp-specs { flex: none; width: 280px; display: flex; gap: 8px; background: #fff; border-radius: 8px; padding: 12px; }
.pp-specs > div { flex: 1; }
.pp-specs dt { font-family: var(--font-head); font-size: 11px; color: #94a3b8; }
.pp-specs dd { font-family: var(--font-head); font-size: 13px; color: #0e181e; margin-top: 4px; }
.pp-card__actions { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-top: 24px; }
.pp-card__media { flex: none; width: 210px; height: 150px; display: flex; align-items: flex-end; }
.pp-card__media img { max-height: 100%; width: auto; object-fit: contain; }
.pp-card__right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.pp-mfr { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-size: 14px; color: #20272d; }
.pp-mfr img { height: 26px; width: auto; }
.pp-quote { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 6px; background: var(--green); color: #fff; font-family: var(--font-head); font-size: 13px; }
.pp-quote:hover { filter: brightness(1.08); }

.pp-future { background: #0e181e; color: #fff; padding: 120px 0; }
.pp-future__kicker { font-family: var(--font-head); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--mint); }
.pp-future h2 { font-family: var(--font-head); font-weight: 400; font-size: 36px; line-height: 44px; margin-top: 12px; max-width: 1027px; }
.pp-future__label { font-family: var(--font-head); font-size: 18px; color: var(--mint); margin-top: 26px; }
.pp-fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.pp-fcard { background: rgba(18,24,29,.85); border: 1px solid #1e293b; border-radius: 20px; padding: 24px; }
.pp-fcard__head { display: flex; align-items: center; gap: 14px; }
.pp-fcard__ic { flex: none; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 20px; background: rgba(197,229,179,.12); border: 1px solid rgba(197,229,179,.3); }
.pp-fcard__ic svg, .pp-fcard__ic img { width: 18px; height: 18px; color: var(--mint); }
.pp-fcard h3 { font-family: var(--font-head); font-weight: 400; font-size: 22px; color: #fff; }
.pp-fcard p { font-family: var(--font-head); font-size: 16px; line-height: 22px; color: rgba(255,255,255,.8); margin-top: 14px; }
.pp-future__closing { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(197,229,179,.3); font-family: var(--font-head); font-size: 16px; line-height: 26px; color: rgba(255,255,255,.8); max-width: 1296px; }

@media (max-width: 1024px) {
  .pp-hero h1 { font-size: 52px; line-height: 54px; }
  .pp-dash .wrap { flex-direction: column; }
  .pp-side { position: static; width: 100%; }
  .pp-catstack { flex-direction: row; flex-wrap: wrap; }
  .pp-catcard { flex: 1 1 240px; }
  .pp-fgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .pp-hero { padding: 180px 0 64px; }
  .pp-hero h1 { font-size: 34px; line-height: 38px; }
  .pp-card__row { flex-direction: column; }
  .pp-specs { width: 100%; }
  .pp-card__actions { flex-direction: column; align-items: stretch; gap: 16px; }
  .pp-card__media { width: 100%; height: 150px; justify-content: center; }
  .pp-card__right { align-items: stretch; }
  .pp-quote { justify-content: center; }
  .pp-mfr { justify-content: center; }
  .pp-fgrid { grid-template-columns: 1fr; }
  .pp-future { padding: 64px 0; }
  .pp-future h2 { font-size: 28px; line-height: 34px; }
}

/* ============================================================
   Form validation
   ============================================================ */
.ctrl-error {
  font-family: var(--font-head);
  font-size: 12px;
  line-height: 1.4;
  color: #d64545;
  margin-top: 6px;
}
.is-invalid { border-color: #d64545 !important; box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.12) !important; }

/* dark "Send an Inquiry" card (home / about) */
.inquiry .row { flex-wrap: wrap; }
.inquiry .ctrl-error { color: #ff9d9d; }
.inquiry .row > .ctrl-error { flex: 1 0 100%; margin-top: -10px; }
.inquiry .is-invalid { border-color: #ff9d9d !important; box-shadow: 0 0 0 3px rgba(255, 157, 157, 0.15) !important; }

/* white "Submit Your Inquiry" card (contact) */
.inquiry-card .row { flex-wrap: wrap; }

/* ============================================================
   Thank-you page
   ============================================================ */
.ty {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 220px 0 120px;
  background: var(--bg-who);
}
.ty__inner { max-width: 620px; }
.ty__badge {
  width: 88px; height: 88px;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(73, 111, 51, 0.12);
  border: 1px solid rgba(73, 111, 51, 0.25);
}
.ty__badge svg { width: 40px; height: 40px; color: var(--green); }
.ty h1 { font-family: var(--font-head); font-weight: 400; font-size: 48px; line-height: 1.1; color: var(--ink); }
.ty h1 .accent { color: var(--green); }
.ty > .ty__inner > p { margin-top: 16px; font-size: 16px; line-height: 26px; color: var(--body); }
.ty__actions { margin-top: 32px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) {
  .ty { padding: 170px 0 80px; }
  .ty h1 { font-size: 34px; }
}

/* ============================================================
   Clickable phone / email links
   ============================================================ */
.callbox:hover span { text-decoration: underline; }
.contact-card__lines a,
.method b a,
.footer__col li a { color: inherit; }
.contact-card__lines a:hover span,
.method b a:hover,
.footer__col li a:hover { text-decoration: underline; }

/* ============================================================
   Looking Ahead — image contained in a rounded hero card,
   feature grid sits on the plain dark section background
   ============================================================ */
.ahead { background: var(--darker); padding: 100px 0; }
.ahead-hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 64px;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.ahead-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ahead-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 24, 30, 0.55), rgba(14, 24, 30, 0.92));
  z-index: 1;
}
.ahead-hero__content { position: relative; z-index: 2; max-width: 780px; }
.ahead-hero__content .eyebrow { color: var(--mint); }
.ahead-hero__content h2 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 40px;
  line-height: 44px;
  color: #fff;
  margin-top: 14px;
}
.ahead-hero__content h2 .accent { color: var(--mint); }
.ahead-hero__content p {
  font-family: var(--font-head);
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
}
.ahead .ahead-grid { margin-top: 64px; }

@media (max-width: 768px) {
  .ahead { padding: 64px 0; }
  .ahead-hero { padding: 32px; min-height: 0; }
  .ahead-hero__content h2 { font-size: 28px; line-height: 34px; }
  .ahead .ahead-grid { margin-top: 40px; }
}
