:root {
  --green: #0f6b3c;
  --green-2: #0a4f2c;
  --orange: #ff8a1f;
  --yellow: #ffd84d;
  --ink: #17231c;
  --muted: #66776d;
  --line: #e3ebdf;
  --bg: #f6f7ef;
  --card: #fff;
  --shadow: 0 18px 45px rgba(22, 45, 30, .12);
  --radius: 24px;
}

/* News/knowledge homepage section v2. */
.home-news-section {
  margin-top: 38px;
  padding: 34px;
  border: 1px solid rgba(15,107,60,.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,216,77,.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f7ed 100%);
  box-shadow: 0 20px 52px rgba(22,45,30,.08);
}

.home-news-section .section-head {
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e3ebdf;
}

.home-news-section .section-head h2 {
  max-width: 780px;
  color: #082d1b;
  font-size: clamp(28px, 2.7vw, 40px);
}

.home-news-section .section-head p {
  max-width: 820px;
  color: #52665a;
  font-size: 17px;
}

.home-news-section .tab.active {
  background: #fff;
  color: #0f6b3c;
  border: 1px solid rgba(15,107,60,.18);
  box-shadow: 0 10px 24px rgba(22,45,30,.06);
}

.home-news-section .section-kicker {
  margin-bottom: 12px;
  background: #0f6b3c;
  color: #fff;
  letter-spacing: .04em;
}

.home-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  grid-auto-rows: minmax(148px, auto);
  gap: 16px;
}

.home-news-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e0ead9;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-news-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15,107,60,.32);
  box-shadow: 0 18px 38px rgba(22,45,30,.10);
}

.home-news-card:first-child {
  grid-row: span 3;
  display: grid;
  grid-template-rows: minmax(300px, 1fr) auto;
}

.home-news-card:not(:first-child) {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: stretch;
}

.home-news-card__media {
  position: relative;
  display: block;
  min-height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10,79,44,.92), rgba(15,107,60,.64), rgba(255,138,31,.42)),
    url('../img/product-placeholder.svg') right -18px center / 210px auto no-repeat;
}

.home-news-card:first-child .home-news-card__media {
  aspect-ratio: auto;
}

.home-news-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-news-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(4,32,18,.42));
  pointer-events: none;
}

.home-news-card__media span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  max-width: calc(100% - 28px);
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #0a4f2c;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.home-news-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px 20px;
}

.home-news-card:not(:first-child) .home-news-card__body {
  position: static;
  padding: 20px 24px;
}

.home-news-card:not(:first-child) .home-news-card__body::before {
  content: none;
  display: none;
}

.home-news-card:first-child .home-news-card__body {
  padding: 22px 24px 24px;
}

.home-news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: #6b7f72;
  font-size: 12px;
  font-weight: 900;
}

.home-news-card__meta span + span {
  color: #e46c0a;
}

.home-news-card h3 {
  margin: 0;
  color: #092c1b;
  font-size: 20px;
  line-height: 1.35;
}

.home-news-card:first-child h3 {
  font-size: clamp(26px, 2vw, 32px);
  line-height: 1.22;
}

.home-news-card h3 a {
  color: inherit;
}

.home-news-card p {
  margin: 10px 0 0;
  color: #5c6f64;
  line-height: 1.62;
}

.home-news-card:not(:first-child) p {
  display: none;
}

.home-news-card__link {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  color: #0f6b3c;
  font-weight: 900;
}

.home-news-card__link::after {
  content: "→";
  margin-left: 8px;
}

@media (max-width: 1100px) {
  .home-news-grid {
    grid-template-columns: 1fr;
  }

  .home-news-card:first-child {
    grid-row: auto;
  }

  .home-news-card:not(:first-child) {
    grid-template-columns: 190px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .home-news-section {
    padding: 20px;
  }

  .home-news-section .section-head {
    display: block;
  }

  .home-news-section .tab.active {
    display: inline-flex;
    margin-top: 14px;
  }

  .home-news-card:first-child,
  .home-news-card:not(:first-child) {
    display: block;
  }

  .home-news-card__media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .home-news-card:not(:first-child) p {
    display: block;
  }

  .home-news-card:first-child h3,
  .home-news-card h3 {
    font-size: 21px;
  }
}

/* Final calculator guidance spacing fix. */
.pile-calc-form .pile-calc-guidance {
  display: grid !important;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr) !important;
  gap: 18px !important;
  margin-top: 20px !important;
  padding: 20px !important;
  border: 1px solid #eadfbd !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, #fff9df, #ffffff) !important;
}

.pile-calc-form .pile-calc-guidance span {
  display: inline-flex !important;
  width: fit-content !important;
  margin: 0 0 10px !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  background: #0f6b3c !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
}

.pile-calc-form .pile-calc-guidance b {
  display: block !important;
  margin: 0 !important;
  color: #10251a !important;
  font-size: 20px !important;
  line-height: 1.32 !important;
}

.pile-calc-form .pile-calc-guidance p {
  margin: 10px 0 0 !important;
  color: #52665a !important;
  line-height: 1.6 !important;
}

.pile-calc-form .pile-calc-guidance ul {
  display: grid !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.pile-calc-form .pile-calc-guidance li {
  position: relative !important;
  margin: 0 !important;
  padding-left: 24px !important;
  color: #304035 !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
}

.pile-calc-form .pile-calc-guidance li::before {
  content: "" !important;
  position: absolute !important;
  left: 2px !important;
  top: .55em !important;
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  background: #ff8a1f !important;
  box-shadow: 0 0 0 4px rgba(255,138,31,.14) !important;
}

@media (max-width: 760px) {
  .pile-calc-form .pile-calc-guidance {
    grid-template-columns: 1fr !important;
  }
}

/* Final override v3: compact knowledge index, avoids noisy thumbnails. */
.home-news-section {
  margin: 42px 0 8px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #dbe7d5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(22,45,30,.08);
}

.home-news-section .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin: 0;
  padding: 28px 30px 24px;
  border-bottom: 1px solid #e5eee0;
  background:
    linear-gradient(90deg, rgba(15,107,60,.08), rgba(255,255,255,0) 58%),
    #fbfcf8;
}

.home-news-section .section-kicker {
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 6px;
  background: #0f6b3c;
  color: #fff;
  font-size: 12px;
  letter-spacing: .05em;
}

.home-news-section .section-head h2 {
  max-width: 860px;
  margin: 0;
  color: #082d1b;
  font-size: clamp(27px, 2.4vw, 36px);
  line-height: 1.16;
}

.home-news-section .section-head p {
  max-width: 860px;
  margin-top: 10px;
  color: #52665a;
  font-size: 16px;
  line-height: 1.62;
}

.home-news-section .tab.active {
  border-radius: 8px;
  background: #fff;
  color: #0f6b3c;
  border-color: #cfe0c8;
}

.home-news-grid {
  display: grid;
  grid-template-columns: minmax(320px, .55fr) minmax(0, 1fr);
  gap: 0;
  padding: 0;
}

.home-news-card {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  counter-increment: news-card;
}

.home-news-card:hover {
  transform: none;
  box-shadow: none;
}

.home-news-card:first-child {
  grid-row: 1 / span 3;
  display: grid;
  align-content: end;
  min-height: 430px;
  border-right: 1px solid #e5eee0;
  background:
    linear-gradient(145deg, rgba(5,50,29,.96), rgba(15,107,60,.9)),
    url('../img/product-placeholder.svg') right -70px bottom -42px / 340px auto no-repeat;
  color: #fff;
}

.home-news-card:not(:first-child) {
  display: block;
  min-height: 0;
  border-bottom: 1px solid #e5eee0;
}

.home-news-card:not(:first-child):last-child {
  border-bottom: 0;
}

.home-news-card__media {
  display: none;
}

.home-news-card__body {
  position: relative;
  display: block;
  padding: 24px 28px 24px 74px;
}

.home-news-card:first-child .home-news-card__body {
  padding: 34px;
}

.home-news-card:not(:first-child) .home-news-card__body::before {
  content: counter(news-card, decimal-leading-zero);
  position: absolute;
  left: 28px;
  top: 28px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #edf6e9;
  color: #0f6b3c;
  font-size: 12px;
  font-weight: 900;
}

.home-news-card__meta {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  color: #718277;
  font-size: 12px;
  font-weight: 900;
}

.home-news-card:first-child .home-news-card__meta {
  color: rgba(255,255,255,.76);
}

.home-news-card__meta span + span {
  color: #e46c0a;
}

.home-news-card:first-child .home-news-card__meta span + span {
  color: #ffd84d;
}

.home-news-card h3 {
  margin: 0;
  color: #0b2a1b;
  font-size: 21px;
  line-height: 1.34;
}

.home-news-card:first-child h3 {
  max-width: 620px;
  color: #fff;
  font-size: clamp(28px, 2.3vw, 38px);
  line-height: 1.16;
}

.home-news-card h3 a {
  color: inherit;
}

.home-news-card p,
.home-news-card:not(:first-child) p {
  display: block;
  max-width: 760px;
  margin: 10px 0 0;
  color: #5c6f64;
  font-size: 15px;
  line-height: 1.58;
}

.home-news-card:first-child p {
  color: rgba(255,255,255,.82);
}

.home-news-card__link {
  display: inline-flex;
  margin-top: 16px;
  color: #0f6b3c;
  font-weight: 900;
}

.home-news-card:first-child .home-news-card__link {
  color: #ffd84d;
}

.home-news-card__link::after {
  content: ">";
  margin-left: 8px;
}

@media (max-width: 980px) {
  .home-news-grid,
  .home-news-section .section-head {
    grid-template-columns: 1fr;
  }

  .home-news-card:first-child {
    grid-row: auto;
    min-height: 0;
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .home-news-section {
    margin-top: 28px;
  }

  .home-news-section .section-head,
  .home-news-card:first-child .home-news-card__body,
  .home-news-card__body {
    padding: 22px;
  }

  .home-news-card:not(:first-child) .home-news-card__body {
    padding-left: 64px;
  }

  .home-news-card:not(:first-child) .home-news-card__body::before {
    left: 22px;
    top: 24px;
  }
}

/* Final header sizing override. */
.site-header .nav-actions .pill.primary {
  min-width: 156px;
  padding: 16px 34px;
  text-align: center;
  justify-content: center;
  border-radius: 999px;
}

.site-header .search select {
  min-width: 190px;
  max-width: 220px;
}

.site-header .search button {
  min-width: 124px;
}

@media (max-width: 760px) {
  .site-header .search select {
    min-width: 132px;
    max-width: 42vw;
  }

  .site-header .search button {
    min-width: 78px;
  }
}

/* Final mobile layout override. */
@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .site-header .wrap {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .site-header .logo {
    min-width: 0;
    overflow: hidden;
  }

  .site-header .logo .logo__image--generated {
    width: min(210px, 58vw);
    max-height: 54px;
  }

  .site-header .menu-toggle {
    display: inline-flex;
    width: auto;
    min-width: 68px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin: 0;
    border: 0;
    border-radius: 10px;
    background: #0f6b3c;
    color: #fff;
    font-weight: 900;
  }

  .site-header .search {
    grid-column: 1 / -1;
    order: initial;
    width: 100%;
    min-width: 0;
    flex-basis: auto;
    border-width: 1px;
    border-radius: 12px;
  }

  .site-header .search select {
    flex: 0 0 136px;
    width: 136px;
    min-width: 0;
    max-width: none;
    padding: 12px 10px;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header .search input {
    min-width: 0;
    padding: 12px 10px;
    font-size: 14px;
  }

  .site-header .search button {
    flex: 0 0 68px;
    min-width: 68px;
    padding: 0 10px;
    font-size: 14px;
  }

  .home-main.wrap {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    padding: 18px 0 10px;
  }

  .hero-grid {
    gap: 0;
  }

  .banner {
    min-height: auto;
    padding: 28px 24px 26px;
    border-radius: 10px;
  }

  .banner::before {
    width: 240px;
    height: 240px;
    right: -90px;
    top: -70px;
  }

  .banner::after {
    display: none;
  }

  .banner .label {
    max-width: 100%;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1.35;
  }

  .banner h1 {
    max-width: 100%;
    margin: 20px 0 12px;
    font-size: clamp(29px, 8vw, 34px);
    line-height: 1.08;
  }

  .banner p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.58;
  }

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

  .hero-cta .btn {
    width: 100%;
    min-height: 52px;
    padding: 13px 16px;
    border-radius: 10px;
  }

  .stats {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }
}

/* Final mobile off-canvas menu. */
@media (max-width: 760px) {
  .mobile-menu {
    position: fixed;
    inset: 82px 0 0;
    z-index: 140;
    display: block;
    max-height: none;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: rgba(6, 22, 14, .46);
    opacity: 0;
    transform: none;
    pointer-events: none;
    transition: opacity .2s ease;
  }

  .mobile-menu.is-open {
    max-height: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .mobile-menu ul {
    width: min(72vw, 330px);
    height: 100%;
    margin: 0 0 0 auto;
    padding: 22px 22px 28px;
    display: block;
    border: 0;
    border-left: 1px solid rgba(15,107,60,.1);
    border-radius: 0;
    background:
      linear-gradient(180deg, #ffffff 0%, #fbfcf8 100%);
    box-shadow: -22px 0 46px rgba(5, 28, 17, .18);
    transform: translateX(100%);
    transition: transform .24s ease;
  }

  .mobile-menu.is-open ul {
    transform: translateX(0);
  }

  .mobile-menu li {
    margin: 0;
  }

  .mobile-menu a {
    min-height: 54px;
    padding: 0 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eadfd3;
    border-radius: 0;
    color: #2d251f;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .mobile-menu a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid rgba(15,107,60,.42);
    border-right: 2px solid rgba(15,107,60,.42);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity .18s ease, transform .18s ease;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus {
    background: transparent;
    color: #0f6b3c;
  }

  .mobile-menu a:hover::after,
  .mobile-menu a:focus::after {
    opacity: 1;
    transform: translateX(2px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] {
    background: #0f6b3c;
    border-color: #0f6b3c;
    box-shadow: 0 12px 26px rgba(15,107,60,.2);
  }

  .menu-toggle[aria-expanded="true"]::before,
  .menu-toggle[aria-expanded="true"]::after {
    background: #fff;
  }
}

@media (max-width: 420px) {
  .mobile-menu {
    top: 78px;
  }

  .mobile-menu ul {
    width: min(70vw, 286px);
    padding: 20px 20px 26px;
  }

  .mobile-menu a {
    min-height: 52px;
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .site-header .logo .logo__image--generated {
    width: min(192px, 56vw);
  }

  .site-header .search select {
    flex-basis: 124px;
    width: 124px;
  }

  .site-header .search input {
    font-size: 13px;
  }

  .banner {
    padding: 26px 22px 24px;
  }

  .banner h1 {
    font-size: 31px;
  }
}

/* Final mobile header correction: icon menu above, balanced search below. */
@media (max-width: 760px) {
  .site-header .nav {
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 10px 12px;
    padding-top: 12px;
    padding-bottom: 14px;
  }

  .site-header .menu-toggle {
    position: relative;
    display: inline-flex;
    width: 46px;
    min-width: 46px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(15,107,60,.16);
    border-radius: 10px;
    background: #fff;
    color: #0f6b3c;
    box-shadow: 0 8px 18px rgba(22,45,30,.06);
    font-size: 0;
  }

  .site-header .menu-toggle span,
  .site-header .menu-toggle::before,
  .site-header .menu-toggle::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    border-radius: 999px;
    background: #0f6b3c;
  }

  .site-header .menu-toggle span {
    top: 20px;
  }

  .site-header .menu-toggle::before {
    top: 13px;
  }

  .site-header .menu-toggle::after {
    top: 27px;
  }

  .site-header .search {
    display: grid;
    grid-template-columns: minmax(118px, 140px) minmax(0, 1fr) 74px;
    height: 58px;
    border: 1px solid #d6e5cf;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 22px rgba(22,45,30,.06);
  }

  .site-header .search select,
  .site-header .search input,
  .site-header .search button {
    width: 100%;
    min-width: 0;
    height: 100%;
    border-radius: 0;
  }

  .site-header .search select {
    flex: initial;
    padding: 0 28px 0 12px;
    border: 0;
    border-right: 1px solid #e1eadb;
    color: #0a4f2c;
    font-size: 13px;
    font-weight: 900;
  }

  .site-header .search input {
    padding: 0 12px;
    border: 0;
    font-size: 14px;
  }

  .site-header .search button {
    flex: initial;
    padding: 0;
    border: 0;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .site-header .search {
    grid-template-columns: 126px minmax(0, 1fr) 72px;
  }

  .site-header .search select {
    padding-left: 10px;
    padding-right: 24px;
    font-size: 12px;
  }

  .site-header .search input {
    padding-inline: 10px;
  }
}

/* Last mobile header order fix. */
@media (max-width: 760px) {
  .site-header .logo {
    grid-column: 1;
    grid-row: 1;
    order: 1;
  }

  .site-header .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    order: 2;
    justify-self: end;
  }

  .site-header .search {
    grid-column: 1 / -1;
    grid-row: 2;
    order: 3;
  }
}

@media (max-width: 420px) {
  .site-header .nav {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .site-header .menu-toggle {
    width: 42px;
    min-width: 42px;
    height: 40px;
  }

  .site-header .search {
    grid-template-columns: 116px minmax(0, 1fr) 60px;
    height: 56px;
  }

  .site-header .search button {
    min-width: 60px;
    font-size: 13px;
  }
}

/* Final mobile dropdown menu design. */
@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .site-header .wrap.nav {
    position: relative;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: 14px;
    right: 14px;
    z-index: 120;
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: transparent;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: max-height .22s ease, opacity .18s ease, transform .18s ease;
  }

  .mobile-menu.is-open {
    max-height: 360px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu ul {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 10px;
    list-style: none;
    border: 1px solid rgba(15,107,60,.14);
    border-radius: 12px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 48px rgba(22,45,30,.18);
  }

  .mobile-menu li {
    margin: 0;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #10251a;
    font-size: 15px;
    font-weight: 900;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus {
    background: #eef6eb;
    color: #0f6b3c;
  }

  .menu-toggle[aria-expanded="true"] span {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"]::before {
    top: 20px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"]::after {
    top: 20px;
    transform: rotate(-45deg);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--bg); color: var(--ink); line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(1240px, calc(100% - 44px)); margin-inline: auto; }
.screen-reader-text { position: absolute; left: -9999px; }
.skip-link:focus { left: 18px; top: 18px; z-index: 999; background: #fff; padding: 10px 14px; border-radius: 8px; }

.topbar { background: #073b24; color: #dfffe8; font-size: 13px; }
.topbar__inner { display: flex; justify-content: space-between; gap: 16px; padding-block: 10px; flex-wrap: wrap; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(246,247,239,.94); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(15,107,60,.12); }
.nav { min-height: 76px; display: flex; align-items: center; gap: 18px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 20px; color: var(--green-2); min-width: max-content; }
.logo img { max-height: 48px; width: auto; }
.logo .logo__image--generated { width: clamp(172px, 16vw, 240px); max-height: 72px; object-fit: contain; }
.logo-mark { width: 42px; height: 42px; border-radius: 14px; background: linear-gradient(135deg, var(--green), #19a064); display: grid; place-items: center; color: #fff; box-shadow: 0 10px 25px rgba(15,107,60,.25); font-size: 14px; }
.main-menu ul { display: flex; align-items: center; gap: 18px; margin: 0; padding: 0; list-style: none; }
.main-menu a { font-weight: 800; font-size: 14px; color: #304035; }
.main-menu a:hover { color: var(--green); }
.search { flex: 1; display: flex; background: #fff; border: 2px solid #dfe8d9; border-radius: 18px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,.04); min-width: 220px; }
.search input { flex: 1; min-width: 80px; border: 0; outline: 0; padding: 14px 15px; background: #fff; }
.search button { border: 0; background: var(--orange); color: #fff; font-weight: 900; padding: 0 22px; cursor: pointer; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.pill { border: 1px solid #dce6d7; background: #fff; border-radius: 999px; padding: 12px 16px; font-weight: 800; font-size: 14px; box-shadow: 0 8px 18px rgba(0,0,0,.04); white-space: nowrap; }
.primary, .pill.primary { background: var(--green); color: #fff; border-color: var(--green); }
.menu-toggle, .mobile-menu { display: none; }

.hero { padding: 28px 0 18px; }
.hero-grid { display: grid; grid-template-columns: 260px 1fr 330px; gap: 18px; align-items: stretch; }
.side-menu, .quote-card, .banner, .content-card, .filter-panel, .product-card, .category-card, .step, .deal-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid rgba(15,107,60,.08); }
.side-menu { padding: 18px; }
.side-title { font-size: 14px; font-weight: 900; margin-bottom: 12px; color: var(--green-2); text-transform: uppercase; }
.cat { display: flex; align-items: center; gap: 12px; padding: 12px 10px; border-radius: 16px; color: #304035; font-weight: 800; font-size: 14px; }
.cat:hover { background: #eff6e9; color: var(--green); }
.cat span { width: 34px; height: 34px; border-radius: 12px; background: #eef7e8; display: grid; place-items: center; }
.cat--image span {
  flex: 0 0 auto;
  background:
    linear-gradient(180deg, rgba(10,79,44,.04), rgba(10,79,44,.16)),
    var(--cat-image) center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(15,107,60,.12);
}
.banner { position: relative; overflow: hidden; min-height: 430px; background: linear-gradient(125deg, #0b4026 0%, #126b3e 52%, #d8a03a 128%); color: #fff; padding: 38px; }
.banner::before { content: ""; position: absolute; right: -80px; top: -70px; width: 360px; height: 360px; border-radius: 50%; background: rgba(214,255,85,.18); }
.banner::after { content: ""; position: absolute; right: 24px; bottom: -46px; width: 460px; height: 292px; background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(5,32,20,.16)), var(--home-hero-image) center/cover no-repeat; border-radius: 8px; opacity: .82; transform: rotate(-2deg); border: 8px solid rgba(255,255,255,.14); box-shadow: 0 28px 70px rgba(0,0,0,.18); }
.label { display: inline-flex; gap: 8px; align-items: center; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 9px 13px; font-weight: 900; font-size: 13px; position: relative; z-index: 1; color: inherit; }
.banner h1 { font-size: clamp(34px, 4vw, 48px); line-height: 1.08; margin: 22px 0 14px; position: relative; z-index: 1; max-width: 670px; letter-spacing: 0; }
.banner p { font-size: 16px; color: #e9fff0; max-width: 620px; line-height: 1.7; position: relative; z-index: 1; }
.hero-cta { display: flex; gap: 12px; margin-top: 26px; position: relative; z-index: 1; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 16px; padding: 14px 20px; font-weight: 900; border: 0; cursor: pointer; text-align: center; }
.btn-yellow { background: var(--yellow); color: #132316; }
.btn-white { background: #fff; color: var(--green); }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 30px; position: relative; z-index: 1; max-width: 680px; }
.stat { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 18px; padding: 14px; }
.stat b { font-size: 22px; display: block; }
.stat small { color: #d6f6df; }
.quote-card { padding: 18px; }

.quote-form h3 { margin: 0 0 8px; color: var(--green-2); font-size: 22px; }
.quote-form__intro { color: var(--muted); margin: 0 0 14px; font-size: 13px; }
.form-grid { display: grid; gap: 12px; }
.form-grid label span, .filter-search span, .filter-prices span { display: block; font-size: 13px; color: #425348; font-weight: 800; margin-bottom: 6px; }
.input { width: 100%; border: 1px solid var(--line); border-radius: 15px; padding: 12px 13px; outline: 0; background: #fbfcf8; color: var(--ink); }
textarea.input { resize: vertical; }
.quote-form .btn { width: 100%; margin-top: 12px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-alert { padding: 10px 12px; border-radius: 12px; font-weight: 800; font-size: 13px; margin: 10px 0; }
.form-alert--success { background: #e8f8ed; color: #0f6b3c; }
.form-alert--error { background: #fff1e8; color: #a34700; }

.strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-block: 18px 28px; }
.strip-item { background: #fff; border-radius: 22px; padding: 18px; display: flex; gap: 13px; align-items: center; border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(0,0,0,.04); }
.icon { width: 44px; height: 44px; min-width: 44px; border-radius: 16px; background: #edf8e8; display: grid; place-items: center; font-size: 13px; font-weight: 900; color: var(--green); }
.strip-item b { display: block; }
.strip-item small { color: var(--muted); }
.section { padding: 22px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 18px; }
.section-head h2, .archive-hero h1, .page-hero h1 { font-size: clamp(28px, 3vw, 38px); margin: 0; line-height: 1.15; letter-spacing: 0; }
.section-head p, .archive-hero p, .page-hero p { color: var(--muted); margin: 8px 0 0; max-width: 760px; }
.tab { padding: 10px 14px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-weight: 900; font-size: 13px; }
.tab.active { background: var(--green); color: #fff; border-color: var(--green); }
.category-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.category-card { padding: 18px; min-height: 150px; position: relative; overflow: hidden; box-shadow: 0 12px 28px rgba(0,0,0,.05); }
.category-card h3 { margin: 8px 0 6px; font-size: 17px; }
.category-card p { margin: 0; color: var(--muted); font-size: 13px; }
.category-card .emoji { width: 44px; height: 44px; border-radius: 16px; background: #eef7e8; display: grid; place-items: center; color: var(--green); font-weight: 900; }
.category-card--image {
  padding: 0;
  display: grid;
  grid-template-rows: 98px 1fr;
}

.category-card__image {
  min-height: 98px;
  background:
    linear-gradient(180deg, rgba(5,32,20,.08), rgba(5,32,20,.28)),
    var(--category-image) center / cover no-repeat;
}

.category-card__body {
  position: relative;
  z-index: 1;
  padding: 16px;
}

.market { display: grid; grid-template-columns: 260px 1fr; gap: 18px; align-items: start; }
.filter-panel { padding: 18px; height: max-content; position: sticky; top: 94px; }
.filter-panel h3 { margin: 0 0 14px; }
.filter-group { margin: 14px 0; }
.filter-group b { display: block; margin-bottom: 8px; }
.filter-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 14px 0; }
.filter-reset { display: inline-block; margin-top: 10px; color: var(--green); font-weight: 800; }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.product-card { overflow: hidden; box-shadow: 0 12px 28px rgba(0,0,0,.05); transition: transform .22s ease, box-shadow .22s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15,107,60,.14); }
.product-card__thumb { height: 185px; background: #e8eee2; position: relative; overflow: hidden; display: block; }
.product-card__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: var(--img-x,50%) var(--img-y,50%); transform: scale(var(--img-scale,1.06)); transition: transform .28s ease, filter .28s ease; }
.product-card:hover .product-card__thumb img { transform: scale(calc(var(--img-scale,1.06) + .04)); filter: saturate(1.04) contrast(1.03); }
.badge { position: absolute; top: 12px; left: 12px; background: var(--orange); color: #fff; border-radius: 999px; padding: 7px 10px; font-size: 12px; font-weight: 900; text-transform: capitalize; }
.product-card__body { padding: 16px; }
.product-card h3 { font-size: 17px; margin: 0 0 8px; line-height: 1.35; }
.product-card__meta, .spec-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.product-card__meta span, .spec-pills span { font-size: 12px; background: #f0f6ec; color: #47604d; border-radius: 999px; padding: 6px 9px; font-weight: 800; }
.product-card__price { display: flex; align-items: end; justify-content: space-between; gap: 8px; }
.product-card__price b, .single-price b { display: block; font-size: 22px; color: #e46c0a; line-height: 1.15; }
.product-card__price small, .single-price small { color: var(--muted); }
.product-card__status { display: flex; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line); padding-top: 13px; margin-top: 13px; color: #56665a; font-size: 13px; }
.cart-btn { display: block; width: 100%; margin-top: 13px; background: #123f28; color: #fff; border: 0; border-radius: 14px; padding: 13px; font-weight: 900; text-align: center; }

.blog-single {
  background:
    linear-gradient(180deg, #edf3e7 0, rgba(246,247,239,0) 420px),
    var(--bg);
  padding-bottom: 42px;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 36px;
  background: #0b3f27;
  color: #fff;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(7,38,23,.98), rgba(15,107,60,.9) 48%, rgba(79,84,26,.76));
  opacity: .95;
}

.blog-hero--image::before {
  background-image:
    linear-gradient(100deg, rgba(5,32,20,.97) 0%, rgba(8,68,38,.9) 45%, rgba(6,33,21,.42) 78%, rgba(6,33,21,.28) 100%),
    var(--blog-hero-image);
  background-size: cover;
  background-position: center;
}

.blog-hero .wrap {
  position: relative;
  z-index: 1;
}

.blog-hero .breadcrumb {
  display: inline-flex;
  width: min(100%, 960px);
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  font-size: 13px;
  line-height: 1.4;
}

.blog-hero .breadcrumb a,
.blog-hero .breadcrumb span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.blog-hero .breadcrumb a {
  color: #fff;
  font-weight: 800;
}

.blog-hero .breadcrumb a:hover {
  color: #ffd84d;
}

.blog-hero .breadcrumb > span {
  color: rgba(255,255,255,.68);
}

.blog-hero .breadcrumb > span:not(:last-child) {
  padding: 0 9px;
}

.blog-hero .breadcrumb > span:last-child {
  max-width: 520px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: end;
  padding-top: 24px;
}

.blog-hero__copy {
  max-width: 900px;
}

.blog-kicker,
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.blog-kicker {
  width: fit-content;
  max-width: 100%;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 16px 34px rgba(0,0,0,.12);
  backdrop-filter: blur(12px);
}

.blog-kicker span,
.blog-kicker a,
.blog-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  color: #f0fff4;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
}

.blog-kicker span,
.blog-kicker a {
  min-height: 38px;
  background: rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}

.blog-kicker span > a {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
}

.blog-kicker span:first-child,
.blog-kicker a:first-child {
  background: #fff;
  color: #0a4f2c;
}

.blog-kicker span:last-child::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #ffd84d;
  box-shadow: 0 0 0 4px rgba(255,216,77,.16);
}

.blog-hero h1 {
  max-width: 940px;
  margin: 22px 0 14px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.blog-lead {
  max-width: 830px;
  margin: 0 0 22px;
  color: #e8fff0;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.7;
}

.blog-hero__panel {
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  padding: 22px;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

.blog-hero__panel b {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.blog-hero__panel p {
  margin: 0 0 18px;
  color: #e9fff1;
  line-height: 1.65;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) 330px;
  gap: 28px;
  align-items: start;
  margin-top: 34px;
  position: relative;
  z-index: 1;
}

.blog-article,
.blog-toc,
.blog-advice,
.blog-related-card {
  background: #fff;
  border: 1px solid rgba(15,107,60,.12);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(22,45,30,.08);
}

.blog-article {
  overflow: hidden;
}

.blog-prose {
  padding: clamp(26px, 4vw, 48px);
  color: #213025;
  font-size: 17px;
  line-height: 1.86;
}

.blog-prose > *:first-child {
  margin-top: 0;
}

.blog-prose p {
  margin: 0 0 18px;
}

.blog-prose h2 {
  position: relative;
  margin: 42px 0 16px;
  padding-top: 14px;
  color: #0a4f2c;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.22;
  letter-spacing: 0;
  scroll-margin-top: 112px;
}

.blog-prose h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.blog-prose h3 {
  margin: 28px 0 12px;
  color: #153e29;
  font-size: 22px;
  line-height: 1.3;
}

.blog-prose a {
  color: #0f6b3c;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255,138,31,.42);
}

.blog-prose a:hover {
  color: #e46c0a;
  text-decoration-color: currentColor;
}

.blog-prose ul,
.blog-prose ol {
  margin: 18px 0;
  padding-left: 24px;
}

.blog-prose li {
  margin: 9px 0;
}

.blog-prose blockquote {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 5px solid var(--orange);
  background: #fff7e0;
  color: #3e2b13;
  border-radius: 0 8px 8px 0;
}

.blog-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 8px;
}

.blog-prose th,
.blog-prose td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
}

.blog-prose th {
  background: #edf8e8;
  color: #0a4f2c;
}

.blog-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.blog-toc {
  padding: 18px;
}

.blog-toc--mobile {
  display: none;
  margin: 18px 18px 0;
}

.blog-toc b {
  display: block;
  margin-bottom: 12px;
  color: #0a4f2c;
  font-size: 16px;
}

.blog-toc a {
  display: block;
  padding: 11px 0;
  border-top: 1px solid #eef3ea;
  color: #44574b;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 750;
}

.blog-toc a:hover {
  color: var(--green);
}

.blog-advice {
  padding: 22px;
  background:
    linear-gradient(180deg, #ffffff, #fff9e8);
}

.blog-advice span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf8e8;
  color: #0f6b3c;
  font-size: 12px;
  font-weight: 900;
}

.blog-advice h2 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.18;
  color: #153e29;
}

.blog-advice p {
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.65;
}

.blog-advice .btn {
  width: 100%;
  border-radius: 8px;
}

.blog-advice__link {
  display: block;
  margin-top: 13px;
  color: #0f6b3c;
  font-weight: 900;
  text-align: center;
}

.blog-related {
  padding-top: 34px;
}

.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.blog-related-card {
  overflow: hidden;
  padding: 0;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.blog-related-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10,79,44,.88), rgba(15,107,60,.72), rgba(255,138,31,.48)),
    url('../img/product-placeholder.svg') right -26px center / 220px auto no-repeat;
}

.blog-related-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .28s ease;
}

.blog-related-card:hover .blog-related-card__media img {
  transform: scale(1.04);
}

.blog-related-card__body {
  padding: 18px 20px 20px;
}

.blog-related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15,107,60,.28);
  box-shadow: 0 24px 48px rgba(15,107,60,.12);
}

.blog-related-card span {
  color: #e46c0a;
  font-size: 12px;
  font-weight: 900;
}

.blog-related-card h3 {
  margin: 8px 0 10px;
  font-size: 19px;
  line-height: 1.34;
  color: #153e29;
}

.blog-related-card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.blog-archive {
  background:
    linear-gradient(180deg, #edf3e7 0, rgba(246,247,239,0) 460px),
    var(--bg);
  padding-bottom: 46px;
}

.blog-archive-hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 54px;
  color: #fff;
  background: #0b3f27;
}

.blog-archive-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(7,38,23,.98), rgba(15,107,60,.9) 58%, rgba(79,84,26,.72));
  opacity: .96;
}

.blog-archive-hero--image::before {
  background-image:
    linear-gradient(105deg, rgba(5,32,20,.97) 0%, rgba(8,68,38,.9) 46%, rgba(6,33,21,.42) 82%, rgba(6,33,21,.24) 100%),
    var(--blog-archive-hero-image);
  background-size: cover;
  background-position: center;
}

.blog-archive-hero .wrap {
  position: relative;
  z-index: 1;
}

.blog-archive-hero .breadcrumb {
  display: inline-flex;
  width: min(100%, 760px);
  align-items: center;
  gap: 0;
  margin: 0 0 24px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
}

.blog-archive-hero .breadcrumb a {
  color: #fff;
  font-weight: 800;
}

.blog-archive-hero .breadcrumb span {
  color: rgba(255,255,255,.68);
}

.blog-archive-hero .breadcrumb > span:not(:last-child) {
  padding: 0 9px;
}

.blog-archive-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: end;
}

.blog-archive-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 8px;
  padding: 7px 12px;
  background: #fff;
  color: #0a4f2c;
  font-size: 13px;
  font-weight: 900;
}

.blog-archive-hero h1 {
  max-width: 860px;
  margin: 18px 0 14px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.blog-archive-hero p {
  max-width: 780px;
  margin: 0;
  color: #e8fff0;
  font-size: 18px;
  line-height: 1.72;
}

.blog-archive-stats {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0,0,0,.16);
}

.blog-archive-stats div {
  display: grid;
  gap: 3px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
}

.blog-archive-stats b {
  font-size: 24px;
  line-height: 1.1;
}

.blog-archive-stats span {
  color: #e7fff0;
  font-size: 13px;
  font-weight: 700;
}

.blog-archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.blog-archive-main {
  min-width: 0;
}

.blog-archive-toolbar,
.archive-side-card,
.knowledge-card {
  background: #fff;
  border: 1px solid rgba(15,107,60,.12);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(22,45,30,.08);
}

.blog-archive-toolbar {
  margin-bottom: 16px;
  padding: 18px 20px;
}

.blog-archive-toolbar b {
  display: block;
  color: #0a4f2c;
  font-size: 20px;
}

.blog-archive-toolbar span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

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

.knowledge-card {
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.knowledge-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15,107,60,.28);
  box-shadow: 0 24px 52px rgba(15,107,60,.13);
}

.knowledge-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10,79,44,.88), rgba(15,107,60,.72), rgba(255,138,31,.48)),
    url('../img/product-placeholder.svg') right -26px center / 260px auto no-repeat;
}

.knowledge-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,32,20,.06), rgba(5,32,20,.34));
  pointer-events: none;
}

.knowledge-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .28s ease;
}

.knowledge-card:hover .knowledge-card__media img {
  transform: scale(1.04);
}

.knowledge-card__media span {
  position: absolute;
  z-index: 1;
  left: 16px;
  top: 16px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 8px;
  padding: 7px 11px;
  background: #fff;
  color: #0a4f2c;
  font-size: 12px;
  font-weight: 900;
}

.knowledge-card__body {
  padding: 20px;
}

.knowledge-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.knowledge-card__meta span {
  border-radius: 999px;
  padding: 6px 9px;
  background: #eef7e8;
  color: #40604b;
  font-size: 12px;
  font-weight: 800;
}

.knowledge-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.28;
  letter-spacing: 0;
}

.knowledge-card h2 a {
  color: #153e29;
}

.knowledge-card h2 a:hover {
  color: var(--green);
}

.knowledge-card p {
  min-height: 70px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.knowledge-card__link {
  display: inline-flex;
  margin-top: 16px;
  color: #0f6b3c;
  font-weight: 900;
}

.blog-archive-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.archive-side-card {
  padding: 22px;
}

.archive-side-card--cta {
  background: linear-gradient(180deg, #fff, #fff9e8);
}

.archive-side-card span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf8e8;
  color: #0f6b3c;
  font-size: 12px;
  font-weight: 900;
}

.archive-side-card h2 {
  margin: 12px 0 10px;
  color: #153e29;
  font-size: 24px;
  line-height: 1.18;
}

.archive-side-card p {
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.65;
}

.archive-side-card .btn {
  width: 100%;
  border-radius: 8px;
}

.archive-side-card > a:not(.btn) {
  display: block;
  padding: 12px 0;
  border-top: 1px solid #eef3ea;
  color: #44574b;
  font-weight: 800;
  line-height: 1.45;
}

.archive-side-card > a:not(.btn):hover {
  color: var(--green);
}

.deal { margin-block: 24px; background: linear-gradient(110deg, #2b1807, #8b4e17 58%, #f2ad3a); border-radius: 30px; padding: 28px; color: #fff; display: grid; grid-template-columns: 1.4fr .9fr; gap: 20px; align-items: center; overflow: hidden; }
.deal h2 { font-size: clamp(26px, 3vw, 34px); margin: 12px 0 10px; line-height: 1.18; }
.deal p { color: #ffe8c8; }
.deal-card { color: var(--ink); padding: 18px; }
.deal-card p { color: var(--muted); }
.price { display: flex; gap: 14px; align-items: center; justify-content: space-between; }
.process { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.step { padding: 18px; }
.num { width: 38px; height: 38px; border-radius: 14px; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 900; }
.step h3 { margin: 14px 0 8px; font-size: 17px; }
.step p { color: var(--muted); font-size: 13px; margin: 0; }

.pre-footer { padding: 42px 0; }
.pre-footer-box { background: linear-gradient(135deg, #022818, #06472e 55%, #012113); border-radius: 24px; padding: 30px 34px; display: flex; align-items: center; gap: 28px; color: #fff; box-shadow: 0 24px 70px rgba(4,46,29,.18); border: 1px solid rgba(255,255,255,.12); }
.pre-icon { width: 64px; height: 64px; min-width: 64px; border-radius: 50%; background: rgba(255,216,77,.14); display: grid; place-items: center; font-size: 28px; border: 1px solid rgba(255,216,77,.25); }
.pre-main { flex: 1; min-width: 280px; }
.pre-main h2 { margin: 0 0 10px; font-size: clamp(24px, 3vw, 30px); }
.pre-main p { margin: 0; color: #d9eee2; }
.pre-feature { display: flex; gap: 12px; align-items: center; border-left: 1px solid rgba(255,255,255,.14); padding-left: 24px; min-width: 160px; }
.pre-feature span { width: 46px; height: 46px; min-width: 46px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,216,77,.35); background: rgba(255,216,77,.08); font-size: 13px; font-weight: 900; }
.pre-feature b, .pre-feature small { display: block; white-space: nowrap; }
.pre-feature small { color: #d9eee2; }
.pre-phone { background: linear-gradient(135deg, #ffe58a, #f4a935); color: #06180f; border-radius: 14px; padding: 18px 24px; font-weight: 900; white-space: nowrap; box-shadow: 0 14px 30px rgba(244,169,53,.22); }

.footer { background: radial-gradient(circle at 18% 18%, rgba(18,107,65,.36), transparent 34%), linear-gradient(180deg, #002417 0%, #001b11 100%); color: #dce9e1; padding: 48px 0 26px; overflow: hidden; }
.footer .wrap { max-width: 1680px; width: calc(100% - 72px); }
.footer-grid-v2 { display: grid; grid-template-columns: minmax(390px,430px) minmax(190px,230px) minmax(240px,300px) minmax(240px,300px) minmax(300px,340px); gap: 42px; align-items: start; justify-content: center; }
.footer-card-v2 { background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,.10); border-radius: 24px; padding: 30px; box-shadow: 0 24px 60px rgba(0,0,0,.14); }
.footer-logo-v2 { display: inline-flex; align-items: center; width: fit-content; max-width: 100%; margin-bottom: 24px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,250,241,.9)); box-shadow: 0 16px 34px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.9); text-decoration: none; }
.footer-logo-v2 img { width: min(238px, 100%); max-height: 70px; object-fit: contain; display: block; filter: none; }
.footer-logo-v2 span { width: 56px; height: 56px; border-radius: 18px; background: rgba(255,216,77,.12); display: grid; place-items: center; color: #ffd86a; font-weight: 900; }
.footer-logo-v2 b { display: block; font-size: 25px; line-height: 1.1; color: #fff; }
.footer-logo-v2 small { display: block; font-size: 14px; color: #ffd86a; letter-spacing: 1px; margin-top: 5px; }
.footer-card-v2 p { color: #d0ddd5; line-height: 1.75; margin: 0 0 22px; }
.footer-info-list { display: grid; gap: 12px; border-top: 1px solid rgba(255,255,255,.10); padding-top: 20px; }
.footer-info-list div, .footer-status div { display: grid; grid-template-columns: 42px 1fr; gap: 0 14px; align-items: center; }
.footer-info-list span, .footer-status span { grid-row: 1 / 3; width: 42px; height: 42px; border-radius: 50%; background: rgba(15,107,60,.34); border: 1px solid rgba(255,216,77,.18); display: grid; place-items: center; font-size: 12px; font-weight: 900; }
.footer-info-list b, .footer-status b { font-size: 15px; color: #fff; line-height: 1.35; }
.footer-info-list small, .footer-status small { font-size: 14px; color: #aebfb6; margin-top: 4px; line-height: 1.35; }
.footer-col-v2 h4 { color: #fff; font-size: 16px; text-transform: uppercase; margin: 18px 0 28px; position: relative; }
.footer-col-v2 h4::after { content: ""; position: absolute; left: 0; bottom: -12px; width: 36px; height: 3px; background: #ffd86a; border-radius: 3px; }
.footer-col-v2 a { display: block; color: #d4dfd9; margin: 0 0 16px; font-size: 15px; }
.footer-col-v2 a::before { content: "›"; color: #ffd86a; margin-right: 9px; font-weight: 900; }
.footer-status { display: grid; gap: 20px; align-content: start; }
.socials { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.socials a { width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,216,77,.25); background: rgba(255,216,77,.06); display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 12px; }
.socials a::before { display: none; }
.newsletter { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09); border-radius: 18px; padding: 22px; width: 100%; }
.newsletter p { font-size: 13px; color: #b7c7be; }
.newsletter div { display: flex; background: #08291b; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; overflow: hidden; }
.newsletter input { flex: 1; min-width: 0; background: transparent; border: 0; outline: 0; color: #fff; padding: 13px; }
.newsletter button { border: 0; background: #ffd86a; padding: 0 16px; font-weight: 900; }
.newsletter small { display: block; margin-top: 12px; color: #9eb3a8; }
.footer-bottom-v2 { max-width: 1680px; margin: 38px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: grid; grid-template-columns: repeat(4,minmax(180px,1fr)) minmax(300px,1.2fr); gap: 22px; align-items: center; }
.footer-bottom-v2 div { border-right: 1px solid rgba(255,255,255,.12); padding-right: 16px; }
.footer-bottom-v2 b { display: block; color: #fff; }
.footer-bottom-v2 small { display: block; color: #aebfb6; margin-top: 5px; }
.footer-bottom-v2 p { text-align: right; color: #c7d8cf; margin: 0; }

.page-shell, .archive-shell, .single-product { padding-block: 28px; }
.breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.breadcrumb a { color: var(--green); font-weight: 800; }
.archive-hero, .page-hero { background: linear-gradient(135deg, #0b4026, #11683d); color: #fff; border-radius: 28px; padding: 32px; margin-bottom: 22px; }
.archive-hero p, .page-hero p { color: #e3f4e9; }
.archive-market { align-items: start; }
.archive-toolbar { margin-bottom: 14px; color: var(--green-2); }
.archive-seo-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1.35fr);
  gap: 18px;
  align-items: center;
  margin: -10px 0 22px;
  padding: 18px;
  border: 1px solid #dfe9da;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(22,45,30,.07);
}

.archive-seo-links span {
  display: inline-flex;
  margin-bottom: 6px;
  color: #0f6b3c;
  font-size: 13px;
  font-weight: 900;
}

.archive-seo-links p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.archive-seo-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.archive-seo-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid #dbe8d4;
  border-radius: 8px;
  padding: 8px 11px;
  background: #f3faef;
  color: #153e29;
  font-size: 13px;
  font-weight: 850;
}

.archive-seo-links a:hover {
  border-color: rgba(15,107,60,.35);
  background: #fff7df;
  color: #0f6b3c;
}
.pagination { margin-top: 22px; display: flex; gap: 8px; }
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.page-numbers { padding: 9px 13px; border-radius: 12px; background: #fff; border: 1px solid var(--line); font-weight: 800; }
.page-numbers.current { background: var(--green); color: #fff; }
.load-more-wrap { display: flex; justify-content: center; margin-top: 26px; }
.load-more-products { min-width: 230px; border: 0; border-radius: 999px; background: linear-gradient(135deg, #0c6f3f, #0a4b2c); color: #fff; cursor: pointer; font: inherit; font-weight: 900; padding: 15px 28px; box-shadow: 0 16px 30px rgba(15,107,60,.18); transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease; }
.load-more-products:hover { transform: translateY(-2px); box-shadow: 0 20px 38px rgba(15,107,60,.26); }
.load-more-products.is-loading { opacity: .72; pointer-events: none; }
.load-more-products.is-hidden { display: none; }
.archive-seo-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
}

.archive-seo-content__main,
.archive-faq {
  border: 1px solid #dfe9da;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(22,45,30,.07);
  padding: clamp(22px, 3vw, 30px);
}

.archive-seo-content h2,
.archive-faq h2 {
  margin: 12px 0 14px;
  color: #153e29;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.22;
  letter-spacing: 0;
}

.archive-seo-content p {
  margin: 0 0 14px;
  color: #44574b;
  line-height: 1.78;
}

.archive-seo-content ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.archive-seo-content li {
  position: relative;
  padding-left: 26px;
  color: #25372b;
  line-height: 1.6;
  font-weight: 700;
}

.archive-seo-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255,138,31,.14);
}

.archive-faq {
  display: grid;
  gap: 10px;
}

.archive-faq--full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-faq h2 {
  grid-column: 1 / -1;
  margin-top: 0;
}

.archive-faq details {
  border: 1px solid #e5edde;
  border-radius: 8px;
  background: #f8fbf4;
  overflow: hidden;
}

.archive-faq summary {
  cursor: pointer;
  padding: 14px 15px;
  color: #153e29;
  font-weight: 900;
  line-height: 1.45;
}

.archive-faq details[open] summary {
  border-bottom: 1px solid #e5edde;
  background: #eef7e8;
}

.archive-faq p {
  margin: 0;
  padding: 14px 15px 16px;
  color: var(--muted);
  line-height: 1.68;
}
.content-card { padding: 24px; }
.content-card h1, .content-card h2 { margin-top: 0; }
.split-hero { display: grid; grid-template-columns: 1fr 460px; gap: 24px; align-items: center; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.product-hero { display: grid; grid-template-columns: 1fr .9fr; gap: 22px; align-items: stretch; margin-bottom: 22px; }
.product-gallery, .product-summary, .single-sidebar { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 18px; box-shadow: var(--shadow); }
.product-gallery__main { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 18px; background: #e8eee2; }
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 10px; }
.product-gallery__thumbs img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; cursor: pointer; border: 2px solid transparent; }
.product-gallery__thumbs img:hover { border-color: var(--green); }
.product-summary { display: flex; flex-direction: column; justify-content: center; }
.product-summary h1 { font-size: clamp(30px, 4vw, 46px); line-height: 1.12; margin: 16px 0 10px; }
.product-summary p { color: var(--muted); font-size: 16px; }
.single-price { margin: 18px 0; padding: 18px; border-radius: 18px; background: #fff7e0; border: 1px solid #f3dc99; }
.single-price b { font-size: 30px; }
.single-grid { display: grid; grid-template-columns: 1fr 360px; gap: 22px; align-items: start; }
.single-content { display: grid; gap: 18px; }
.single-sidebar { position: sticky; top: 96px; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { border-bottom: 1px solid var(--line); padding: 13px 0; text-align: left; vertical-align: top; }
.spec-table th { width: 34%; color: var(--green-2); }
.related-products { padding-bottom: 0; }

@media (max-width: 1500px) {
  .footer-grid-v2 { grid-template-columns: minmax(360px,420px) repeat(2,minmax(220px,1fr)); }
  .connect-box { grid-column: 3 / 4; }
  .footer-bottom-v2 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 1200px) {
  .hero-grid, .product-hero, .single-grid, .split-hero { grid-template-columns: 1fr; }
  .side-menu { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
  .strip { grid-template-columns: repeat(2,1fr); }
  .category-grid, .process { grid-template-columns: repeat(3,1fr); }
  .market { grid-template-columns: 1fr; }
  .filter-panel, .single-sidebar { position: static; }
  .footer .wrap { width: calc(100% - 48px); }
  .footer-grid-v2 { grid-template-columns: 1fr 1fr; }
  .footer-card-v2 { grid-column: 1 / -1; }
  .connect-box { grid-column: auto; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .main-menu, .nav-actions { display: none; }
  .nav { flex-wrap: wrap; padding-block: 12px; }
  .search { order: 3; flex-basis: 100%; }
  .menu-toggle { display: inline-flex; margin-left: auto; border: 0; background: var(--green); color: #fff; border-radius: 12px; padding: 10px 13px; font-weight: 900; }
  .mobile-menu { display: none; border-top: 1px solid var(--line); padding: 12px 22px; background: #fff; }
  .mobile-menu.is-open { display: block; }
  .mobile-menu ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
  .mobile-menu a { font-weight: 800; }
  .footer-grid-v2 { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-info-list { grid-template-columns: 1fr 1fr; }
  .connect-box { grid-column: 1 / -1; }
  .footer-bottom-v2 { grid-template-columns: 1fr 1fr; }
  .footer-bottom-v2 p { text-align: left; grid-column: 1 / -1; }
  .pre-footer-box { flex-wrap: wrap; }
  .pre-feature { border-left: 0; padding-left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, 1240px); }
  .topbar__inner { font-size: 12px; }
  .hero { padding-top: 14px; }
  .banner { padding: 24px; min-height: 500px; }
  .stats, .strip, .category-grid, .product-grid, .process, .deal, .filter-prices { grid-template-columns: 1fr; }
  .side-menu { display: none; }
  .quote-card { display: block; }
  .section-head { display: block; }
  .archive-hero, .page-hero, .content-card { padding: 22px; border-radius: 22px; }
  .archive-seo-links {
    grid-template-columns: 1fr;
  }
  .archive-seo-links nav {
    justify-content: flex-start;
  }
  .archive-seo-content {
    grid-template-columns: 1fr;
  }
  .archive-faq--full {
    grid-template-columns: 1fr;
  }
  .pre-footer { padding: 28px 0; }
  .pre-footer-box { display: grid; grid-template-columns: 1fr; padding: 24px; border-radius: 22px; }
  .pre-feature b, .pre-feature small { white-space: normal; }
  .pre-phone { width: 100%; text-align: center; }
  .footer { padding-top: 34px; }
  .footer .wrap { width: calc(100% - 32px); }
  .footer-grid-v2 { grid-template-columns: 1fr; gap: 26px; }
  .footer-card-v2 { padding: 22px; border-radius: 22px; }
  .footer-info-list { grid-template-columns: 1fr; }
  .footer-col-v2 h4 { margin-top: 0; white-space: normal; }
  .footer-col-v2 a { white-space: normal; }
  .footer-bottom-v2 { grid-template-columns: 1fr; margin-top: 28px; gap: 0; }
  .footer-bottom-v2 div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); padding: 14px 0; }
  .footer-bottom-v2 p { margin-top: 18px; font-size: 13px; }
  .product-card__price, .product-card__status, .price { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 420px) {
  .wrap { width: min(100% - 24px, 1240px); }
  .banner { min-height: 520px; }
  .footer .wrap { width: calc(100% - 28px); }
  .footer-card-v2 { padding: 18px; }
  .footer-logo-v2 b { font-size: 21px; }
  .newsletter div { display: grid; grid-template-columns: 1fr 50px; }
}

/* Demo parity refinements */
body {
  font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wrap {
  max-width: 1240px;
  width: 100%;
  padding-left: 22px;
  padding-right: 22px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,247,239,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15,107,60,.12);
}

.nav {
  height: 76px;
  min-height: 76px;
  flex-wrap: nowrap;
}

.logo {
  font-size: 22px;
}

.search select,
.search input {
  border: 0;
  outline: 0;
  background: #fff;
  padding: 15px;
}

.search select {
  color: var(--green-2);
  font-weight: 800;
  border-right: 1px solid var(--line);
  max-width: 185px;
}

.search button {
  padding: 0 24px;
  font-weight: 900;
}

.home-main.wrap {
  margin-inline: auto;
}

.hero-grid {
  grid-template-columns: 260px 1fr 310px;
}

.quote-card {
  padding: 20px;
}

.quote-card .form-grid {
  gap: 10px;
}

.quote-card .quote-form__intro,
.quote-card label span {
  font-size: 12px;
}

.category-grid {
  grid-template-columns: repeat(6, 1fr);
}

.category-card {
  padding: 16px;
  min-height: 150px;
}

.category-card h3 {
  font-size: 16px;
}

.market {
  grid-template-columns: 250px 1fr;
}

.filter-panel {
  border-radius: 24px;
  position: sticky;
  top: 94px;
}

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

.product-card {
  border-radius: 24px;
}

.product-card__thumb {
  height: 185px;
}

.product-card__price b {
  font-size: 21px;
  color: #e46c0a;
}

.product-card__status {
  align-items: center;
}

.count {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.count div {
  background: rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 12px 14px;
  text-align: center;
  min-width: 68px;
}

.count b {
  font-size: 22px;
  display: block;
}

.count small {
  color: #ffe8c8;
}

.footer .wrap {
  max-width: 1590px;
  width: calc(100% - 44px);
  padding-left: 0;
  padding-right: 0;
}

.footer-grid-v2 {
  grid-template-columns: minmax(390px,430px) minmax(190px,230px) minmax(260px,300px) minmax(260px,300px) minmax(300px,340px);
  gap: 46px;
}

.footer-col-v2 a {
  white-space: nowrap;
}

@media (max-width: 1500px) {
  .footer-grid-v2 {
    grid-template-columns: minmax(360px,420px) repeat(2,minmax(220px,1fr));
  }
}

/* Homepage polish pass: header, product cards, process, and knowledge section. */
.nav-actions {
  margin-left: auto;
}

.nav-actions .pill.primary {
  min-width: 148px;
  justify-content: center;
  padding-inline: 30px;
  background: linear-gradient(135deg, #0f6b3c, #073b24);
  border-color: rgba(15,107,60,.2);
  box-shadow: 0 12px 24px rgba(15,107,60,.18);
}

.header .search select {
  min-width: 190px;
}

.header .search button {
  min-width: 122px;
}

.home-main .market {
  align-items: stretch;
}

.home-main .product-grid {
  align-items: stretch;
}

.home-main .product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(15,107,60,.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff 0%, #fff 66%, #fbf8ec 100%);
  box-shadow: 0 18px 42px rgba(22,45,30,.08);
}

.home-main .product-card:hover {
  border-color: rgba(255,138,31,.42);
  box-shadow: 0 24px 52px rgba(15,107,60,.16);
}

.home-main .product-card__thumb {
  height: 210px;
  border-bottom: 1px solid #edf2e7;
  background: #eef4eb;
}

.home-main .badge {
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #ff8a1f, #e46c0a);
  box-shadow: 0 10px 22px rgba(228,108,10,.22);
}

.home-main .product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.home-main .product-card h3 {
  min-height: 54px;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.35;
  color: #10251a;
}

.home-main .product-card__meta {
  gap: 10px;
  margin-bottom: 16px;
}

.home-main .product-card__meta span {
  padding: 8px 12px;
  border: 1px solid rgba(15,107,60,.08);
  background: #eef6eb;
  color: #335244;
  font-size: 13px;
}

.home-main .product-card__price {
  margin: 2px -4px 0;
  padding: 16px;
  align-items: center;
  border: 1px solid #f0dfc1;
  border-radius: 8px;
  background: linear-gradient(135deg, #fffaf0, #fff);
}

.home-main .product-card__price b {
  margin-top: 2px;
  font-size: 28px;
  color: #e46c0a;
}

.home-main .product-card__price small {
  font-weight: 800;
}

.home-main .product-card__status {
  margin-top: auto;
  padding-top: 15px;
  border-top-color: #e3ebdf;
  font-weight: 800;
}

.home-main .cart-btn {
  margin-top: 15px;
  border-radius: 8px;
  background: linear-gradient(135deg, #123f28, #0f6b3c);
  box-shadow: 0 12px 24px rgba(15,107,60,.16);
}

.home-process-section {
  margin-top: 18px;
  padding: 30px;
  border: 1px solid rgba(15,107,60,.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.64)),
    radial-gradient(circle at 8% 0%, rgba(255,216,77,.22), transparent 26%),
    radial-gradient(circle at 95% 10%, rgba(15,107,60,.12), transparent 28%);
}

.home-process-section .step {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(15,107,60,.14);
  background: #fff;
  box-shadow: 0 16px 34px rgba(22,45,30,.08);
}

.home-process-section .step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--step-color, var(--green));
}

.home-process-section .step--1 { --step-color: #0f6b3c; }
.home-process-section .step--2 { --step-color: #ff8a1f; }
.home-process-section .step--3 { --step-color: #d6a21e; }
.home-process-section .step--4 { --step-color: #267a59; }
.home-process-section .step--5 { --step-color: #123f28; }

.home-process-section .num {
  background: var(--step-color, var(--green));
  box-shadow: 0 12px 22px color-mix(in srgb, var(--step-color, var(--green)) 28%, transparent);
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef6eb;
  color: #0f6b3c;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-news-section {
  padding-top: 42px;
}

.home-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(15,107,60,.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(22,45,30,.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home-news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,138,31,.38);
  box-shadow: 0 24px 52px rgba(15,107,60,.14);
}

.home-news-card:first-child {
  grid-row: span 2;
}

.home-news-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10,79,44,.92), rgba(15,107,60,.68), rgba(255,138,31,.45)),
    url('../img/product-placeholder.svg') right -20px center / 220px auto no-repeat;
}

.home-news-card:first-child .home-news-card__media {
  aspect-ratio: 16 / 9;
}

.home-news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.home-news-card:hover .home-news-card__media img {
  transform: scale(1.04);
}

.home-news-card__media span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #0a4f2c;
  font-size: 12px;
  font-weight: 900;
}

.home-news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.home-news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: #66776d;
  font-size: 12px;
  font-weight: 800;
}

.home-news-card h3 {
  margin: 0 0 10px;
  color: #10251a;
  font-size: 20px;
  line-height: 1.35;
}

.home-news-card:first-child h3 {
  font-size: 26px;
}

.home-news-card p {
  margin: 0 0 16px;
  color: #66776d;
  line-height: 1.65;
}

.home-news-card__link {
  margin-top: auto;
  color: #0f6b3c;
  font-weight: 900;
}

@media (max-width: 980px) {
  .home-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-news-card:first-child {
    grid-row: auto;
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .topbar {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .logo .logo__image--generated {
    width: min(190px, 58vw);
    max-height: 56px;
  }

  .home-main .product-card h3 {
    min-height: 0;
  }

  .home-main .product-card__price,
  .home-main .product-card__status {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-process-section {
    padding: 20px;
  }

  .home-news-grid,
  .home-news-card:first-child {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .home-news-card:first-child h3 {
    font-size: 22px;
  }
}

@media (max-width: 980px) {
  .blog-hero__grid,
  .blog-layout,
  .blog-related__grid,
  .blog-archive-hero__grid,
  .blog-archive-layout {
    grid-template-columns: 1fr;
  }

  .blog-hero__panel {
    max-width: 560px;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-sidebar .blog-toc {
    display: none;
  }

  .blog-toc--mobile {
    display: block;
  }

  .blog-archive-stats {
    max-width: 620px;
  }

  .blog-archive-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .blog-hero {
    padding: 20px 0 30px;
  }

  .blog-hero::before {
    background:
      linear-gradient(120deg, rgba(7,38,23,.96), rgba(15,107,60,.86)),
      url('../img/product-placeholder.svg') right -120px bottom -40px / 360px auto no-repeat;
  }

  .blog-hero__grid {
    gap: 18px;
    padding-top: 16px;
  }

  .blog-hero h1 {
    font-size: 32px;
  }

  .blog-lead {
    font-size: 16px;
  }

  .blog-meta span,
  .blog-kicker span,
  .blog-kicker a {
    min-height: 30px;
    font-size: 12px;
  }

  .blog-layout {
    margin-top: 24px;
    gap: 18px;
  }

  .blog-prose {
    padding: 24px 20px;
    font-size: 16px;
    line-height: 1.78;
  }

  .blog-prose h2 {
    margin-top: 34px;
    font-size: 24px;
  }

  .blog-toc--mobile {
    margin: 14px 14px 0;
  }

  .blog-advice,
  .blog-related-card__body,
  .blog-hero__panel {
    padding: 18px;
  }

  .blog-archive-hero {
    padding: 20px 0 40px;
  }

  .blog-archive-hero::before {
    background:
      linear-gradient(120deg, rgba(7,38,23,.96), rgba(15,107,60,.86)),
      url('../img/product-placeholder.svg') right -120px bottom -40px / 360px auto no-repeat;
  }

  .blog-archive-hero h1 {
    font-size: 34px;
  }

  .blog-archive-hero p {
    font-size: 16px;
  }

  .blog-archive-layout {
    margin-top: -18px;
    gap: 18px;
  }

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

  .knowledge-card__body,
  .archive-side-card,
  .blog-archive-toolbar {
    padding: 18px;
  }

  .knowledge-card p {
    min-height: 0;
  }
}

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

  .side-menu {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
  }

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

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

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

  .filter-panel {
    position: static;
  }

  .footer .wrap {
    width: calc(100% - 48px);
    padding-left: 0;
    padding-right: 0;
  }

  .footer-grid-v2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav {
    height: auto;
    min-height: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    flex-wrap: wrap;
  }

  .search {
    order: 3;
    flex-basis: 100%;
  }

  .nav-actions {
    display: none;
  }

  .footer-grid-v2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .wrap {
    padding-left: 14px;
    padding-right: 14px;
  }

  .banner {
    padding: 24px;
    min-height: 500px;
  }

  .banner h1 {
    font-size: 34px;
  }

  .side-menu,
  .quote-card {
    display: none;
  }

  .strip,
  .category-grid,
  .product-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    display: none;
  }

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

  .footer .wrap {
    width: calc(100% - 28px);
    padding-left: 0;
    padding-right: 0;
  }

  .footer-grid-v2 {
    grid-template-columns: 1fr;
  }

  .footer-col-v2 a {
    white-space: normal;
  }
}

/* High-fidelity pass from the HTML preview screenshot. */
:root {
  --bg: #f7f8ef;
  --line: #dde8d7;
  --shadow: 0 20px 52px rgba(22, 45, 30, .10);
}

body {
  font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
}

.topbar {
  font-weight: 700;
}

.topbar .wrap,
.site-header .wrap,
.home-main.wrap {
  max-width: 1590px;
}

.wrap {
  width: 100%;
  padding-left: 22px;
  padding-right: 22px;
}

.nav {
  height: 94px;
  min-height: 94px;
  flex-wrap: nowrap;
}

.logo {
  font-size: 29px;
  letter-spacing: -0.6px;
}

.logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  font-size: 28px;
  box-shadow: 0 14px 26px rgba(15, 107, 60, .22);
}

.search {
  max-width: 840px;
  min-height: 64px;
  border-radius: 20px;
  border-color: #d9e6d2;
}

.search select,
.search input {
  font-size: 16px;
}

.search select {
  max-width: 205px;
}

.search button {
  padding: 0 31px;
  font-size: 18px;
}

.pill {
  padding: 17px 22px;
  font-size: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,.06);
}

.home-main.wrap {
  padding-top: 36px;
}

.hero-grid {
  grid-template-columns: 324px 1fr 386px;
  gap: 24px;
}

.side-menu {
  padding: 27px 22px;
  border-radius: 28px;
}

.side-title {
  font-size: 21px;
  margin-bottom: 23px;
}

.cat {
  gap: 15px;
  padding: 14px 12px;
  font-size: 18px;
  font-weight: 800;
}

.cat span {
  width: 43px;
  height: 43px;
  border-radius: 14px;
}

.banner {
  min-height: 735px;
  border-radius: 28px;
  padding: 48px;
  background: linear-gradient(125deg,#074b2b 0%,#0d6b3f 50%,#9a8e3a 126%);
}

.banner::before {
  right: -170px;
  top: -80px;
  width: 520px;
  height: 520px;
  background: rgba(126, 184, 84, .50);
}

.banner::after {
  right: 38px;
  bottom: -74px;
  width: min(52%, 560px);
  height: 330px;
  opacity: .86;
  border-radius: 8px;
}

.banner .label {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.28);
  padding: 11px 18px;
  font-size: 15px;
}

.banner h1 {
  max-width: 720px;
  font-size: 60px;
  letter-spacing: -1px;
  margin-top: 30px;
}

.banner p {
  max-width: 690px;
  font-size: 21px;
  font-weight: 700;
}

.banner .btn {
  min-width: 235px;
  min-height: 59px;
  font-size: 16px;
  border-radius: 18px;
}

.stats {
  margin-top: 38px;
  max-width: 660px;
}

.stat {
  padding: 18px;
  border-radius: 19px;
}

.stat b {
  font-size: 29px;
}

.stat small {
  font-size: 15px;
  font-weight: 700;
}

.quote-card {
  padding: 28px 26px;
  border-radius: 28px;
}

.quote-card .form-grid {
  gap: 10px;
}

.quote-card .quote-form__intro,
.quote-card label span {
  display: none;
}

.quote-card .quote-form h3 {
  font-size: 29px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.quote-card .input {
  min-height: 54px;
  border-radius: 17px;
  font-size: 16px;
}

.quote-card textarea,
.quote-card label:nth-child(1),
.quote-card label:nth-child(2) {
  display: none;
}

.quote-card .btn {
  min-height: 58px;
  margin-top: 18px;
  border-radius: 18px;
}

.supplier {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #f0f5ea;
  border-radius: 18px;
  padding: 14px;
  margin-top: 20px;
}

.avatar {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg,#d99f3e,#f4cf77);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.supplier b {
  font-size: 18px;
  line-height: 1.15;
}

.supplier small {
  font-size: 15px;
}

.strip {
  max-width: none;
  margin: 36px 0 56px;
  gap: 20px;
}

.strip-item {
  min-height: 102px;
  padding: 22px;
  border-radius: 24px;
}

.icon {
  width: 54px;
  height: 54px;
  font-size: 27px;
}

.strip-item b {
  font-size: 19px;
}

.strip-item small {
  font-size: 16px;
}

.section {
  max-width: none;
  margin-inline: 0;
}

.section-head h2 {
  font-size: 38px;
}

.section-head p {
  font-size: 21px;
}

.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab {
  padding: 12px 20px;
  font-size: 15px;
}

.category-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.category-card {
  border-radius: 24px;
  min-height: 186px;
  box-shadow: 0 14px 34px rgba(22,45,30,.06);
  border-color: #dfe8d9;
  color: #071812;
}

.category-card:not(.category-card--image)::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -24px;
  width: 90px;
  height: 90px;
  background: #eff7e9;
  border-radius: 50%;
}

.category-card .emoji {
  background: transparent;
  width: auto;
  height: auto;
  display: block;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 18px;
}

.category-card--image {
  padding: 0;
  grid-template-rows: 112px 1fr;
}

.category-card--image::after {
  display: none;
}

.category-card--image .category-card__image {
  min-height: 112px;
  transition: transform .28s ease;
}

.category-card--image:hover .category-card__image {
  transform: scale(1.04);
}

.category-card--image .category-card__body {
  padding: 18px 18px 20px;
  background: #fff;
}

.category-card h3 {
  font-size: 21px;
  line-height: 1.2;
  margin: 0 0 8px;
  font-weight: 900;
}

.category-card p {
  font-size: 16px;
  line-height: 1.45;
  max-height: 48px;
  overflow: hidden;
}

.market {
  grid-template-columns: 250px 1fr;
  gap: 24px;
}

.filter-panel {
  border-radius: 28px;
  padding: 24px;
}

.filter-panel h3 {
  font-size: 25px;
}

.filter-group b,
.filter-search span,
.filter-prices span {
  font-size: 19px;
  color: #04150f;
}

.product-grid {
  gap: 18px;
}

.deal {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  grid-template-columns: minmax(420px, 1.15fr) minmax(260px, .45fr) minmax(430px, .85fr);
  padding: 26px 34px;
  min-height: 0;
  gap: 28px;
}

.deal-copy h2 {
  font-size: 34px;
  line-height: 1.15;
  margin: 16px 0 12px;
}

.deal-copy p {
  max-width: 720px;
  margin: 0;
  font-size: 16px;
}

.count {
  display: flex;
  gap: 10px;
  margin-top: 0;
  justify-content: center;
  align-items: center;
}

.count div {
  background: rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 13px 16px;
  text-align: center;
  min-width: 76px;
}

.count b {
  font-size: 26px;
  display: block;
}

.deal-card {
  align-self: center;
}

.deal-card h3 {
  margin-top: 0;
}

.deal-card .price {
  flex-direction: row;
  align-items: center;
}

.process {
  gap: 18px;
}

.step {
  min-height: 190px;
  border-radius: 24px;
  padding: 23px;
}

.step h3 {
  font-size: 20px;
}

.step p {
  font-size: 15px;
}

.pre-footer {
  padding: 72px 0 36px;
}

.pre-footer-box {
  max-width: 1590px;
  width: calc(100% - 44px);
  border-radius: 10px;
  padding: 42px 52px;
  background: radial-gradient(circle at 15% 45%, rgba(34, 126, 84, .22), transparent 28%), linear-gradient(135deg,#012c1d,#003f29 55%,#022417);
}

@media (max-width: 760px) {
  .pre-footer-box {
    width: calc(100% - 28px);
  }
}

.pre-icon,
.pre-feature span,
.footer-logo-v2 span,
.footer-info-list span,
.footer-status span,
.socials a {
  color: #ffd86a;
  border-color: rgba(255,216,77,.35);
  background: rgba(255,216,77,.06);
}

.pre-main h2 {
  font-size: 29px;
}

.pre-phone {
  min-width: 220px;
  text-align: center;
  font-size: 22px;
}

.footer {
  background: radial-gradient(circle at 20% 18%,rgba(18,107,65,.34),transparent 32%),linear-gradient(180deg,#002d1e 0%,#001b11 100%);
}

.footer-logo-v2 span {
  width: 70px;
  height: 70px;
  border-radius: 22px;
}

.footer-logo-v2 b {
  font-size: 29px;
}

.footer-logo-v2 small {
  font-size: 28px;
  color: #ffd86a;
}

.footer-col-v2 a::before {
  content: "›";
  color: #ffd86a;
}

@media (max-width: 1500px) {
  .hero-grid {
    grid-template-columns: 300px 1fr 360px;
  }

  .banner h1 {
    font-size: 50px;
  }
}

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

  .banner {
    min-height: 540px;
  }

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

  .count {
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  .site-header .wrap,
  .home-main.wrap {
    max-width: 100%;
  }

  .nav {
    height: auto;
    min-height: 0;
  }

  .logo {
    font-size: 22px;
  }

  .logo-mark {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .search select {
    max-width: 130px;
    font-size: 13px;
    padding-left: 10px;
    padding-right: 8px;
  }

  .search button {
    padding: 0 16px;
  }

  .banner {
    min-height: 500px;
  }

  .banner h1 {
    font-size: 34px;
  }

  .banner p {
    font-size: 15px;
  }

  .strip {
    margin-top: 18px;
  }

  .section-head h2 {
    font-size: 30px;
  }

  .section-head p {
    font-size: 16px;
  }

  .category-grid,
  .market {
    grid-template-columns: 1fr;
  }
}

/* Footer reset to match the approved dark full-width layout. */
.pre-footer {
  background: #f7f8ef;
  padding: 74px 0 38px;
}

.pre-footer-box {
  width: min(1530px, calc(100% - 64px));
  max-width: 1530px;
  margin: 0 auto;
  border-radius: 10px;
  padding: 34px 44px;
  display: grid;
  grid-template-columns: 80px minmax(420px, 1fr) minmax(180px, 220px) minmax(190px, 240px) minmax(230px, 260px);
  align-items: center;
  gap: 28px;
  background: radial-gradient(circle at 12% 42%, rgba(32, 120, 80, .25), transparent 30%), linear-gradient(135deg, #002819 0%, #013d29 55%, #001f14 100%);
  color: #fff;
  box-shadow: 0 28px 72px rgba(0, 45, 30, .18);
  border: 1px solid rgba(255,255,255,.10);
}

.pre-icon {
  width: 66px;
  height: 66px;
  min-width: 66px;
  border-radius: 50%;
  background: rgba(255,216,77,.08);
  border: 1px solid rgba(255,216,77,.32);
  color: #ffd86a;
  font-size: 30px;
}

.pre-main {
  min-width: 0;
}

.pre-main h2 {
  font-size: 30px;
  line-height: 1.18;
  margin: 0 0 8px;
}

.pre-main p {
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  color: #ecf6ef;
}

.pre-feature {
  min-width: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,.14);
}

.pre-feature span {
  width: 52px;
  height: 52px;
  min-width: 52px;
  color: #ffd86a;
  border-color: rgba(255,216,77,.35);
  background: rgba(255,216,77,.07);
}

.pre-feature b {
  color: #fff;
  font-size: 17px;
}

.pre-feature small {
  color: #fff;
  font-size: 15px;
}

.pre-call {
  display: grid;
  gap: 8px;
  justify-items: center;
  border-left: 1px solid rgba(255,255,255,.14);
  padding-left: 32px;
}

.pre-phone {
  width: 100%;
  min-width: 0;
  padding: 17px 24px;
  border-radius: 10px;
  text-align: center;
  font-size: 22px;
  color: #05180f;
}

.pre-call small {
  color: #e3efe7;
}

.footer {
  margin-top: 0;
  padding: 46px 0 34px;
  background: radial-gradient(circle at 18% 16%, rgba(18,107,65,.34), transparent 34%), linear-gradient(180deg, #002c1d 0%, #001b11 100%);
  color: #dce9e1;
}

.footer .wrap {
  width: min(1530px, calc(100% - 64px));
  max-width: 1530px;
  padding-left: 0;
  padding-right: 0;
}

.footer-grid-v2 {
  display: grid;
  grid-template-columns: minmax(360px, 420px) minmax(190px, 240px) minmax(230px, 280px) minmax(230px, 280px) minmax(280px, 320px);
  gap: 42px;
  justify-content: space-between;
  align-items: start;
}

.footer-card-v2 {
  padding: 32px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
}

.footer-logo-v2 {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,250,241,.9));
  box-shadow: 0 16px 34px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.9);
}

.footer-logo-v2 img {
  width: min(238px, 100%);
  max-height: 70px;
  object-fit: contain;
  display: block;
  filter: none;
}

.footer-logo-v2 span {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  color: #ffd86a;
  border: 1px solid rgba(255,216,77,.28);
  background: rgba(255,216,77,.07);
  font-size: 32px;
}

.footer-logo-v2 b {
  font-size: 29px;
  color: #fff;
}

.footer-logo-v2 small {
  font-size: 27px;
  color: #ffd86a;
  letter-spacing: 1.5px;
}

.footer-card-v2 p {
  font-size: 15px;
  line-height: 1.75;
}

.footer-info-list {
  gap: 16px;
  padding-top: 22px;
}

.footer-info-list div,
.footer-status div {
  grid-template-columns: 48px 1fr;
  gap: 0 14px;
}

.footer-info-list span,
.footer-status span {
  width: 46px;
  height: 46px;
  color: #ffd86a;
  border-color: rgba(255,216,77,.30);
  background: rgba(255,216,77,.07);
}

.footer-info-list b,
.footer-status b {
  font-size: 15px;
}

.footer-col-v2 h4 {
  margin: 34px 0 34px;
  color: #fff;
  font-size: 17px;
  letter-spacing: .2px;
}

.footer-col-v2 h4::after {
  width: 38px;
  height: 2px;
  bottom: -12px;
  background: #ffd86a;
}

.footer-col-v2 a {
  margin-bottom: 18px;
  color: #edf7f0;
  font-size: 16px;
  white-space: nowrap;
}

.footer-col-v2 a::before {
  content: "›";
  color: #ffd86a;
  margin-right: 10px;
}

.footer-status {
  gap: 20px;
}

.socials {
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: nowrap;
}

.socials a {
  min-width: 58px;
  width: auto;
  height: 58px;
  padding: 0 14px;
  color: #fff;
  border-color: rgba(255,216,77,.30);
  background: rgba(255,216,77,.04);
  font-size: 14px;
  white-space: nowrap;
}

.newsletter {
  border-radius: 18px;
  padding: 22px;
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.09);
}

.newsletter b {
  color: #fff;
  text-transform: uppercase;
}

.newsletter div {
  min-height: 54px;
}

.newsletter button {
  min-width: 58px;
  color: #072015;
}

.footer-bottom-v2 {
  width: min(1530px, calc(100% - 64px));
  max-width: 1530px;
  margin: 46px auto 0;
  padding-top: 30px;
  grid-template-columns: repeat(4, minmax(210px, 1fr)) minmax(240px, .9fr);
  gap: 0;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.16);
}

.footer-bottom-v2 p {
  text-align: right;
  justify-self: end;
  max-width: 260px;
  line-height: 1.25;
  color: #d8e7df;
  margin: 0;
}

.footer-bottom-v2 p b {
  display: inline;
}

.footer-bottom-item {
  min-height: 58px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 16px;
  padding: 0 34px;
  border-right: 1px solid rgba(255,255,255,.14);
}

.footer-bottom-item:first-child {
  padding-left: 0;
}

.footer-bottom-item span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #ffd86a;
  font-size: 26px;
}

.footer-bottom-item b {
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}

.footer-bottom-item small {
  color: #c6d8cf;
  font-size: 15px;
  margin-top: 3px;
}

@media (max-width: 1500px) {
  .pre-footer-box {
    grid-template-columns: 70px 1fr 220px 230px;
  }

  .pre-call {
    grid-column: 1 / -1;
    grid-template-columns: 260px 1fr;
    justify-items: start;
    align-items: center;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.14);
    padding-left: 0;
    padding-top: 22px;
  }

  .footer-grid-v2 {
    grid-template-columns: minmax(360px, 420px) repeat(2, minmax(220px, 1fr));
  }

  .connect-box {
    grid-column: 3;
  }
}

@media (max-width: 1024px) {
  .pre-footer-box,
  .footer .wrap,
  .footer-bottom-v2 {
    width: calc(100% - 48px);
  }

  .pre-footer-box {
    grid-template-columns: 64px 1fr;
  }

  .pre-feature,
  .pre-call {
    grid-column: 1 / -1;
    border-left: 0;
    padding-left: 0;
  }

  .footer-grid-v2 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-card-v2,
  .connect-box {
    grid-column: 1 / -1;
  }

  .footer-bottom-v2 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom-v2 p {
    grid-column: 1 / -1;
    text-align: left;
    justify-self: start;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .pre-footer {
    padding: 34px 0 24px;
  }

  .pre-footer-box,
  .footer .wrap,
  .footer-bottom-v2 {
    width: calc(100% - 28px);
  }

  .pre-footer-box {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 18px;
  }

  .pre-call {
    grid-template-columns: 1fr;
  }

  .footer-grid-v2,
  .footer-bottom-v2 {
    grid-template-columns: 1fr;
  }

  .footer-card-v2 {
    padding: 22px;
  }

  .footer-col-v2 h4 {
    margin-top: 4px;
  }

  .footer-col-v2 a {
    white-space: normal;
  }

  .footer-bottom-v2 > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
    padding: 14px 0;
  }

  .socials {
    flex-wrap: wrap;
  }
}

/* Single product upgraded layout */
.single-product-v2 {
  padding: 28px 0 0;
}

.single-hero-v2 {
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.single-media-card,
.single-buy-card,
.single-sidebar-v2,
.single-usp-strip,
.single-panel {
  background: #fff;
  border: 1px solid rgba(15,107,60,.12);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(14,50,31,.08);
}

.single-media-card,
.single-buy-card {
  padding: 22px;
}

.single-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, #edf5e9, #dfe9d5);
  cursor: zoom-in;
}

.single-image-frame::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% 42%;
  height: 44%;
  border-radius: 999px;
  background: rgba(15,107,60,.12);
  transform: rotate(-8deg);
}

.single-image-frame .product-gallery__main {
  display: block;
  border-radius: 22px;
  aspect-ratio: 4 / 3;
  position: relative;
  z-index: 1;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform .22s ease, filter .22s ease;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .single-image-frame:hover .product-gallery__main {
    transform: scale(1.85);
    filter: saturate(1.04) contrast(1.03);
  }
}

.single-image-frame:hover .single-image-badge {
  opacity: 0;
  transform: translateY(-4px);
}

.single-image-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(3,51,31,.9);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  transition: opacity .18s ease, transform .18s ease;
}

.product-gallery__thumbs img.is-active {
  border-color: var(--green);
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(2, 22, 13, .86);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.product-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.product-lightbox img {
  max-width: min(1180px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 26px 80px rgba(0,0,0,.38);
}

.product-lightbox__close {
  position: fixed;
  top: 20px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.product-lightbox__hint {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;
}

.has-lightbox body {
  overflow: hidden;
}

/* Support pages */
.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: stretch;
  padding: 34px;
  margin-bottom: 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #073d26, #0d6f3e);
  color: #fff;
  box-shadow: 0 22px 56px rgba(14,50,31,.13);
  overflow: hidden;
  position: relative;
}

.support-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -170px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}

.support-hero > * {
  position: relative;
  z-index: 1;
}

.support-hero h1 {
  margin: 12px 0 14px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
}

.support-hero p {
  max-width: 780px;
  margin: 0;
  color: #dcefe3;
  font-size: 17px;
  line-height: 1.78;
}

.support-actions {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(220px, 270px);
  gap: 12px;
  margin-top: 24px;
}

.support-actions .btn {
  min-height: 60px;
  justify-content: center;
}

.support-hero-card {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
}

.support-hero-card b {
  color: #ffd65a;
  font-size: 24px;
}

.support-hero-card span {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-weight: 900;
}

.support-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.support-info-card {
  min-height: 250px;
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(15,107,60,.12);
  box-shadow: 0 18px 45px rgba(14,50,31,.08);
}

.support-info-card > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #0d6f3e;
  color: #fff;
  font-weight: 900;
}

.support-info-card h2 {
  margin: 16px 0 10px;
  font-size: 24px;
  line-height: 1.22;
}

.support-info-card p {
  margin: 0;
  color: #627167;
  line-height: 1.72;
}

.support-process {
  margin-bottom: 22px;
}

.support-process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.support-link-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
  margin-bottom: 10px;
  border-radius: 24px;
  background: #073d26;
}

.support-link-band a {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.14);
}

.support-link-band a:hover {
  background: #ffd65a;
  color: #062f1c;
}

.footer-status a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 14px;
  align-items: center;
  margin: 0;
  white-space: normal;
}

.footer-status a::before {
  display: none;
}

.hero-side-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.hero-side-links a {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f4f8ef;
  border: 1px solid rgba(15,107,60,.1);
  color: #10241a;
}

.hero-side-links b {
  color: #0b4b2d;
  font-size: 14px;
}

.hero-side-links span {
  color: #627167;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

@media (min-width: 1201px) {
  .home-main .hero-grid {
    grid-template-columns: 300px minmax(0, 1fr) 360px;
    align-items: stretch;
  }

  .home-main .side-menu,
  .home-main .quote-card {
    align-self: stretch;
  }
}

@media (max-width: 1200px) {
  .support-hero,
  .support-content-grid,
  .support-process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .support-hero,
  .support-content-grid,
  .support-process-grid,
  .support-actions {
    grid-template-columns: 1fr;
  }

  .support-hero {
    padding: 22px;
    border-radius: 22px;
  }

  .support-info-card {
    min-height: 0;
  }
}

/* Quote and contact pages */
.quote-page-v2,
.contact-page-v2 {
  padding-bottom: 34px;
}

.quote-page-hero,
.contact-hero-v2,
.quote-help-band {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, #073d26, #0d6f3e);
  color: #fff;
  box-shadow: 0 22px 56px rgba(14,50,31,.13);
}

.quote-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 24px;
  align-items: start;
  padding: 28px 34px;
}

.quote-page-hero::after,
.contact-hero-v2::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -150px;
  top: -180px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}

.quote-hero-copy,
.quote-page-card,
.contact-hero-v2 > *,
.quote-help-band > * {
  position: relative;
  z-index: 1;
}

.quote-hero-copy h1,
.contact-hero-v2 h1 {
  max-width: 760px;
  margin: 12px 0 14px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
}

.quote-hero-copy p,
.contact-hero-v2 p {
  max-width: 720px;
  margin: 0;
  color: #dcefe3;
  font-size: 17px;
  line-height: 1.82;
}

.quote-hero-actions {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
  gap: 14px;
  margin-top: 28px;
  max-width: 640px;
}

.quote-hero-actions .btn {
  width: 100%;
  min-height: 72px;
  border-radius: 18px;
  justify-content: center;
  font-size: 17px;
}

.quote-hero-actions .btn-call span {
  margin-right: 10px;
}

.quote-proof-grid,
.quote-guide-grid,
.contact-service-strip {
  display: grid;
  gap: 14px;
}

.quote-proof-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.quote-proof-grid div,
.contact-service-strip div {
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
}

.quote-proof-grid b,
.contact-service-strip b {
  display: block;
  color: #ffd65a;
  font-size: 22px;
  line-height: 1.1;
}

.quote-proof-grid span,
.contact-service-strip span {
  display: block;
  margin-top: 7px;
  color: #dcefe3;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.45;
}

.quote-left-panel {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 12px;
  margin-top: 18px;
}

.quote-left-panel > div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
}

.quote-left-panel span,
.contact-area-card span,
.contact-process-card span,
.contact-call-band span {
  display: block;
  color: #ffd65a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.quote-left-panel ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 19px;
  color: #eef8f1;
  font-weight: 700;
  line-height: 1.45;
}

.quote-left-panel p {
  margin: 0;
  color: #dcefe3;
  line-height: 1.5;
  font-weight: 700;
}

.quote-mini-hotline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 15px 18px;
  border-radius: 20px;
  background: rgba(255,214,90,.14);
  border: 1px solid rgba(255,214,90,.28);
}

.quote-mini-hotline span {
  color: #fff;
  font-weight: 900;
}

.quote-mini-hotline a {
  color: #ffd65a;
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.quote-page-card,
.contact-form-panel,
.contact-info-panel,
.quote-guide-card {
  background: #fff;
  border: 1px solid rgba(15,107,60,.12);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(14,50,31,.08);
}

.quote-page-card,
.contact-form-panel {
  padding: 24px;
  color: var(--ink);
  align-self: start;
}

.quote-card-head {
  display: grid;
  gap: 5px;
  margin-bottom: 16px;
}

.quote-card-head span {
  color: #0d6f3e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-card-head strong {
  color: #10241a;
  font-size: 24px;
  line-height: 1.2;
}

.quote-page-card .quote-form__intro,
.contact-form-panel .quote-form__intro {
  display: block;
  color: #627167;
  font-size: 13px;
}

.quote-page-card label span,
.contact-form-panel label span {
  display: block;
}

.quote-page-card textarea,
.contact-form-panel textarea {
  display: block;
}

.quote-page-card .input,
.contact-form-panel .input {
  min-height: 52px;
  border-radius: 16px;
  background: #fbfcf8;
}

.quote-page-card .btn,
.contact-form-panel .btn {
  min-height: 56px;
  border-radius: 17px;
}

.quote-guide-grid {
  grid-template-columns: repeat(3, 1fr);
  margin: 22px 0;
}

.quote-guide-card {
  padding: 24px;
}

.quote-guide-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #0d6f3e;
  color: #fff;
  font-weight: 900;
}

.quote-guide-card h2 {
  margin: 16px 0 8px;
  font-size: 22px;
}

.quote-guide-card p {
  margin: 0;
  color: #627167;
  line-height: 1.65;
}

.quote-help-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 34px;
  background: linear-gradient(110deg, #052b1c, #064527 62%, #0d6f3e);
}

.quote-help-band span {
  color: #ffd65a;
  font-weight: 900;
}

.quote-help-band h2 {
  margin: 6px 0 0;
  max-width: 780px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.15;
}

.quote-help-band .btn {
  min-width: 230px;
}

.contact-hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: center;
  padding: 34px;
  margin-bottom: 22px;
}

.contact-hotline-card {
  display: grid;
  gap: 6px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffd65a, #ffbc42);
  color: #062f1c;
  box-shadow: 0 18px 36px rgba(255,188,66,.22);
}

.contact-hotline-card span,
.contact-hotline-card small {
  font-weight: 900;
}

.contact-hotline-card strong {
  font-size: 34px;
  line-height: 1.1;
}

.contact-layout-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 22px;
  align-items: start;
}

.contact-info-panel {
  padding: 28px;
}

.contact-info-head span {
  color: #0d6f3e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-info-head h2 {
  margin: 8px 0;
  font-size: 34px;
}

.contact-info-head p {
  max-width: 720px;
  color: #627167;
  line-height: 1.7;
}

.contact-list-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.contact-list-v2 a,
.contact-list-v2 div {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  min-height: 96px;
  padding: 16px;
  border-radius: 20px;
  background: #f4f8ef;
  border: 1px solid rgba(15,107,60,.09);
  color: #10241a;
}

.contact-list-v2 i {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #0d6f3e;
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.contact-list-v2 span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.contact-list-v2 b {
  color: #0b4b2d;
}

.contact-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.contact-area-card,
.contact-process-card {
  min-height: 230px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, #073d26, #0d6f3e);
  color: #fff;
}

.contact-area-card h3 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.25;
}

.contact-area-card p {
  margin: 0;
  color: #dcefe3;
  line-height: 1.65;
  font-weight: 700;
}

.contact-process-card {
  background: #fff8df;
  color: #10241a;
  border: 1px solid #f2d982;
}

.contact-process-card span {
  color: #0d6f3e;
}

.contact-process-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: #405146;
  font-weight: 800;
  line-height: 1.5;
}

.contact-call-band {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  border-radius: 24px;
  background: #073d26;
  color: #fff;
}

.contact-call-band strong {
  display: block;
  font-size: 25px;
  line-height: 1.25;
}

.contact-call-band .btn {
  width: 100%;
}

.contact-service-strip {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
  padding: 16px;
  border-radius: 26px;
  background: #073d26;
}

@media (max-width: 1200px) {
  .quote-page-hero,
  .contact-hero-v2,
  .contact-layout-v2 {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .quote-page-hero,
  .contact-hero-v2,
  .quote-help-band {
    padding: 22px;
    border-radius: 22px;
  }

  .quote-hero-actions,
  .quote-proof-grid,
  .quote-left-panel,
  .quote-guide-grid,
  .contact-list-v2,
  .contact-extra-grid,
  .contact-call-band,
  .contact-service-strip {
    grid-template-columns: 1fr;
  }

  .quote-hero-actions {
    max-width: none;
  }

  .quote-mini-hotline {
    display: grid;
  }

  .quote-help-band {
    display: grid;
  }

  .quote-help-band .btn {
    min-width: 0;
    width: 100%;
  }

  .contact-hotline-card strong {
    font-size: 28px;
  }
}

.single-mini-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.single-mini-specs span,
.single-key-grid div,
.single-usp-strip div {
  background: #f4f8ef;
  border: 1px solid rgba(15,107,60,.09);
  border-radius: 18px;
  padding: 14px;
}

.single-mini-specs b,
.single-key-grid span,
.single-usp-strip span {
  display: block;
  color: #6b786d;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 5px;
}

.single-media-support {
  margin-top: 16px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #073d26, #0d6f3e);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.single-media-support::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -84px;
  bottom: -116px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}

.support-head,
.support-grid,
.single-media-support p {
  position: relative;
  z-index: 1;
}

.support-head {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.support-head span {
  color: #ffd65a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.support-head strong {
  font-size: 21px;
  line-height: 1.25;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.support-grid div {
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
}

.support-grid b {
  display: block;
  color: #ffd65a;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 7px;
}

.support-grid span {
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.35;
}

.single-media-support p {
  margin: 13px 0 0;
  color: #dcefe3;
  font-size: 14px;
  line-height: 1.55;
}

.single-label-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.single-label,
.single-status {
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
}

.single-label {
  background: #0d6f3e;
  color: #fff;
}

.single-status {
  background: #fff4d2;
  color: #8b5600;
}

.single-buy-card h1 {
  max-width: 900px;
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.single-lead {
  margin: 0 0 18px;
  color: #627167;
  font-size: 17px;
  line-height: 1.65;
}

.single-price-box {
  display: grid;
  gap: 3px;
  margin: 18px 0;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff8df, #fff2c6);
  border: 1px solid #f2d982;
}

.single-price-box span,
.single-price-box small {
  color: #766a45;
  font-weight: 800;
}

.single-price-box strong {
  color: #e46c0a;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
}

.single-key-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.single-key-grid b {
  display: block;
  color: #10241a;
  font-size: 15px;
  line-height: 1.4;
}

.single-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.single-actions .btn {
  min-height: 56px;
  width: 100%;
  justify-content: center;
}

.btn-call {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #064527, #0d7a45);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 30px rgba(13,111,62,.2);
}

.btn-call::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.18) 42%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.btn-call span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  border-radius: 50%;
  background: #ffd75a;
  color: #062f1c;
  font-size: 17px;
  line-height: 1;
}

.btn-call:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(13,111,62,.28);
}

.btn-call:hover::after {
  transform: translateX(120%);
}

.single-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
  color: #405146;
  font-weight: 800;
  font-size: 13px;
}

.single-trust-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  text-align: center;
  white-space: nowrap;
}

.single-usp-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 22px 0;
  padding: 14px;
}

.single-usp-strip b {
  display: block;
  color: #0d6f3e;
  font-size: 22px;
  line-height: 1.1;
}

.single-layout-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: start;
}

.single-main-v2 {
  display: grid;
  gap: 18px;
}

.single-panel {
  padding: 26px;
}

.single-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.single-section-title span {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #0d6f3e;
  color: #fff;
  font-weight: 900;
}

.single-section-title h2 {
  margin: 0;
  font-size: 26px;
}

.single-panel p {
  color: #53645a;
  font-size: 16px;
  line-height: 1.75;
}

.single-panel .spec-table th,
.single-panel .spec-table td {
  padding: 15px 0;
}

.single-panel .spec-table th {
  color: #0b4b2d;
  font-size: 15px;
}

.delivery-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.delivery-notes span {
  border-radius: 999px;
  padding: 9px 12px;
  background: #eef7e8;
  color: #31513b;
  font-weight: 800;
  font-size: 13px;
}

.single-sidebar-v2 {
  position: sticky;
  top: 104px;
  padding: 20px;
}

.quote-helper {
  display: grid;
  gap: 5px;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 20px;
  background: #073d26;
  color: #fff;
}

.quote-helper strong {
  font-size: 18px;
}

.quote-helper span {
  color: #dcefe3;
  font-size: 13px;
  line-height: 1.5;
}

.single-sidebar-v2 .quote-form h3 {
  font-size: 25px;
  line-height: 1.2;
}

.single-sidebar-v2 .quote-form__intro {
  font-size: 13px;
}

.single-sidebar-v2 .input {
  min-height: 50px;
  border-radius: 15px;
  background: #fbfcf8;
}

@media (max-width: 1200px) {
  .single-hero-v2,
  .single-layout-v2 {
    grid-template-columns: 1fr;
  }

  .single-sidebar-v2 {
    position: static;
  }
}

@media (max-width: 760px) {
  .single-product-v2 {
    padding-top: 18px;
  }

  .single-hero-v2 {
    gap: 14px;
  }

  .single-media-card,
  .single-buy-card,
  .single-panel,
  .single-sidebar-v2 {
    padding: 16px;
    border-radius: 20px;
  }

  .single-mini-specs,
  .single-key-grid,
  .single-actions,
  .single-usp-strip,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .single-trust-row {
    grid-template-columns: 1fr;
  }

  .single-trust-row span {
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
  }

  .single-buy-card h1 {
    font-size: 31px;
  }

  .single-section-title h2 {
    font-size: 22px;
  }

  .single-panel .spec-table th,
  .single-panel .spec-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
}

/* Absolute last mobile menu override. */
@media (max-width: 760px) {
  body:has(.mobile-menu.is-open) {
    overflow: hidden;
  }

  .site-header {
    z-index: 200;
  }

  .mobile-menu,
  .mobile-menu.is-open {
    position: fixed !important;
    inset: 0 !important;
    z-index: 180 !important;
    display: block !important;
    width: 100vw !important;
    height: 100vh !important;
    max-height: none !important;
    padding: 0 !important;
    border: 0 !important;
    background: rgba(6, 22, 14, .48) !important;
    overflow: hidden !important;
    transform: none !important;
    transition: opacity .2s ease !important;
  }

  .mobile-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .mobile-menu.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .mobile-menu ul {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: min(72vw, 320px) !important;
    height: 100vh !important;
    display: block !important;
    margin: 0 !important;
    padding: 112px 22px 28px !important;
    list-style: none !important;
    border: 0 !important;
    border-left: 1px solid rgba(15,107,60,.1) !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: -24px 0 52px rgba(5,28,17,.22) !important;
    transform: translateX(100%) !important;
    transition: transform .24s ease !important;
  }

  .mobile-menu.is-open ul {
    transform: translateX(0) !important;
  }

  .mobile-menu li {
    margin: 0 !important;
  }

  .mobile-menu a {
    display: flex !important;
    align-items: center !important;
    min-height: 56px !important;
    padding: 0 4px !important;
    border-bottom: 1px solid #eadfd3 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #2b261f !important;
    font-size: 17px !important;
    font-weight: 900 !important;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus {
    color: #0f6b3c !important;
  }
}

@media (max-width: 420px) {
  .mobile-menu ul {
    width: min(74vw, 292px) !important;
    padding-top: 106px !important;
  }
}

/* Final mobile search layout: prevent clipped submit button. */
@media (max-width: 760px) {
  .site-header .search {
    display: grid !important;
    grid-template-columns: 138px minmax(0, 1fr) !important;
    grid-template-rows: 52px 50px !important;
    height: auto !important;
    overflow: hidden !important;
    border-radius: 10px !important;
  }

  .site-header .search select {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    height: 52px !important;
    border-right: 1px solid #e1eadb !important;
    border-bottom: 1px solid #e1eadb !important;
  }

  .site-header .search input {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    height: 52px !important;
    border-bottom: 1px solid #e1eadb !important;
  }

  .site-header .search button {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 50px !important;
    border-radius: 0 !important;
    font-size: 16px !important;
  }
}

/* Final mobile search visual refinement. */
@media (max-width: 760px) {
  .site-header .search {
    height: 54px !important;
    grid-template-columns: minmax(0, 1fr) 52px !important;
    border: 1px solid rgba(15,107,60,.14) !important;
    border-radius: 999px !important;
    background:
      linear-gradient(180deg, #ffffff 0%, #fbfdf8 100%) !important;
    box-shadow:
      0 14px 30px rgba(22,45,30,.10),
      inset 0 1px 0 rgba(255,255,255,.9) !important;
  }

  .site-header .search::before {
    left: 18px !important;
    width: 18px !important;
    height: 18px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230f6b3c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.6-3.6'/%3E%3C/svg%3E") center / contain no-repeat !important;
    transform: translateY(-50%) !important;
    opacity: .9 !important;
  }

  .site-header .search::after {
    display: none !important;
  }

  .site-header .search input {
    height: 52px !important;
    padding-left: 50px !important;
    padding-right: 10px !important;
    color: #26342d !important;
    font-size: 14px !important;
    font-weight: 700 !important;
  }

  .site-header .search input::placeholder {
    color: #738178;
    opacity: 1;
  }

  .site-header .search button {
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    margin: 5px 5px 5px 3px !important;
    background:
      linear-gradient(135deg, #ff982f 0%, #ff7f12 100%) !important;
    box-shadow: 0 10px 20px rgba(255,138,31,.28) !important;
    transition: transform .18s ease, box-shadow .18s ease !important;
  }

  .site-header .search button::before {
    content: "" !important;
    display: block;
    width: 18px;
    height: 18px;
    margin: auto;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .site-header .search button:hover,
  .site-header .search button:focus {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(255,138,31,.34) !important;
  }
}

/* Pile calculator section. */
.pile-calculator {
  margin: 34px 0 44px;
  padding: 30px;
  border: 1px solid rgba(15,107,60,.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,216,77,.18), transparent 28%),
    linear-gradient(135deg, #ffffff, #f5f8ef);
  box-shadow: 0 20px 52px rgba(22,45,30,.08);
}

.pile-calculator__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 940px;
  margin-bottom: 22px;
}

.pile-calculator__intro h2 {
  margin: 0;
  color: #082d1b;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
}

.pile-calculator__intro p {
  max-width: 860px;
  margin: 12px 0 0;
  color: #52665a;
  font-size: 17px;
  line-height: 1.65;
}

.pile-calculator__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
  gap: 20px;
  align-items: stretch;
}

.pile-calc-form,
.pile-calc-result {
  border: 1px solid #dfe9d8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(22,45,30,.06);
}

.pile-calc-form {
  padding: 22px;
}

.pile-calc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pile-calc-grid label span {
  display: block;
  margin-bottom: 7px;
  color: #304035;
  font-size: 13px;
  font-weight: 900;
}

.pile-calc-form .input {
  height: 48px;
  border-radius: 8px;
  background: #fbfcf8;
}

.pile-calc-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  border-radius: 8px;
}

.pile-calc-guidance {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, 1.1fr);
  gap: 16px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #e5e0ca;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,216,77,.18), rgba(255,255,255,.86)),
    #fffdf4;
}

.pile-calc-guidance span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #0f6b3c;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pile-calc-guidance b {
  display: block;
  color: #10251a;
  font-size: 20px;
  line-height: 1.25;
}

.pile-calc-guidance p {
  margin: 8px 0 0;
  color: #52665a;
  line-height: 1.55;
}

.pile-calc-guidance ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pile-calc-guidance li {
  position: relative;
  padding-left: 24px;
  color: #304035;
  font-weight: 800;
  line-height: 1.45;
}

.pile-calc-guidance li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff8a1f;
  box-shadow: 0 0 0 4px rgba(255,138,31,.14);
}

.pile-calc-result {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  background:
    linear-gradient(155deg, #073b24, #0f6b3c 62%, #1b7f4b);
  color: #fff;
}

.pile-calc-result__empty {
  display: grid;
  place-content: center;
  min-height: 100%;
  gap: 8px;
  color: rgba(255,255,255,.78);
  text-align: center;
}

.pile-calc-result__empty b {
  color: #fff;
  font-size: 22px;
}

.pile-calc-result__head span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #ffd84d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pile-calc-result__head b {
  display: block;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.pile-calc-result__cards {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.pile-calc-result__cards div {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.pile-calc-result__cards small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255,255,255,.7);
  font-weight: 800;
}

.pile-calc-result__cards b {
  display: block;
  color: #fff;
  line-height: 1.45;
}

.pile-calc-result__cta {
  width: 100%;
  margin-top: auto;
  border-radius: 8px;
}

@media (max-width: 1100px) {
  .pile-calculator__panel {
    grid-template-columns: 1fr;
  }

  .pile-calc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .pile-calculator {
    padding: 20px;
  }

  .pile-calc-grid {
    grid-template-columns: 1fr;
  }

  .pile-calc-form,
  .pile-calc-result {
    padding: 18px;
  }

  .pile-calc-guidance {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .site-header .search {
    grid-template-columns: 126px minmax(0, 1fr) !important;
  }

  .site-header .search select {
    font-size: 12px !important;
  }
}

/* Final mobile search redesign: compact pill search. */
@media (max-width: 760px) {
  .site-header .search {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 48px !important;
    grid-template-rows: 50px !important;
    height: 50px !important;
    border: 1px solid #d7e5d0 !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(22,45,30,.08) !important;
  }

  .site-header .search::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 50%;
    width: 15px;
    height: 15px;
    border: 2px solid #0f6b3c;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: .82;
    pointer-events: none;
  }

  .site-header .search::after {
    content: "";
    position: absolute;
    left: 30px;
    top: 31px;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: #0f6b3c;
    transform: rotate(45deg);
    opacity: .82;
    pointer-events: none;
  }

  .site-header .search select {
    display: none !important;
  }

  .site-header .search input {
    grid-column: 1 !important;
    grid-row: 1 !important;
    height: 48px !important;
    padding: 0 8px 0 44px !important;
    border: 0 !important;
    background: transparent !important;
    color: #26342d !important;
    font-size: 14px !important;
  }

  .site-header .search button {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    margin: 4px 4px 4px 2px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: #ff8a1f !important;
    color: transparent !important;
    font-size: 0 !important;
  }

  .site-header .search button::before {
    content: "→";
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
  }
}

/* Final override: professional homepage knowledge/news layout. */
.home-news-section {
  margin-top: 38px;
  padding: 34px;
  border: 1px solid rgba(15,107,60,.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,216,77,.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f7ed 100%);
  box-shadow: 0 20px 52px rgba(22,45,30,.08);
}

.home-news-section .section-head {
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e3ebdf;
}

.home-news-section .section-head h2 {
  max-width: 780px;
  color: #082d1b;
  font-size: clamp(28px, 2.7vw, 40px);
}

.home-news-section .section-head p {
  max-width: 820px;
  color: #52665a;
  font-size: 17px;
}

.home-news-section .tab.active {
  background: #fff;
  color: #0f6b3c;
  border: 1px solid rgba(15,107,60,.18);
  box-shadow: 0 10px 24px rgba(22,45,30,.06);
}

.home-news-section .section-kicker {
  margin-bottom: 12px;
  background: #0f6b3c;
  color: #fff;
  letter-spacing: .04em;
}

.home-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  grid-auto-rows: minmax(148px, auto);
  gap: 16px;
}

.home-news-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e0ead9;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-news-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15,107,60,.32);
  box-shadow: 0 18px 38px rgba(22,45,30,.10);
}

.home-news-card:first-child {
  grid-row: span 3;
  display: grid;
  grid-template-rows: minmax(300px, 1fr) auto;
}

.home-news-card:not(:first-child) {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: stretch;
}

.home-news-card__media {
  position: relative;
  display: block;
  min-height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10,79,44,.92), rgba(15,107,60,.64), rgba(255,138,31,.42)),
    url('../img/product-placeholder.svg') right -18px center / 210px auto no-repeat;
}

.home-news-card:first-child .home-news-card__media {
  aspect-ratio: auto;
}

.home-news-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-news-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(4,32,18,.42));
  pointer-events: none;
}

.home-news-card__media span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  max-width: calc(100% - 28px);
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #0a4f2c;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.home-news-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px 20px;
}

.home-news-card:first-child .home-news-card__body {
  padding: 22px 24px 24px;
}

.home-news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: #6b7f72;
  font-size: 12px;
  font-weight: 900;
}

.home-news-card__meta span + span {
  color: #e46c0a;
}

.home-news-card h3 {
  margin: 0;
  color: #092c1b;
  font-size: 20px;
  line-height: 1.35;
}

.home-news-card:first-child h3 {
  font-size: clamp(26px, 2vw, 32px);
  line-height: 1.22;
}

.home-news-card h3 a {
  color: inherit;
}

.home-news-card p {
  margin: 10px 0 0;
  color: #5c6f64;
  line-height: 1.62;
}

.home-news-card:not(:first-child) p {
  display: none;
}

.home-news-card__link {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  color: #0f6b3c;
  font-weight: 900;
}

.home-news-card__link::after {
  content: "→";
  margin-left: 8px;
}

@media (max-width: 1100px) {
  .home-news-grid {
    grid-template-columns: 1fr;
  }

  .home-news-card:first-child {
    grid-row: auto;
  }

  .home-news-card:not(:first-child) {
    grid-template-columns: 190px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .home-news-section {
    padding: 20px;
  }

  .home-news-section .section-head {
    display: block;
  }

  .home-news-section .tab.active {
    display: inline-flex;
    margin-top: 14px;
  }

  .home-news-card:first-child,
  .home-news-card:not(:first-child) {
    display: block;
  }

  .home-news-card__media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .home-news-card:not(:first-child) p {
    display: block;
  }

  .home-news-card:first-child h3,
  .home-news-card h3 {
    font-size: 21px;
  }
}
.footer .footer-logo-v2 img {
  width: min(250px, 100%);
  max-height: 86px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.22));
}
.site-header.header {
  background: rgba(248, 250, 242, .9);
  border-bottom: 1px solid rgba(15, 107, 60, .08);
  box-shadow: 0 10px 32px rgba(17, 42, 25, .06);
  backdrop-filter: blur(20px) saturate(1.08);
}

.site-header .nav {
  height: 82px;
  min-height: 82px;
  gap: clamp(18px, 2vw, 28px);
}

.site-header .logo {
  padding: 4px 0;
}

.site-header .logo .logo__image--generated {
  width: clamp(196px, 15vw, 250px);
  max-height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(18, 45, 27, .08));
}

.site-header .search {
  max-width: 900px;
  min-height: 58px;
  border: 1px solid rgba(15, 107, 60, .14);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 30px rgba(22, 45, 30, .07);
  overflow: hidden;
}

.site-header .search:focus-within {
  border-color: rgba(15, 107, 60, .32);
  box-shadow: 0 16px 38px rgba(22, 45, 30, .10), 0 0 0 4px rgba(15, 107, 60, .07);
}

.site-header .search select,
.site-header .search input {
  min-height: 58px;
  background: transparent;
  color: #1e3428;
  font-size: 15px;
}

.site-header .search select {
  max-width: 210px;
  padding-left: 22px;
  border-right: 1px solid rgba(15, 107, 60, .12);
  color: #0c5a34;
}

.site-header .search input::placeholder {
  color: rgba(45, 55, 48, .58);
}

.site-header .search button {
  min-width: 118px;
  padding: 0 30px;
  border-radius: 0 17px 17px 0;
  background: linear-gradient(135deg, #ff922b, #ff7b16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22);
  font-size: 16px;
  transition: transform .18s ease, filter .18s ease;
}

.site-header .search button:hover,
.site-header .search button:focus {
  filter: brightness(1.03);
}

.site-header .nav-actions .pill.primary {
  min-width: 150px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f7a45, #064527);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 34px rgba(6, 69, 39, .18);
  font-size: 15px;
}
.blog-sidebar .blog-toc,
.blog-toc--mobile {
  padding: 22px;
  border: 1px solid rgba(15, 107, 60, .10);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,252,246,.96));
  box-shadow: 0 18px 42px rgba(22, 45, 30, .08);
}

.blog-toc b {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(15, 107, 60, .10);
  color: #064b2b;
  font-size: 18px;
  line-height: 1.2;
}

.blog-toc b::before {
  content: "";
  width: 8px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd84d, #ff8a1f);
  box-shadow: 0 6px 14px rgba(255, 138, 31, .22);
}

.blog-toc a {
  position: relative;
  display: block;
  margin: 0;
  padding: 12px 12px 12px 20px;
  border-top: 0;
  border-radius: 10px;
  color: #44574b;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.blog-toc a + a {
  margin-top: 4px;
}

.blog-toc a::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 1.05em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(15, 107, 60, .34);
  transition: background .18s ease, box-shadow .18s ease;
}

.blog-toc a:hover,
.blog-toc a:focus {
  background: #eef7e9;
  color: #0f6b3c;
  transform: translateX(2px);
}

.blog-toc a:hover::before,
.blog-toc a:focus::before {
  background: #ff8a1f;
  box-shadow: 0 0 0 4px rgba(255, 138, 31, .13);
}

.home-news-section .home-news-card:not(:first-child) .home-news-card__body {
  position: static;
  padding: 20px 24px;
}

.home-news-section .home-news-card:not(:first-child) .home-news-card__body::before {
  content: none !important;
  display: none !important;
}

.home-news-section .home-news-card:first-child {
  background: #fff;
  color: #092c1b;
}

.home-news-section .home-news-card:first-child .home-news-card__body {
  background:
    linear-gradient(135deg, rgba(5, 55, 32, .98), rgba(15, 107, 60, .94));
  color: #fff;
}

.home-news-section .home-news-card__media {
  background:
    linear-gradient(135deg, rgba(10,79,44,.92), rgba(15,107,60,.64), rgba(255,138,31,.34));
}

.home-news-section .home-news-card:not(:first-child) {
  min-height: 210px;
}

.home-news-section .home-news-card:not(:first-child) .home-news-card__body {
  min-height: 100%;
}

.home-news-section .home-news-card:not(:first-child) h3 {
  margin-bottom: 9px;
}

.home-news-section .home-news-card:not(:first-child) p {
  display: block;
  margin: 0 0 18px;
  color: #5e7165;
  font-size: 14px;
  line-height: 1.58;
}

.home-news-section .home-news-card:not(:first-child) .home-news-card__link {
  align-self: flex-end;
  margin-top: auto;
  padding-top: 4px;
}
