:root {
  --green-950: #07231a;
  --green-900: #0d3b28;
  --green-800: #12492f;
  --green-700: #166534;
  --green-600: #1f7a45;
  --green-500: #2f9e5b;
  --lime-400: #8bd45a;
  --lime-300: #a9e878;
  --amber-500: #f5a623;
  --amber-600: #e8910a;
  --cream: #eef2e6;
  --ink-900: #12251c;
  --ink-700: #3c4d43;
  --ink-500: #6b7c72;
  --line: #e4e6de;

  --bs-primary: var(--green-700);
  --bs-primary-rgb: 22, 101, 52;
  --bs-body-font-family: 'Plus Jakarta Sans', sans-serif;
  --bs-body-color: var(--ink-900);
  --bs-body-color-rgb: 18, 37, 28;
  --bs-body-bg: var(--cream);
  --bs-link-color: var(--green-700);
  --bs-link-color-rgb: 22, 101, 52;
  --bs-link-hover-color: var(--green-900);
  --bs-link-hover-color-rgb: 13, 59, 40;
}

html {
  overflow-x: clip;
}

body.mm-wrapper {
  overflow-x: clip;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink-900);
  background: var(--cream);
}

p {
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}

a {
  color: var(--green-700);
}

a:hover {
  color: var(--green-900);
}

h1,
h2,
h3,
h4,
h5,
.navbar-brand {
  font-family: 'Outfit', sans-serif;
  color: var(--green-950);
}

a {
  text-decoration: none;
}

.section-pad {
  padding: 65px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

.bg-cream {
  background: var(--cream);
}

.bg-forest {
  background: var(--green-950);
}

.btn-brand {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 100px;
  padding: .75rem 1.6rem;
  box-shadow: 0 14px 30px -10px rgba(232, 145, 10, .55);
}

.btn-brand:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn-brand-outline {
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-radius: 100px;
  font-weight: 700;
  padding: .75rem 1.6rem;
}

.btn-brand-outline:hover {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.btn-brand-outline-light {
  border: 1.5px solid var(--line);
  color: var(--green-800);
  background: #fff;
  border-radius: 100px;
  font-weight: 700;
  padding: .75rem 1.6rem;
}

.btn-brand-outline-light:hover {
  border-color: var(--green-600);
  background: rgba(47, 158, 91, .06);
  color: var(--green-800);
}

.btn-brand-dark {
  background: var(--green-900);
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  padding: .75rem 1.6rem;
  border: none;
}

.btn-brand-dark:hover {
  background: var(--green-950);
  color: #fff;
}

.btn-brand-ghost {
  background: transparent;
  border: 1.5px solid var(--green-950);
  color: var(--green-800);
  border-radius: 100px;
  font-weight: 700;
  padding: .75rem 1.6rem;
}

.btn-brand-ghost:hover {
  background-color: var(--green-950);
  border-color: var(--green-600);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-700);
  background: rgba(47, 158, 91, .1);
  border: 1px solid rgba(47, 158, 91, .25);
  padding: .45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.eyebrow-light {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
  color: var(--lime-300);
}

.eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime-400);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
}

.section-subtitle {
  color: rgba(255, 255, 255, .65);
}

.topbar {
  background: var(--green-950);
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
}

.topbar a {
  color: inherit;
}

.topbar .social-link {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.topbar .social-link:hover {
  background: var(--lime-400);
  color: var(--green-950);
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-jsi {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow .25s ease;
}

.navbar-jsi.is-scrolled {
  box-shadow: 0 12px 30px -18px rgba(9, 46, 29, .35);
}

.navbar-jsi.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1020;
}

.navbar-jsi.is-scrolled .navbar-brand img {
  height: 40px;
}

.navbar-jsi.is-scrolled .navbar-nav li a {
  padding: 16px 10px;
}

.navbar-brand img,
.navbar-jsi .navbar-nav li a {
  transition: height .25s ease, padding .25s ease;
}
.navbar-jsi .navbar-nav{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: auto;
}

.navbar-jsi .navbar-nav li a {
  font-weight: 600;
  color: var(--ink-900);
  padding: 25px 0;
}

.navbar-jsi .navbar-nav li a:hover {
  color: var(--green-700);
}

.header-call-badge {
  border-right: 1px solid var(--line);
  padding-right: .9rem;
  margin-right: .5rem;
}

.header-call-badge .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
}

.hero-owl .item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
  height: 600px;
  display: flex;
  align-items: center;
}

.hero-copy h1 {
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 2.6rem;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--amber-600);
}

.text-highlight {
  color: var(--amber-600);
  font-style: normal;
}

.section-dark .text-highlight,
.section-forest .text-highlight,
.contact-panel-left .text-highlight {
  color: var(--amber-600);
}

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
}

[data-aos="zoom-in"] {
  transform: translateY(0) scale(.91);
}

[data-aos].in-view {
  animation: reveal-fade-up .8s cubic-bezier(.22, 1, .36, 1) both;
  animation-delay: var(--reveal-delay, 0s);
}

[data-aos="zoom-in"].in-view {
  animation-name: reveal-zoom-in;
}

@keyframes reveal-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-zoom-in {
  from { opacity: 0; transform: scale(.91); }
  to { opacity: 1; transform: scale(1); }
}

.hero-copy .lead {
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.8;
}

.hero-copy-center .lead {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy-center .hero-stats {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  margin-top: .25rem;
}

.hero-stats div {
  width: 24%;
  flex-grow: 1;
  border-bottom: 4px solid var(--amber-600);
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 13px 3px rgb(0 0 0 / 6%);
}

.hero-owl .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
}

.hero-owl .owl-dots .owl-dot span {
  background: rgba(18, 73, 47, .25);
  width: 9px;
  height: 9px;
  margin: 0 4px;
}

.hero-owl .owl-dots .owl-dot.active span {
  background: var(--green-700);
  width: 26px;
  border-radius: 6px;
}

.hero-owl .owl-nav {
  position: absolute;
  top:50%;
  margin: 0;
  width: 100%;
}

.hero-owl .owl-nav button.owl-prev,
.hero-owl .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff !important;
  border: 1.5px solid var(--line);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
  color: var(--green-800) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-owl .owl-nav button.owl-prev {
  left: 20px;
}

.hero-owl .owl-nav button.owl-next {
  right: 20px;
}

.hero-owl .owl-nav button:hover {
  background: var(--green-700) !important;
  color: #fff !important;
}

.about-heading { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.12; letter-spacing: -0.01em; }

.about-photo-tall { position: relative; border-radius: 22px; overflow: hidden; height: 100%; min-height: 460px; box-shadow: 0 20px 45px -20px rgba(9, 46, 29, .35); }
.about-photo-tall img { width: 100%; height: 100%; object-fit: cover; }
.about-contact-badge {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 2;
  display: flex; align-items: center; gap: .75rem; background: rgba(7,35,26,.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 16px; padding: .8rem 1rem; color: #fff;
}
.about-contact-badge .icon-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--lime-400); color: var(--green-950); flex-shrink: 0; }
.about-contact-badge small { display: block; font-size: .68rem; color: rgba(255,255,255,.65); }
.about-contact-badge strong { display: block; font-size: .88rem; }

.about-photo-short { border-radius: 22px; overflow: hidden; box-shadow: 0 20px 45px -20px rgba(9, 46, 29, .35); flex: 1; }
.about-photo-short img { width: 100%; height: 100%; object-fit: cover; min-height: 160px; }

.about-stat-card {
  background: var(--green-800); color: #fff; border-radius: 18px; padding: 1.2rem 1.4rem;
  display: flex; align-items: center; gap: .9rem; box-shadow: 0 20px 40px -15px rgba(13, 59, 40, .5);
}
.about-stat-card strong { font-family: 'Outfit', sans-serif; font-size: 2.3rem; font-weight: 800; line-height: 1; }
.about-stat-card span { font-size: .85rem; font-weight: 700; max-width: 100px; line-height: 1.6; }

.about-check-grid li { display: flex; align-items: flex-start; gap: .4rem; font-weight: 600; font-size: .96rem; }
.about-check-grid i { color: var(--green-600); flex-shrink: 0; margin-top: 0; }

.btn-arrow { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; padding: 12px 10px 12px 20px; }
.btn-arrow i { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.15); display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; }

.btn-brand-outline-light.btn-arrow i,
.btn-brand-ghost.btn-arrow i {
  background: rgba(9, 46, 29, .08);
  color: inherit;
}

.bp-texture {
  position: relative;
  overflow: hidden;
}

.bp-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(18, 73, 47, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 73, 47, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, black 20%, transparent 80%);
}

.bp-texture-dark::before {
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
}

.bp-texture>.container {
  position: relative;
  z-index: 1;
}

.corner-frame {
  position: relative;
}

.corner-frame::before,
.corner-frame::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  z-index: 5;
  pointer-events: none;
}

.corner-frame::before {
  top: 14px;
  left: 14px;
  border-top: 3px solid var(--lime-400);
  border-left: 3px solid var(--lime-400);
}

.corner-frame::after {
  bottom: 14px;
  right: 14px;
  border-bottom: 3px solid var(--amber-500);
  border-right: 3px solid var(--amber-500);
}

@keyframes glow-breathe {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 1; }
  50% { transform: scale(1.18) translate(4%, -6%); opacity: .7; }
}

@keyframes texture-drift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 46px 46px, 46px 46px; }
}

@keyframes corner-pulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}

.bp-texture::before {
  animation: texture-drift 34s linear infinite;
}

.corner-frame::before,
.corner-frame::after {
  animation: corner-pulse 3.2s ease-in-out infinite;
}

.corner-frame::after {
  animation-delay: 1.1s;
}

.section-forest {
  background: radial-gradient(120% 140% at 100% 0%, var(--green-800) 0%, var(--green-950) 55%, #051510 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.section-forest h2 {
  color: #fff;
}

.forest-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 212, 90, .14), transparent 65%);
  bottom: -220px;
  left: -140px;
  pointer-events: none;
  animation: glow-breathe 8s ease-in-out infinite;
}

.reach-photo {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 2;
  box-shadow: 0 30px 55px -22px rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .15);
}

.reach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reach-photo-caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.25rem;
  color: #fff;
     background-color: #0000005c;
    padding: 15px;
    border-radius: 10px;
}

.reach-stat {
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.reach-stat:last-child {
  border-right: none;
}

.reach-stat .icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(139, 212, 90, .14);
  color: var(--lime-400);
}
.reach-stat-icon {
  width: 25px; height: 25px; object-fit: contain;
  filter: brightness(0) invert(1);
}

.card-category {
  background-color: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: .25s;
}

.card-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px -20px rgba(9, 46, 29, .35);
  border-color: transparent;
}

.card-category .thumb {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.card-category .thumb img {
  transition: .4s;
}

.card-category:hover .thumb img {
  transform: scale(1.08);
}

.card-category .thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 35, 26, .75), transparent 55%);
}

.card-category .badge-num {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, .9);
  color: var(--green-800);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.card-product {
  background-color: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: .25s;
}

.card-product:hover {
  box-shadow: 0 20px 45px -20px rgba(9, 46, 29, .35);
  transform: translateY(-5px);
  border-color: transparent;
}

.card-product .thumb {
  width: 100%;
  height: 250px;
  background: #eef2ea;
}

.card-product .badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--amber-500);
  color: #231303;
  font-weight: 800;
  font-size: .7rem;
  text-transform: uppercase;
  z-index: 2;
}

.card-product .thumb {
  position: relative;
  overflow: hidden;
}

.card-product .thumb img {
  transition: .4s;
}

.card-product:hover .thumb img {
  transform: scale(1.08);
}

.product-cat {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--green-600);
  margin-bottom: .3rem;
}

.nav-pills-brand .nav-link {
  display: inline-block;
  padding: .6rem 1.25rem;
  font-size: .92rem;
  border-radius: 100px;
  font-weight: 700;
  color: var(--ink-700);
  background: #fff;
  border: 1.5px solid rgba(18, 73, 47, .16);
  box-shadow: 0 1px 4px rgba(7, 35, 26, .05);
  margin-right: .5rem;
  margin-bottom: .5rem;
  line-height: 1.3;
  transition: .2s;
}

.nav-pills-brand .nav-link.active {
  background: var(--green-800);
  color: #fff;
  border-color: var(--green-800);
}

.nav-pills-brand .nav-link:hover:not(.active) {
  border-color: var(--green-600);
  color: var(--green-700);
}

.section-dark {
  background: var(--green-950);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.why-item {
  border-left: 2px solid rgba(255, 255, 255, .1);
  padding-left: 1.35rem;
  transition: .25s;
}

.why-item:hover {
  border-left-color: var(--lime-400);
}

.why-item p {
  color: rgba(255, 255, 255, .55);
}

.why-item .icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.779);
  color: var(--lime-400);
}

.why-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.industries-counter {
  background: var(--green-950);
  color: #fff;
  border-radius: 18px;
  padding: 1rem 1.5rem;
  flex-shrink: 0;
}

.industries-counter strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--lime-400);
  line-height: 1;
}

.industries-counter span {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .6);
  font-weight: 700;
}

.bento-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 14px 28px -18px rgba(7, 35, 26, .4);
  height: 230px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.bento-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s ease;
}

.bento-tile:hover img {
  transform: scale(1.1);
}

.bento-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 35, 26, .9) 25%, rgba(7, 35, 26, .1) 70%);
  transition: .3s;
}

.bento-tile:hover::after {
  background: linear-gradient(0deg, rgba(18, 73, 47, .95) 40%, rgba(7, 35, 26, .15) 75%);
}

.industry-icon {
  width: 20px; height: 20px; object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .3s;
}
.bento-tile:hover .industry-icon {
  filter: brightness(0) saturate(100%);
}

.bento-tile .icon-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  padding: 5px;
  border-radius: 8px;
  background: var(--amber-600);
  backdrop-filter: blur(6px);
  border: 1px solid var(--green-500);
  color: #fff;
  z-index: 2;
  transition: .3s;
}

.bento-tile:hover .icon-badge {
  background: var(--lime-400);
  color: var(--green-950);
  border-color: var(--lime-400);
  transform: rotate(-8deg) scale(1.05);
}

.bento-tile .tile-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  z-index: 2;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: .3s;
}

.bento-tile:hover .tile-arrow {
  opacity: 1;
  transform: translate(0, 0);
  background: var(--amber-500);
  color: #231303;
}

.bento-tile .tile-text {
  position: absolute;
  left: 18px;
  right: 14px;
  bottom: 16px;
  z-index: 2;
}

.bento-tile .tile-label {
  display: block;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.bento-tile .tile-desc {
  display: block;
  color: rgba(255, 255, 255, .75);
  font-size: .78rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: .3s;
  margin-top: .2rem;
}

.bento-tile:hover .tile-desc {
  max-height: 40px;
  opacity: 1;
}

.bento-hero .icon-badge {
  width: 48px;
  height: 48px;
  padding: 10px;
}
.bento-hero .industry-icon {
  width:100%;
  height: 100%;
  object-fit: contain;
}

.bento-hero .tile-text {
  left: 24px;
  bottom: 22px;
  right: 24px;
}

.bento-hero .tile-label {
  font-size: 1.35rem;
}

.bento-hero .tile-desc {
  font-size: .85rem;
}

.video-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px -20px rgba(9, 46, 29, .35);
  aspect-ratio: 4/3.1;
  cursor: pointer;
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 35, 26, .15), rgba(7, 35, 26, .55));
  pointer-events: none;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-800);
  z-index: 2;
  box-shadow: 0 16px 34px -10px rgba(0, 0, 0, .5);
  transition: .25s;
}

.video-frame:hover .play-btn {
  background: var(--amber-500);
  color: #231303;
  transform: translate(-50%, -50%) scale(1.08);
}

.play-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .6);
  animation: ring-pulse 2s infinite;
}

@keyframes ring-pulse {
  0% {
    transform: scale(1);
    opacity: .5;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
.video-bg{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video-point {
  height: 100%;
  background: var(--cream);
  border: 1px solid var(--green-700);
  border-radius: 16px;
  padding: 1.15rem 1.15rem 1.3rem;
  transition: .25s;
}

.video-point:hover {
  background: #fff;
  border-color: var(--green-600);
  box-shadow: 0 16px 32px -18px rgba(9, 46, 29, .3);
  transform: translateY(-4px);
}

.vgal-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/3.6;
  cursor: pointer;
  box-shadow: 0 10px 24px -14px rgba(7, 35, 26, .35);
}

.vgal-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.vgal-tile:hover img {
  transform: scale(1.08);
}

.vgal-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 35, 26, .1) 40%, rgba(7, 35, 26, .85) 100%);
}

.vgal-tile .play-btn {
  width: 52px;
  height: 52px;
}

.vgal-tile .play-btn::before {
  display: none;
}

.vgal-tile .caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-weight: 700;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 4rem 3.5rem;
  background-position: left center;
  background-size: cover;
  color: #fff;
}
.cta-banner::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
   background: linear-gradient(125deg, var(--green-800) 0%, var(--green-950) 65%, #051510 100%);
   opacity: 0.5;
}
.cta-banner .content {
  position: relative;
  z-index: 2;
}

.cta-banner-perks span {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

.cta-banner-perks i {
  color: var(--lime-400);
}

.cta-banner-actions {
  background: rgb(255 255 255 / 10%);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}

.blog-feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .25s;
}

.blog-feature:hover {
  box-shadow: 0 20px 45px -20px rgba(9, 46, 29, .35);
  transform: translateY(-4px);
}

.blog-feature-thumb {
  position: relative;
 width: 100%;
 height: 250px;
  overflow: hidden;
}

.blog-feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.blog-feature:hover .blog-feature-thumb img {
  transform: scale(1.06);
}

.blog-feature-thumb .badge-tag {
  top: 1rem;
  left: 1rem;
  background: var(--green-800);
  color: #fff;
  text-transform: none;
  font-size: .75rem;
}

.blog-feature-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta span {
  font-size: .78rem;
  color: var(--ink-500);
  font-weight: 600;
}

.blog-author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: .7rem;
}

.blog-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .75rem;
  transition: .25s;
}

.blog-row:hover {
  border-color: var(--green-600);
  box-shadow: 0 14px 30px -20px rgba(9, 46, 29, .3);
}

.blog-row-thumb {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-row-body {
  flex: 1;
  min-width: 0;
}

.blog-row-tag {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--green-700);
  margin-bottom: .2rem;
}

.blog-row-body h3 {
  font-size: .92rem;
  line-height: 1.3;
}

.blog-row-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-panel {
  background: linear-gradient(135deg, var(--green-900), var(--green-950));
  border-radius: 32px;
  padding: 4.5rem 3.5rem;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.testimonial-panel h2 {
  color: #fff;
}

.faq-section {
  background: var(--cream);
}

.faq-contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 14px 30px -20px rgba(9, 46, 29, .25);
}

.faq-contact-card .icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(47, 158, 91, .1);
  color: var(--green-700);
}
.faq-contact-card .icon-circle i{
  font-size: 26px;
}

@media (min-width: 992px) {
  .faq-sidebar-sticky {
    position: sticky;
    top: 100px;
  }
}

.accordion-brand .accordion-item {
  border: 1px solid var(--line);
  border-radius: 16px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  background: #fff;
  transition: .25s;
}

.accordion-brand .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--green-600);
  box-shadow: 0 16px 34px -22px rgba(9, 46, 29, .35);
}

.accordion-brand .accordion-button {
  font-weight: 700;
  border-radius: 16px !important;
  padding: 1.1rem 1.5rem 1.1rem 1.5rem;
  background: #fff;
  background-image: none !important;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accordion-brand .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--green-800);
}

.accordion-brand .accordion-button:focus {
  box-shadow: none;
}

.accordion-brand .accordion-button::after {
  display: none;
}

.accordion-brand .toggle-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream);
  transition: .25s;
  margin-left: auto;
}

.accordion-brand .toggle-icon::before,
.accordion-brand .toggle-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--green-700);
  transition: .25s;
}

.accordion-brand .toggle-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.accordion-brand .toggle-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.accordion-brand .accordion-button:not(.collapsed) .toggle-icon {
  background: var(--green-700);
}

.accordion-brand .accordion-button:not(.collapsed) .toggle-icon::before,
.accordion-brand .accordion-button:not(.collapsed) .toggle-icon::after {
  background: #fff;
}

.accordion-brand .accordion-button:not(.collapsed) .toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.accordion-brand .accordion-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.contact-panel {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 45px -20px rgba(9, 46, 29, .35);
}

.contact-panel-left {
  background: radial-gradient(120% 140% at 0% 0%, var(--green-700), var(--green-950));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-panel-left .list-unstyled i {
  color: var(--lime-400);
}

.contact-info-list { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; align-items: center; gap: .9rem; color: #fff; }
.contact-info-item .icon-circle { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.1); color: var(--lime-400); flex-shrink: 0; }
.contact-info-item small { display: block; font-size: .72rem; color: rgba(255,255,255,.55); }
.contact-info-item strong { display: block; font-size: .92rem; }
.contact-info-item:hover{
  color: var(--amber-600);
}
.contact-social-links { display: flex; gap: .75rem; }
.contact-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: .95rem; transition: background-color .25s ease, color .25s ease, transform .25s ease;
}
.contact-social-link:hover { background: var(--lime-400); color: var(--green-950); transform: translateY(-3px); }

.footer-brand {
  background: var(--green-950);
  color: rgba(255, 255, 255, .6);
}

.footer-brand a {
  color: rgba(255, 255, 255, .75);
}

.footer-brand .text-highlight{
  color: var(--amber-600);
  font-weight: 600;
}
.footer-brand a:hover {
  color: var(--lime-400);
}

.footer-logo-badge {
  background: #fff;
  border-radius: 12px;
  padding: .6rem 1rem;
  display: inline-block;
}

.footer-logo-badge img {
  height: 34px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  background: var(--lime-400);
  color: var(--green-950);
}

.footer-newsletter { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 2rem; position: relative; z-index: 1; }
.footer-heading { position: relative; padding-bottom: .6rem; }
.footer-heading::after { content: ''; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--amber-500); }
.footer-brand ul a { transition: .2s; display: inline-block;}
.footer-brand ul a:hover { transform: translateX(3px); }
.footer-brand ul.list-unstyled.footer-links  a{
  margin-bottom: 10px;
  position: relative;
}
.footer-brand ul.list-unstyled.footer-links a::before{
  content: "\f285";
      font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-size: 12px;
    margin-right: 5px;
}
.fab-stack {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fab-stack a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, .4);
  color: #fff;
  font-size: 1.4rem;
  position: relative;
}

.fab-whatsapp {
  background: #25D366;
}

.fab-call {
  background: var(--amber-500);
  color: #231303;
}

.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  opacity: .5;
  animation: ring-pulse 1.8s infinite;
}

.mobile-app-nav {
  display: none;
}

.gal-grid-item {
  border-radius: 16px;
  overflow: hidden;
}

.gal-grid-item img {
  transition: .4s;
}

.gal-grid-item:hover img {
  transform: scale(1.1);
}

.page-banner {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: radial-gradient(120% 140% at 100% 0%, var(--green-800) 0%, var(--green-950) 55%, #051510 100%);
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-banner h1 {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: .6rem;
}

.page-banner p {
  color: rgba(255, 255, 255, .65);
  max-width: 640px;
  margin-bottom: 0;
}

.breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 1rem;
}

.breadcrumb-trail a {
  color: rgba(255, 255, 255, .75);
}

.breadcrumb-trail a:hover {
  color: var(--lime-400);
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: .25s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -22px rgba(9, 46, 29, .25);
  border-color: transparent;
  background-color: var(--green-950);
}

.info-card .icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(47, 158, 91, .1);
  color: var(--green-700);
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}
.info-card:hover .icon-circle{
  background: #fff;
}
.info-card h3,
.info-card h4 {
  margin-bottom: .5rem;
}
.info-card:hover h3,
.info-card:hover p{
  color: #fff !important;
}
.contact-form-card,
.contact-map-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
}

.contact-form-card {
  padding: 2.25rem;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.wpcf7-form p {
  margin-bottom:0;
  width: 100%;
  position: relative;
}

.wpcf7-form label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--ink-900);
}

.wpcf7-form .wpcf7-row {
  display: flex;
  gap: 1rem;
}

.wpcf7-form .wpcf7-row label {
  flex: 1 1 0;
  min-width: 0;
}

.wpcf7-form-control {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  padding: .7rem 1rem;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink-900);
  margin-top: 0.5rem;
}

.wpcf7-form-control:focus {
  border-color: var(--green-600);
  background: #fff;
  outline: none;
}

textarea.wpcf7-form-control {
  height: 80px;
  resize: vertical;
}

.wpcf7-form input[type="submit"] {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 100px;
  padding: .8rem 1.6rem;
  width: 100%;
  box-shadow: 0 14px 30px -10px rgba(232, 145, 10, .55);
}
.wpcf7-spinner{
      position: absolute !important;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: .78rem;
  margin-top: .3rem;
}

.wpcf7-response-output {
  border-radius: 10px !important;
  font-size: .85rem;
  margin-top: 1rem !important;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-top: 2.5rem;
}

.blog-pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 .75rem;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  color: var(--ink-700);
  font-weight: 700;
  font-size: .85rem;
}

.blog-pagination .page-numbers.current {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}

.blog-pagination .page-numbers.dots {
  border: none;
}

.blog-pagination a.page-numbers:hover {
  border-color: var(--green-600);
  color: var(--green-700);
}

.sidebar-widget {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-widget-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: .6rem;
}

.sidebar-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: var(--amber-500);
  border-radius: 2px;
}

.sidebar-search {
  position: relative;
}

.sidebar-search input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: var(--cream);
  padding: .7rem 3rem .7rem 1.1rem;
  font-size: .9rem;
}

.sidebar-search input:focus {
  outline: none;
  border-color: var(--green-600);
  background: #fff;
}

.sidebar-search button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--green-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-cat-list li {
  border-bottom: 1px solid var(--line);
}

.sidebar-cat-list li:last-child {
  border-bottom: none;
}

.sidebar-cat-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 0;
  color: var(--ink-700);
  font-weight: 600;
  font-size: .88rem;
  transition: .2s;
}

.sidebar-cat-list a:hover {
  color: var(--green-700);
  padding-left: .35rem;
}

.sidebar-cat-list .count {
  background: var(--cream);
  color: var(--ink-500);
  font-size: .72rem;
  font-weight: 700;
  border-radius: 100px;
  padding: .15rem .55rem;
}

.sidebar-recent-post {
  display: flex;
  gap: .8rem;
  align-items: center;
  margin-bottom: 1rem;
}

.sidebar-recent-post:last-child {
  margin-bottom: 0;
}

.sidebar-recent-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream);
}

.sidebar-recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-recent-post h4 {
  font-size: .85rem;
  line-height: 1.35;
  margin-bottom: .25rem;
}

.sidebar-recent-post small {
  color: var(--ink-500);
  font-size: .72rem;
}

.sidebar-cta {
  background: radial-gradient(120% 140% at 0% 0%, var(--green-700), var(--green-950));
  border-radius: 18px;
  padding: 1.75rem;
  color: #fff;
  text-align: center;
}
.sidebar-cta .btn-brand{
  display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.sidebar-cta i {
  font-size: 1.8rem;
  color: var(--lime-400);
  margin-bottom: .6rem;
  display: block;
}
.sidebar-cta .btn-brand i{
 font-size: 1rem;
  color:#fff;
  margin: 0;
}
.sidebar-cta h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
  color: #fff;
}

.sidebar-cta p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 1.1rem;
}

.post-hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 40px;
  background: radial-gradient(120% 140% at 100% 0%, var(--green-800) 0%, var(--green-950) 55%, #051510 100%);
  color: #fff;
}

.post-hero h1 {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 42px);
  margin-bottom: 1rem;
}

.post-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
}

.post-hero-meta span {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.post-hero-meta a {
  color: var(--lime-300);
  font-weight: 700;
}

.post-featured-image {
  border-radius: 22px;
  overflow: hidden;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px -25px rgba(9, 46, 29, .4);
  background: var(--cream);
}

.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-900);
}

.post-content h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--green-950);
}

.post-content h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 1.75rem 0 .85rem;
  color: var(--green-950);
}

.post-content p {
  margin-bottom: 1.25rem;
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.4rem;
}

.post-content li {
  margin-bottom: .4rem;
}

.post-content img {
  border-radius: 16px;
  margin: 1.5rem 0;
  max-width: 100%;
  height: auto;
}

.post-content blockquote {
  border-left: 4px solid var(--amber-500);
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: 0 14px 14px 0;
  font-style: italic;
  margin: 1.5rem 0;
  color: var(--ink-700);
}

.post-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-table-wrap {
  overflow-x: auto;
  margin: 1.75rem 0;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(9, 46, 29, .08);
}

.post-content table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: .92rem;
  margin: 0;
}

.post-content th,
.post-content td {
  padding: .85rem 1.15rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.post-content thead th,
.post-content tr:first-child th {
  background: var(--green-950);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  border-color: var(--green-950);
}

.post-content tbody tr:nth-child(even) {
  background: var(--cream);
}

.post-content table caption {
  caption-side: bottom;
  padding-top: .6rem;
  font-size: .82rem;
  color: var(--ink-700);
  text-align: left;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-top: 2rem;
}

.post-tags a {
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink-700);
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 100px;
}

.post-tags a:hover {
  border-color: var(--green-600);
  color: var(--green-700);
}

.post-share {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.post-share a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-share a:hover {
  background: var(--green-700);
  color: #fff;
}

.post-nav {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.post-nav>div {
  flex: 1;
}

.post-nav a {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  height: 100%;
  transition: .2s;
}

.post-nav a:hover {
  border-color: var(--green-600);
  box-shadow: 0 14px 30px -20px rgba(9, 46, 29, .3);
}

.post-nav small {
  display: block;
  color: var(--ink-500);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: .3rem;
}

.post-nav span {
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink-900);
}

.post-nav-next {
  text-align: right;
}

#comments {
  margin-top: 3rem;
}

#comments h2,
#respond h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  color: var(--green-950);
}

.commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.commentlist li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

#respond {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem;
  margin-top: 2rem;
}

#commentform div {
  margin-bottom: 1rem;
}

#commentform label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

#commentform input[type="text"],
#commentform textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  padding: .7rem 1rem;
  font-family: inherit;
}

#commentform input[type="submit"] {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 100px;
  padding: .75rem 1.6rem;
}

.error-404-section {
  min-height: 68vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.error-404-icon {
  position: absolute;
  font-size: 340px;
  color: var(--green-700);
  opacity: .05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  pointer-events: none;
  line-height: 1;
}

.error-404-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(90px, 16vw, 200px);
  line-height: 1;
  background: linear-gradient(135deg, var(--green-700), var(--lime-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.error-404-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 2.25rem;
}

.error-404-links a {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: .55rem 1.3rem;
  font-weight: 700;
  font-size: .85rem;
  color: var(--ink-700);
  transition: .2s;
}

.error-404-links a:hover {
  border-color: var(--green-600);
  color: var(--green-700);
  background: rgba(47, 158, 91, .06);
}

.section-title span{
  color: var(--amber-600);
}

.check-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 1.5rem;
}

.check-grid li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .92rem;
  color: var(--ink-700);
}

.check-grid li i {
  color: var(--green-600);
  flex-shrink: 0;
  margin-top: .2rem;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 767.98px) {
  .product-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-gallery-grid a {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--cream);
}

.product-gallery-grid a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s;
}

.product-gallery-grid a:hover img {
  transform: scale(1.08);
}

.product-gallery-grid a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 35, 26, 0);
  transition: background .25s ease;
}

.product-gallery-grid a:hover::before {
  background: rgba(7, 35, 26, .35);
}

.gallery-zoom-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.7);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.product-gallery-grid a:hover .gallery-zoom-badge {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.product-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin: 1.5rem 0 2rem;
}

.section-alt {
  background: var(--cream);
}

.material-info-band {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.material-info-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(238, 242, 230, .85) 40%, rgba(238, 242, 230, 0) 68%);
  pointer-events: none;
  z-index: 0;
}

.material-info-band .container {
  position: relative;
  z-index: 1;
}

.material-info-band .eyebrow {
  background: rgba(47, 158, 91, .1);
}

.material-band-content {
  position: relative;
  z-index: 1;
}

.material-band-content p {
  color: var(--ink-900);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.material-band-content p:last-child {
  margin-bottom: 0;
}

.material-band-content strong {
  color: var(--green-800);
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.85rem 2.25rem;
}

.feature-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-list-item .icon-circle {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  background: rgba(47, 158, 91, .1);
  color: var(--green-700);
  font-size: 1.15rem;
}

.feature-list-item h4 {
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: .35rem;
  color: var(--green-950);
}

.feature-list-item p {
  font-size: .85rem;
  color: var(--ink-500);
  margin-bottom: 0;
  line-height: 1.65;
}

.overview-photo-wrap {
  position: relative;
}

.overview-photo-accent {
  position: absolute;
  inset: 22px -22px -22px 22px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  border-radius: 26px;
  z-index: 0;
}

.overview-photo {
  position: relative;
  z-index: 1;
  border-radius: 26px;
  overflow: hidden;
 width: 100%;
 height: 100%;
  box-shadow: 0 30px 60px -25px rgba(9, 46, 29, .35);
}

.overview-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-hero-photo-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  min-height:auto;
  display: flex;
  align-items: center;
}
.product-hero-photo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:radial-gradient(100% 100% at 50% 50%, rgb(237 242 230) 0%, rgb(237 242 230 / 47%) 45%, rgb(237 242 230 / 0%) 100%);
  z-index: 0;
}

.product-hero-photo-banner .container {
  position: relative;
  z-index: 1;
}

.product-hero-copy-panel {
  padding: 0;
  text-align: center;
}

.product-hero-copy-panel h1 {
  color: var(--ink-900);
}

.product-hero-copy-panel h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

.product-hero-inline-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 1.75rem;
}

.product-hero-inline-stats div {
  padding: 1rem;
  background-color: #fff;
  border-right: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  border-bottom: 2px solid var(--amber-600);
  box-shadow: 0 0 13px 3px rgb(0 0 0 / 6%);
  flex-grow: 1;
  width: 20%;
}

.product-hero-inline-stats strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green-900);
  line-height: 1;
}

.product-hero-inline-stats small {
  color:#333;
  font-size: .8rem;
  font-weight: 500;
}
.spec-watermark {
  position: absolute;
  top: -.4em;
  right: -.03em;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 11vw, 9rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: rgba(255, 255, 255, .04);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.spec-fact-panel {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: .5rem 1.75rem;
  backdrop-filter: blur(6px);
}

.spec-fact-list {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.spec-fact-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem .25rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: background-color .25s ease, padding-left .25s ease;
}

.spec-fact-row:hover {
  background: rgba(255, 255, 255, .05);
  padding-left: .75rem;
}

.spec-fact-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.spec-fact-value {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
  text-align: right;
}

#mobile-nav-panel {
  --mm-color-background: var(--green-950);
  --mm-color-background-emphasis: var(--green-900);
  --mm-color-background-highlight: rgba(255, 255, 255, .08);
  --mm-color-border: rgba(255, 255, 255, .1);
  --mm-color-button: var(--lime-400);
  --mm-color-text: #fff;
  --mm-color-text-dimmed: rgba(255, 255, 255, .55);
  width: 300px;
  max-width: 86vw;
}

/* mmenu.js only adds its own hiding classes (mm-menu_offcanvas etc.) once
   it initializes from footer.php's script block — until then the raw
   nav-tree markup sits in normal document flow and flashes on screen for
   a moment on every page load. Hide it ourselves the instant CSS loads
   (in <head>, well before body paints); once mmenu.js adds its class this
   rule stops matching and mmenu's own show/hide logic takes over. */
#mobile-nav-panel:not(.mm-menu_offcanvas) {
  display: none;
}

#mobile-nav-panel.mm-menu,
#mobile-nav-panel .mm-panel {
  background: var(--mm-color-background);
}

#mobile-nav-panel .mm-listitem__text {
  font-weight: 600;
  font-size: .95rem;
}

/* mmenu.js's default .mm-listitem__btn (the submenu-opening arrow) is an
   invisible position:absolute box stretched left:0 to right:0 — the full
   row width — sitting over the real link underneath. A real tap anywhere
   on a parent item (e.g. "Poly House") always hits this overlay and opens
   the submenu instead of ever reaching the .mm-listitem__text link, so
   that page could never actually be opened. Shrink the overlay back down
   to just the arrow's own touch target on the right edge. */
#mobile-nav-panel .mm-listitem__btn {
  left: auto;
  width: 56px;
}

.mobile-nav-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mobile-nav-brand img {
    height: 45px;
    width: auto;
    padding: 5px;
    background: #fff;
    border-radius: 5px;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.mobile-nav-cta {
  padding: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 1rem;
}

.mobile-nav-social {
  display: flex;
  justify-content: center;
  gap: .6rem;
}

.mobile-nav-social .social-link,
.mobile-nav-social .social-link:link,
.mobile-nav-social .social-link:visited {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1.05rem;
  transition: background .2s, color .2s;
}

.mobile-nav-social .social-link:hover {
  background: var(--lime-400);
  color: var(--green-950) !important;
}

.navbar-toggler {
  cursor: pointer;
}

.navbar-nav .menu-item {
  position: relative;
}

.navbar-nav .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.navbar-nav .menu-item-has-children > a::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform .2s ease;
  flex-shrink: 0;
}

.navbar-nav .menu-item-has-children:hover > a::after,
.navbar-nav .menu-item-has-children:focus-within > a::after {
  transform: rotate(225deg);
  margin-top: 3px;
}

.navbar-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  margin: 0;
  padding:0;
  list-style: none;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 48px -20px rgba(9, 46, 29, .35);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 1030;
}

.navbar-nav .menu-item-has-children:hover > .sub-menu,
.navbar-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0);
}

.navbar-nav .sub-menu .menu-item a {
  display: flex;
  justify-content: space-between;
  padding: .65rem .9rem;
  border-radius: 0;
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink-900);
  white-space: nowrap;
  transition: background .15s, color .15s;
}

.navbar-nav .sub-menu .menu-item a:hover {
  background: var(--cream);
  color: var(--green-700);
}

.navbar-nav .sub-menu .sub-menu {
  top: -.6rem;
  left: 100%;
  margin-left:0;
}

.navbar-nav .sub-menu .menu-item-has-children > a::after,
.navbar-nav .sub-menu .menu-item-has-children:hover > a::after,
.navbar-nav .sub-menu .menu-item-has-children:focus-within > a::after {
  transform: rotate(-45deg);
  margin-top: 0;
}

#mobile-nav-panel .mm-panels > .mm-panel:first-child > .mm-navbar {
  display: none;
}

#mobile-nav-panel .mm-navbar {
  background: var(--green-900);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: .5rem .5rem .5rem 1rem;
}

#mobile-nav-panel .mm-navbar__title {
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
}

#mobile-nav-panel .mm-btn_prev {
  color: var(--lime-400);
}

#mobile-nav-panel .mm-btn_prev::before {
  border-color: var(--lime-400);
}

.history-timeline {
  position: relative;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 8%, var(--line) 92%, transparent);
  display: none;
}

.history-item {
  position: relative;
  padding-top: 1rem;
}

.history-item-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.75rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--green-600);
  display: block;
  margin-bottom: 1rem;
  position: relative;
  background: var(--cream);
  width: fit-content;
  padding-right: .5rem;
}

.history-item h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--green-950);
}

.team-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.85rem 1.5rem;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px -22px rgba(9, 46, 29, .28);
}

.team-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1.1rem;
}

.team-card-1::before, .team-card-1 .team-card-num { background: var(--green-600); color: #fff; }
.team-card-2::before, .team-card-2 .team-card-num { background: var(--lime-400); color: var(--green-950); }
.team-card-3::before, .team-card-3 .team-card-num { background: var(--amber-500); color: #fff; }
.team-card-4::before, .team-card-4 .team-card-num { background: var(--green-800); color: #fff; }

.team-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--green-950);
  margin-bottom: .5rem;
}

.team-card p {
  font-size: .85rem;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.55;
}

.badge-strip {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.badge-strip-item {
  flex: 1 1 240px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.badge-strip-item:last-child {
  border-right: none;
}

.badge-strip-item i {
  font-size: 1.6rem;
  color: var(--green-700);
  flex-shrink: 0;
}

.badge-strip-item h4 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .2rem;
  color: var(--green-950);
}

.badge-strip-item p {
  font-size: .78rem;
  color: var(--ink-500);
  margin-bottom: 0;
}

.statement-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin: 0 auto;
}

.statement-panel {
  position: relative;
  padding: 1rem 3rem;
  overflow: hidden;
}

.statement-panel:first-child {
  border-right: 1px solid var(--line);
}

.statement-panel-icon {
  position: absolute;
  top: -14px;
  right: 1.25rem;
  font-size: 5rem;
  line-height: 1;
  color: rgba(47, 158, 91, .07);
  z-index: 0;
}

.statement-panel small {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: .75rem;
}

.statement-panel p {
  position: relative;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--green-950);
  margin: 0;
}

[data-counter] {
  font-variant-numeric: tabular-nums;
}

.editorial-stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-stat {
  flex: 1 1 160px;
  padding: 1.5rem 1.75rem 1.5rem 0;
  border-right: 1px solid var(--line);
}

.editorial-stat:last-child {
  border-right: none;
}

.editorial-stat strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--green-800);
  line-height: 1;
  margin-bottom: .4rem;
}

.editorial-stat small {
  color: var(--ink-500);
  font-size: .78rem;
  font-weight: 600;
}

.overview-story-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/.95;
  box-shadow: 0 30px 60px -25px rgba(9, 46, 29, .3);
}

.overview-story-photo-tall {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/4.7;
  box-shadow: 0 30px 60px -25px rgba(9, 46, 29, .3);
}

.overview-story-photo img,
.overview-story-photo-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-feature-item {
  text-align: center;
  padding: 0 .75rem;
}

.why-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--cream);
  transition: background-color .3s ease, transform .3s ease;
}

.why-feature-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.why-feature-item:hover .why-feature-icon {
  background: rgba(47, 158, 91, .12);
  transform: scale(1.05);
}

.why-feature-item h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .01em;
  color: var(--green-950);
  margin: 0 0 .75rem;
}

.why-feature-item p {
  font-size: .85rem;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.founder-media-photo {
  position: relative;
}

.founder-media-photo-inner {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, .4);
}

.founder-media-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-photo-quote-badge {
  position: absolute;
  bottom: -10px;
  left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lime-400);
  color: var(--green-950);
  font-size: 1.3rem;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, .45);
}

.founder-spotlight-quote p {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.6;
  color: #fff;
  margin: 0 0 1.75rem;
  font-style: italic;
}

.founder-spotlight-sign {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.founder-signature {
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--lime-400);
  line-height: 1;
  flex-shrink: 0;
}

.founder-spotlight-sign strong {
  display: block;
  font-size: .92rem;
  color: #fff;
}

.founder-spotlight-sign small {
  color: rgba(255, 255, 255, .55);
  font-size: .75rem;
}

.infra-watermark {
  position: absolute;
  top: -.4em;
  right: -.03em;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 11vw, 9rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: rgba(47, 158, 91, .05);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.infra-fact-panel {
  background: #fff;
  border-radius: 20px;
  padding: .5rem 1.75rem;
  box-shadow: 0 30px 60px -30px rgba(9, 46, 29, .18);
}

.infra-fact-list {
  border-top: 1px solid var(--line);
}

.infra-fact-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem .25rem;
  border-bottom: 1px solid var(--line);
  transition: background-color .25s ease, padding-left .25s ease;
}

.infra-fact-row:hover {
  background: rgba(47, 158, 91, .05);
  padding-left: .75rem;
}

.infra-fact-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-950);
  flex-shrink: 0;
}

.infra-fact-value {
  font-size: .88rem;
  color: var(--ink-500);
  line-height: 1.5;
  text-align: right;
}

.india-stat-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.india-stat {
  padding: 1.5rem 1.25rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 25px 45px -25px rgba(0, 0, 0, .5);
  transition: box-shadow .25s ease, transform .25s ease;
}

.india-stat:hover {
  box-shadow: 0 30px 55px -20px rgba(0, 0, 0, .55);
  transform: translateY(-4px);
}

.india-stat-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(47, 158, 91, .1);
  margin-bottom: 1rem;
}

.india-stat img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.india-stat strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--green-950);
  line-height: 1;
  margin-bottom: .4rem;
}

.india-stat small {
  color: var(--ink-500);
  font-size: .78rem;
  font-weight: 600;
}

.pbd-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.mfg-photo-stack {
  position: relative;
  margin-bottom: 2rem;
}

.mfg-photo-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(9, 46, 29, .3);
}

.mfg-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mfg-photo-sub {
  position: absolute;
  left: -1.5rem;
  bottom: -1.5rem;
  width: 54%;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 25px 50px -20px rgba(9, 46, 29, .4);
}

.mfg-photo-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mfg-steps {
  border-top: 1px solid var(--line);
}

.mfg-step {
  padding: 1.4rem 0 1.4rem 1.25rem;
  border-bottom: 1px solid var(--line);
  border-left: 4px solid var(--green-600);
  transition: background-color .25s ease, padding-left .25s ease;
}

.mfg-step:nth-child(2) {
  border-left-color: var(--lime-400);
}

.mfg-step:nth-child(3) {
  border-left-color: var(--amber-500);
}

.mfg-step:nth-child(4) {
  border-left-color: var(--green-800);
}

.mfg-step:hover {
  background: rgba(47, 158, 91, .05);
  padding-left: 1.75rem;
}

.mfg-step-body h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-700);
  margin-bottom: .4rem;
}

.mfg-step-body p {
  color: var(--ink-700);
  font-size: .92rem;
  margin-bottom: 0;
}

.gq-modal .modal-dialog {
  max-width: 820px;
}

.gq-modal-content {
  border: none;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(9, 46, 29, .45);
}

.gq-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(7, 35, 26, .55);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gq-modal-close:hover {
  background: var(--green-950);
}

.gq-modal-left {
  background: radial-gradient(120% 140% at 0% 0%, var(--green-700), var(--green-950));
  color: #fff;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.gq-modal-left h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  margin: .5rem 0 .75rem;
}

.gq-modal-left p {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 1.75rem;
}

.gq-modal-info {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.gq-modal-info a {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
}

.gq-modal-info a i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime-400);
  flex-shrink: 0;
}

.gq-modal-form {
  background: #fff;
  padding: 2.5rem 2rem;
  max-height: 80vh;
  overflow-y: auto;
}

.sunlit-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 145, 10, .1), transparent 65%);
  pointer-events: none;
  animation: glow-breathe 8s ease-in-out infinite;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .sunlit-glow {
    animation: none;
  }
}

.process-track {
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(10% + 27px);
  right: calc(10% + 27px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green-500) 0 10px, transparent 10px 18px);
}

.process-step-col {
  position: relative;
}

.process-step-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-600), var(--green-800));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 12px 24px -10px rgba(9, 46, 29, .5);
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 2;
  transition: transform .25s ease;
}

.process-step-col:hover .process-step-badge {
  transform: scale(1.08);
}

.process-step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.1rem;
  text-align: center;
  height: calc(100% - 80px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.process-step-col:hover .process-step-card {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -25px rgba(9, 46, 29, .3);
  border-color: var(--green-500);
}

.process-step-card h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.process-step-card p {
  font-size: .82rem;
  color: var(--ink-500);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .process-track::before {
    top: 0;
    bottom: 0;
    left: 27px;
    right: auto;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(180deg, var(--green-500) 0 10px, transparent 10px 18px);
  }

  .process-step-col {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .process-step-col:last-child {
    margin-bottom: 0;
  }

  .process-step-badge {
    margin: 0;
    flex-shrink: 0;
  }

  .process-step-card {
    text-align: left;
  }
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--ink-700);
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.legal-content li {
  margin-bottom: .5rem;
}

.legal-content a {
  color: var(--green-700);
  font-weight: 600;
}

.footer-newsletter-form .tnp-subscription-minimal {
  margin: 0;
}

.footer-newsletter-form .tnp-subscription-minimal form {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: end;
  align-items: center;
  white-space: normal;
}

.footer-newsletter-form .tnp-subscription-minimal input.tnp-email {
  flex: 1 1 220px;
}

.footer-newsletter-form .tnp-subscription-minimal input.tnp-email {
  width: 100%;
  border: 1.5px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-radius: 100px;
  padding: .75rem 1.25rem;
}

.footer-newsletter-form .tnp-subscription-minimal input.tnp-email::placeholder {
  color: rgba(255, 255, 255, .4);
}

.footer-newsletter-form .tnp-subscription-minimal input.tnp-email:focus {
  background: rgba(255, 255, 255, .1);
  border-color: var(--lime-400);
  box-shadow: none;
  color: #fff;
  outline: none;
}

.footer-newsletter-form .tnp-subscription-minimal input.tnp-submit {
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 100px;
  padding: .75rem 1.6rem;
  box-shadow: 0 14px 30px -10px rgba(232, 145, 10, .55);
  cursor: pointer;
  transition: transform .2s ease;
}

.footer-newsletter-form .tnp-subscription-minimal input.tnp-submit:hover {
  transform: translateY(-2px);
}

.newsletter-page-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 45px -25px rgba(9, 46, 29, .3);
}

.newsletter-page-card .icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(47, 158, 91, .1);
  color: var(--green-700);
  font-size: 1.6rem;
}

.newsletter-page-card p {
  color: var(--ink-500);
  margin-bottom: 0;
}

.newsletter-page-card .tnp-subscription-minimal form {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  white-space: normal;
}

.newsletter-page-card .tnp-subscription-minimal {
  margin: 0;
}

.newsletter-page-card .tnp-subscription-minimal input.tnp-email {
  flex: 1 1 240px;
  width: 100%;
  border: 1.5px solid var(--line);
  background: var(--cream);
  color: var(--ink-900);
  border-radius: 100px;
  padding: .75rem 1.25rem;
}

.newsletter-page-card .tnp-subscription-minimal input.tnp-email::placeholder {
  color: var(--ink-500);
}

.newsletter-page-card .tnp-subscription-minimal input.tnp-email:focus {
  background: #fff;
  border-color: var(--green-500);
  box-shadow: none;
  outline: none;
}

.newsletter-page-card .tnp-subscription-minimal input.tnp-submit {
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 100px;
  padding: .75rem 1.6rem;
  box-shadow: 0 14px 30px -10px rgba(232, 145, 10, .55);
  cursor: pointer;
  transition: transform .2s ease;
}

.newsletter-page-card .tnp-subscription-minimal input.tnp-submit:hover {
  transform: translateY(-2px);
}

.benefit-icon-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.benefit-icon-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .2);
}

.benefit-icon-card .icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--lime-400);
  color: var(--green-950);
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}

.benefit-icon-card h4 {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.benefit-icon-card p {
  color: rgba(255, 255, 255, .65);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.app-icon-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.app-icon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px -30px rgba(9, 46, 29, .35);
  border-color: var(--green-500);
}

.app-icon-card .icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(47, 158, 91, .1);
  color: var(--green-700);
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}

.app-icon-card h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-950);
  margin-bottom: .5rem;
}

.app-icon-card p {
  font-size: .88rem;
  color: var(--ink-500);
  line-height: 1.7;
  margin-bottom: 0;
}

.app-num-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem 1.5rem 1.5rem;
  height: 100%;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.app-num-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px -30px rgba(9, 46, 29, .35);
}

.app-num-card .app-num-ghost {
  position: absolute;
  top: .6rem;
  right: .5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--green-950);
  opacity: .04;
  line-height: 1;
  pointer-events: none;
}

.app-num-card h4 {
  position: relative;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-950);
  margin-bottom: .5rem;
}

.app-num-card p {
  position: relative;
  font-size: .88rem;
  color: var(--ink-500);
  line-height: 1.7;
  margin-bottom: 0;
}

.feature-grid-card {
  position: relative;
  height: 100%;
  background: linear-gradient(160deg, #fff 0%, var(--cream) 130%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.85rem 1.6rem;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.feature-grid-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--lime-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.feature-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 55px -28px rgba(9, 46, 29, .28);
  border-color: transparent;
}

.feature-grid-card:hover::before {
  transform: scaleX(1);
}

.feature-grid-card h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--green-950);
}

.feature-grid-card p {
  font-size: .88rem;
  color: var(--ink-500);
  line-height: 1.7;
  margin-bottom: 0;
}

.quick-contact-card {
  position: relative;
  background: radial-gradient(120% 140% at 100% 0%, var(--green-700) 0%, var(--green-950) 60%, #051510 100%);
  border-radius: 22px;
  padding: 2.25rem 1.85rem;
  color: #fff;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.quick-contact-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: .5rem;
  position: relative;
  z-index: 1;
}

.quick-contact-card p {
  color: rgba(255, 255, 255, .65);
  font-size: .85rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.quick-contact-card .btn {
  position: relative;
  z-index: 1;
}

.quick-contact-pulse {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 232, 120, .25), transparent 70%);
  animation: glow-breathe 6s ease-in-out infinite;
}

