* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --ink: #1e2761;
  --ink-2: #0f4c81;
  --green: #81b338;
  --green-soft: #e8f0db;
  --blue-soft: #eaf3ff;
  --cream: #f7fbff;
  --sand: #dbe6f7;
  --line: #dbe6f7;
  --text: #25324a;
  --muted: #444;
  --white: #fff;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.08
}

a {
  text-decoration: none
}

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

.wrap {
  width: min(1350px, calc(100% - 80px));
  margin: 0 auto
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green)
}

.section-head {
      max-width: 1054px;
  margin: 0 auto 28px;
  text-align: center
}

.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--ink);
  margin: 12px 0 14px
}

.section-head p {
  color: var(--muted); 
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.section-head.left {
  max-width: none;
  margin: 0 auto 36px;
  text-align: left;
}

.section-head.left h2 {
  margin-left: 0;
}

.intro-bordered {
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 14px;
  background: var(--white);
  padding: 40px 44px;
  box-shadow: 0 12px 32px rgba(30, 39, 97, .06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  transition: .2s ease
}

.btn-primary {
  background: #81b338;
  color: #fff;
  box-shadow: 0 18px 36px rgba(129, 179, 56, .25)
}
.btn-primary:hover {
  background: #6d9a2e;
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(129, 179, 56, .35)
}

.btn-secondary {
  background: #81b338;
  color: #fff;
  box-shadow: 0 18px 36px rgba(129, 179, 56, .25)
}

.btn-secondary:hover {
  background: #6d9a2e;
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(129, 179, 56, .35)
}

.topbar {
  background: linear-gradient(90deg, #81b338, #1e2761);
  color: rgba(255, 255, 255, .88);
  font-size: 13px
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap
}

.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center
}

.topbar a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s ease
}
.topbar a:hover {
  color: var(--green)
}

.topbar .pill {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05)
}

.topbar-brochure {
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: background .25s ease, border-color .25s ease, color .25s ease
}
.topbar-brochure:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #1e2761;
  color: #1e2761 !important
}

.topbar-search input {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: 6px 14px;
  color: #fff;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  outline: none;
  width: 180px;
  transition: background .2s ease, border-color .2s ease
}
.topbar-search input::placeholder {
  color: rgba(255, 255, 255, .55)
}
.topbar-search input:focus {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .5)
}

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 39, 97, .08);
  box-shadow: 0 10px 30px rgba(30, 39, 97, .05)
}

nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0
}

nav .btn-primary {
  margin-left: 20px
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 18px;
  color: var(--ink)
}

.logo img {
  height: 100px;
  width: auto
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #1e2761;
  border-radius: 2px;
  transition: .2s ease
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  list-style: none;
  margin-left: 365px;
}

.nav-links a {
  color: #1e2761;
  font-weight: 600;
  font-size: 15px
}

.nav-links a:hover {
  color: var(--ink)
}

.nav-links > li {
  position: relative
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px
}

.dropdown-menu {
  position: absolute;
  display: block;
  top: 145%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 3px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .2s ease;
  z-index: 100;
  list-style: none
}

.nav-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.nav-dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown-menu li {
  position: relative
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 15px;
  color: #1e2761;
  font-size: 14px;
  font-weight: 500;
  transition: .15s ease
}

.dropdown-menu a:hover {
  background: rgba(129, 179, 56, .08);
  color: #81b338
}

.submenu {
  position: absolute;
  top: -8px;
  left: 100%;
  min-width: 260px;
  background: #fff;
  border-radius: 12px;
  padding: 5px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: .2s ease;
  z-index: 101;
  list-style: none
}

.has-sub:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0)
}

.has-sub.open > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0)
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 18px;
  background:
    radial-gradient(circle at top left, rgba(129, 179, 56, .18), transparent 24%),
    radial-gradient(circle at 85% 8%, rgba(15, 76, 129, .16), transparent 22%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 34px;
  align-items: center
}

.hero-copy {
  padding: 26px 0 26px
}

.hero-copy h1 {
  font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 4.8vw, 46px); 
  color: var(--ink);
  margin: 14px 0 16px;
  letter-spacing: -.035em
}

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

.hero-copy p {
   font-size: 16px;
    color: #444;
    max-width: 620px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
  list-style: none
}

.hero-points li {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(30, 39, 97, .08);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px
}

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

.hero-card-wrap {
  position: relative
}

.hero-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  background: linear-gradient(135deg, var(--ink), var(--ink-2))
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  z-index: 0
}
.slide.active {
  opacity: 1;
  z-index: 1
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block
}

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px
}
.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: background .3s ease, transform .3s ease
}
.slider-dots .dot.active {
  background: #fff;
  transform: scale(1.25)
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 39, 97, .02), rgba(30, 39, 97, .42))
}

.hero-badge {
  position: absolute;
      left: -400px;
    bottom: 0px;
  z-index: 10;
  max-width: 360px;
  background: rgba(255, 255, 255, .92);
  /* backdrop-filter: blur(14px); */
  padding: 18px 18px 16px;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(30, 35, 31, 0.1);
}

.hero-badge strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 6px
}

.hero-badge span {
  display: block;
  color: var(--muted);
  font-size: 14px
}

.trustbar {
  margin-top: -8px
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.trust-item {
  background: var(--white);
  border: 1px solid rgba(30, 39, 97, .08);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 14px 30px rgba(30, 39, 97, .06)
}

.trust-item strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px
}

.trust-item span {
  color: var(--muted);
  font-size: 14px
}

section {
  padding: 78px 0
}

.products {
  background: var(--cream)
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(30, 39, 97, .06);
  transition: transform .3s ease, box-shadow .3s ease
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px rgba(30, 39, 97, .12)
}

.product-media {
  position: relative;
  height: 190px;
  background: #eef6f3;
  overflow: hidden
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.product-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px
}

.product-body h3 {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px
}

.product-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px
}

.product-body .link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: auto;
  gap: 6px;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  transition: color .2s ease, transform .2s ease
}

.product-card:hover .product-body .link {
  color: #6d9a2e;
  transform: translateX(4px)
}

/* === ABOUT SECTION - Premium Dark Editorial === */
.about-section {
  background: linear-gradient(135deg, var(--ink) 0%, #13204a 50%, var(--ink-2) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(129, 179, 56, .08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-layout {
  display: grid;
     grid-template-columns: 0.6fr 1.0fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-visual-col {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
  border: 2px solid rgba(255, 255, 255, .1);
}

.about-image-frame img {
  width: 100%;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-num {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.badge-txt {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, .8);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 2px;
}

.about-metrics {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.metric-item {
  flex: 1;
  background: rgba(255, 255, 255, .06);
     border: 1px solid rgb(129 179 55 / 59%);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .3s ease, background .3s ease;
}

.metric-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .1);
}

.metric-val {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
}

.metric-lbl {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 4px;
}

.about-label {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  border: 1px solid rgba(129, 179, 56, .3);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.about-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 20px;
}

.about-text p {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-lead {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green) !important;
  margin-bottom: 8px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.about-tags span {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 8px 16px;
  border-radius: 999px;
  transition: all .25s ease;
}

.about-tags span:hover {
  background: var(--green);
  color: var(--ink);
  border-color: var(--green);
  transform: translateY(-2px);
}

.about-join {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  cursor: pointer;
  padding: 14px 28px;
  border: 1px solid var(--green);
  border-radius: 999px;
  transition: all .3s ease;
}

.about-join:hover {
  background: var(--green);
  color: var(--ink);
  gap: 16px;
}

.about-join svg {
  transition: transform .3s ease;
}

.about-join:hover svg {
  transform: translateX(4px);
}

.why {
  background: linear-gradient(180deg, #fff 0%, #f2f8ff 100%)
}

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

.why-card {
  padding: 24px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(30, 39, 97, .08);
  box-shadow: 0 16px 34px rgba(30, 39, 97, .06)
}

.why-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--ink);
  margin-bottom: 14px
}

.why-card h3 {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 10px
}

.why-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7
}

.reach {
  background: linear-gradient(135deg, var(--ink) 0%, #13204a 50%, var(--ink-2) 100%);
  color: #fff
}

.reach .section-head h2,
.reach .section-head p {
  color: #fff
}

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

.region {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.region svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}

.region strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'Sora', sans-serif;
}

.region span {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  font-family: 'DM Sans', sans-serif;
}

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

.faq-list {
  max-width: 860px;
  margin: 0 auto
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(30, 39, 97, .08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(30, 39, 97, .05);
  margin-bottom: 14px;
  transition: border-color .3s ease
}

.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: var(--green)
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: none;
  border: 0;
  color: var(--ink);
  font: 700 15px 'Sora', sans-serif;
  cursor: pointer;
  text-align: left;
  transition: background .25s ease, color .25s ease
}

.faq-q[aria-expanded="true"] {
  background: var(--green-soft);
  color: var(--green)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
  color: var(--muted);
  line-height: 1.75
}

.faq-a.open {
  max-height: 300px;
  padding: 0 20px 18px
}

.faq-toggle {
  font-size: 22px;
  color: var(--green)
}

.blogs .blogs-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 26px
}

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

.blog-card {
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(30, 39, 97, .08);
  box-shadow: 0 16px 34px rgba(30, 39, 97, .06)
}

.blog-card img {
  width: 100%;
  height: auto;
  object-fit: cover
}

.blog-body {
  padding: 20px
}

.blog-body .tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase
}

.blog-body h3 {
  font-size: 17px;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7
}

.cta {
  padding: 70px 0;
  /* background: linear-gradient(135deg, var(--ink) 0%, #13204a 50%, var(--ink-2) 100%); */
  color: #fff
}

.cta-box {
  text-align: center;
  padding: 10px 0
}

.cta-box h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  margin: 12px 0 14px
}

.cta-box p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap
}

.cta .btn-secondary {
  background: #81b338;
  color: #fff;
  border: none;
  box-shadow: 0 18px 36px rgba(129, 179, 56, .25)
}

.cta .btn-secondary:hover {
  background: #6d9a2e;
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(129, 179, 56, .35)
}

footer {
  background: var(--cream);
  color: var(--text);
  padding: 58px 0 22px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr 1fr;
  gap: 28px
}

.footer-brand img {
  height: 100px;
  width: auto;
  margin-bottom: 14px
}

.footer-brand p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.75
}

footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink);
  margin-bottom: 14px;
  font-family: 'Sora', sans-serif;
}

.footer-links {
  list-style: none
}

.footer-links li {
  margin-bottom: 9px
}

.footer-links a {
  color: var(--muted)
}

.footer-links a:hover {
  color: var(--green)
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted)
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(129, 179, 56, .34)
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 16px 36px rgba(129,179,56,.34); }
  50% { box-shadow: 0 16px 48px rgba(129,179,56,.55); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.scroll-anim {
  opacity: 0;
}
.scroll-anim.visible {
  animation: fadeUp .6s ease both;
}

.eyebrow { animation: fadeIn .6s ease both }
.hero-copy h1 { animation: slideInLeft .7s ease both }
.hero-copy p { animation: fadeUp .6s .15s ease both }
.hero-points li { animation: fadeUp .5s ease both }
.hero-points li:nth-child(1) { animation-delay: .25s }
.hero-points li:nth-child(2) { animation-delay: .35s }
.hero-points li:nth-child(3) { animation-delay: .45s }
.hero-points li:nth-child(4) { animation-delay: .55s }
.hero-actions { animation: fadeUp .6s .4s ease both }
.hero-card { animation: fadeIn .8s .1s ease both }

.trust-item {
  transition: transform .3s ease, box-shadow .3s ease;
}
.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(30,39,97,.1);
}

.product-media img {
  transition: transform .4s ease;
}
.product-card:hover .product-media img {
  transform: scale(1.08);
}
.product-body .link {
  transition: gap .25s ease;
  display: inline-flex; align-items: center; gap: 4px;
}
.product-body .link::after {
  content: "→"; transition: transform .25s ease; display: inline-block;
}
.product-card:hover .link::after {
  transform: translateX(4px);
}



.why-card {
  transition: transform .3s ease, box-shadow .3s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(30,39,97,.1);
}
.why-card .num {
  transition: background .25s ease, color .25s ease;
}
.why-card:hover .num {
  background: var(--green);
  color: #fff;
}

.region {
  transition: transform .3s ease, background .3s ease;
}
.region:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.14);
}

.faq-item {
  transition: transform .25s ease, box-shadow .25s ease;
}
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(30,39,97,.08);
}

.blog-card {
  transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(30,39,97,.1);
}
.blog-card img {
  transition: transform .4s ease;
}
.blog-card:hover img {
  transform: scale(1.06);
}

.sticky-cta a {
  animation: pulseGlow 2.4s ease infinite;
}
.sticky-cta a:hover {
  transform: translateY(-2px);
}

h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .card-title,
.logo, .nav-link, .footer-heading,
.btn, .topbar {
  font-family: 'Sora', sans-serif !important;
}

/* === INNER PAGE BANNER === */
.page-banner {
  background: linear-gradient(135deg, var(--ink) 0%, #13204a 50%, var(--ink-2) 100%);
  padding: 90px 0 70px;
  color: #fff;
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(129,179,56,.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-banner .banner-content {
  position: relative;
  z-index: 1;
}
.page-banner .eyebrow {
  background: rgba(129,179,56,.2);
  color: var(--green);
}
.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 36px);
  color: #fff;
  margin: 14px 0 10px;
  line-height: 1.1;
}
.page-banner p {
  color: rgba(255,255,255,.75);
  font-size: 17px;
  max-width: 700px;
  line-height: 1.7;
}
.page-banner .breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
}
.page-banner .breadcrumb-nav a {
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.page-banner .breadcrumb-nav a:hover {
  color: var(--green);
}
.page-banner .breadcrumb-nav span {
  color: var(--green);
}

/* === MISSION & VISION === */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mission-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 28px;
  box-shadow: 0 16px 34px rgba(30,39,97,.06);
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid var(--line);
    border-left: 4px solid var(--green);
    border-radius: 18px;
}
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(30,39,97,.1);
}
.mission-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--ink);
}
.mission-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 12px;
}
.mission-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

/* === TIMELINE / JOURNEY === */
.journey {
  background: var(--cream);
}
.milestones {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.milestone-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 18px;
  box-shadow: 0 16px 34px rgba(30,39,97,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.milestone-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(30,39,97,.1);
}
.milestone-card .year {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.milestone-card .dot-line {
  width: 2px;
  height: 24px;
  background: var(--green);
  margin: 12px auto;
  border-radius: 2px;
}
.milestone-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 8px;
}
.milestone-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* === TEAM === */
.team {
  background: var(--white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.team-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(30,39,97,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(30,39,97,.1);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
}
.team-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
}
.team-card .role {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.team-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* === VALUES === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(30,39,97,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(30,39,97,.1);
}
.value-card .val-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--ink);
}
.value-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 8px;
}
.value-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* === ABOUT HERO SPECIFIC === */
.about-hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(30,39,97,.08);
}
.about-hero-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.about-hero-body {
  padding: 24px;
}
.about-hero-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
}
.about-hero-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

body, p, .description, .card-text,
.topbar-links a, .footer-text,
.search-input, input, textarea {
  font-family: 'DM Sans', sans-serif !important;
}

/* === HOW IT WORKS === */
.how-it-works {
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  max-width: 1054px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(30, 39, 97, .08);
  border-radius: 22px;
  padding: 32px 20px;
  box-shadow: 0 16px 34px rgba(30, 39, 97, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(30, 39, 97, .1);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--ink);
}

.step-card h3 {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* === CERTIFICATIONS === */
.certifications {
  background: linear-gradient(135deg, var(--ink) 0%, #13204a 50%, var(--ink-2) 100%);
}

.certifications .section-head h2,
.certifications .section-head p {
  color: #fff;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cert-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  transition: transform .3s ease, background .3s ease;
}

.cert-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .14);
}

.cert-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.cert-img img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.cert-label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

/* === PARTNERS === */
.partners {
  background: var(--cream);
}

.partners-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid rgba(30, 39, 97, .08);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(30, 39, 97, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(30, 39, 97, .1);
}

.partner-logo span {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--white);
}

.testimonials-slider {
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform .5s ease;
  gap: 20px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid rgba(30, 39, 97, .06);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 16px 34px rgba(30, 39, 97, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(30, 39, 97, .1);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
      margin-bottom: 5px;
}

.testimonials-dots .tdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(30, 39, 97, .18);
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}

.testimonials-dots .tdot.active {
  background: var(--green);
  transform: scale(1.25);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}



.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--muted);
}

/* === GALLERY MODAL === */
.gallery-modal {
  display: flex;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}


.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color .2s ease;
}

.gallery-close:hover {
  color: var(--green);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .1);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .2s ease;
}

.gallery-nav:hover {
  background: rgba(255, 255, 255, .25);
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

.gallery-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}

.gallery-modal-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.gallery-label {
  display: block;
  color: rgba(255, 255, 255, .8);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

/* === ABOUT US PAGE OVERRIDES (light bg) === */
.page-about-us #company-overview {
  background: var(--cream);
  padding: 78px 0;
}
.page-about-us #company-overview .about-section {
  background: none;
}
.page-about-us #company-overview .about-heading {
  color: var(--ink);
}
.page-about-us #company-overview .about-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.page-about-us #company-overview .about-label {
  border-color: rgba(30,39,97,.15);
  color: var(--ink);
}
.page-about-us #company-overview .about-lead {
    color: var(--muted)  !important;
}
.page-about-us #company-overview .about-tags span {
  color: var(--text);
  background: var(--white);
  border-color: var(--line);
}
.page-about-us #company-overview .about-tags span:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.page-about-us #company-overview .metric-item {
  background: var(--white);
  border-color: var(--line);
}
.page-about-us #company-overview .metric-lbl {
  color: var(--muted);
}
.page-about-us #company-overview .about-image-frame {
  box-shadow: 0 30px 60px rgba(30,39,97,.12);
  border-color: var(--line);
}
.page-about-us #company-overview .about-badge {
  background: rgba(30,39,97,.08);
  border-color: rgba(30,39,97,.12);
}

/* === VALUES STACK (single column) === */
.values-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.value-stack-item {
  display: flex;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 14px 30px rgba(30,39,97,.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.value-stack-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(30,39,97,.1);
}
.value-stack-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 64px;
}
.value-stack-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.value-stack-num {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 1px;
}
.value-stack-body {
  flex: 1;
}
.value-stack-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
}
.value-stack-body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* === PARTNER CARD (about-us) === */
.partner-card {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 16px 34px rgba(30,39,97,.06);
}
.partner-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 16px;
}
.partner-card strong {
  color: var(--ink);
}
.partner-card p {
  color: var(--muted);
}
.partner-card .meta {
  margin-bottom: 8px;
}
.partner-card .meta-sm {
  margin-bottom: 4px;
}
.partner-card .subhead {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}
.partner-card img {
  width: 100%;
}

@media (max-width:768px) {
  .partner-card {
    grid-template-columns: 1fr;
  }
}

/* === FAQ SECTION === */
.faq-section {
  background: var(--cream);
}
.faq-list {
  max-width: 1100px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  box-shadow: none;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.faq-item:hover {
  box-shadow: 0 6px 20px rgba(30,39,97,.06);
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--green);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  line-height: 1.5;
  transition: background .25s ease;
}
.faq-question:hover {
  background: var(--cream);
}
.faq-question[aria-expanded="true"] {
  background: var(--green-soft);
  color: var(--green);
}
.faq-question .faq-icon {
  flex-shrink: 0;
  transition: transform .3s ease;
  color: var(--green);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.faq-answer a {
  color: var(--green);
  text-decoration: underline;
}

/* === BLOG PAGE === */
.blogs-page {
  padding: 70px 0;
  background: var(--cream);
}
.blog-card h3 a {
  color: var(--ink);
  text-decoration: none;
  transition: color .25s ease;
}
.blog-card h3 a:hover {
  color: var(--green);
}
.blog-read-more {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .25s ease;
}
.blog-read-more:hover {
  color: var(--ink);
}
.pagination-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}
.page-btn:hover:not(:disabled) {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.page-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.page-btn:disabled {
  opacity: .35;
  cursor: default;
}
.page-btn.prev,
.page-btn.next {
  font-size: 20px;
  line-height: 0;
}

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed;
  bottom: 16px;
  right: 80px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 22px;
  right: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .35s ease;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(129,179,56,.3);
  transition: background .25s ease, transform .25s ease;
}
.scroll-top a:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  align-items: start;
}
.contact-info-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 40px 32px;
}
.contact-info-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 24px;
}
.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
}
.contact-details li svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-details li a {
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
}
.contact-details li a:hover {
  color: var(--green);
}
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #d0d5dd;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #1e2761;
  background: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(129,179,56,.15);
}
.contact-form-card textarea {
  resize: vertical;
  min-height: 110px;
}
.form-captcha {
  display: flex;
  gap: 12px;
  align-items: center;
}
.captcha-box {
  flex-shrink: 0;
  min-width: 130px;
  height: 46px;
  background: #fbfcff;
  border: 1.5px solid #d0d5dd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Courier New', monospace;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #1e2761;
  box-sizing: border-box;
  padding: 0 12px;
}
.form-captcha input {
  flex: 1;
}
.contact-form-card .btn-primary {
  align-self: flex-start;
  padding: 14px 40px;
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
}

/* === FINISHED FORMULATIONS — COMPANY OVERVIEW === */
.page-about-us #company-overview {
  background:
    radial-gradient(circle at 15% 18%, rgba(129, 179, 56, .10), transparent 28%),
    radial-gradient(circle at 85% 82%, rgba(15, 76, 129, .08), transparent 26%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.page-about-us #company-overview .overview-card { 
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 44px 48px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(30, 39, 97, .07);
}
.page-about-us #company-overview .overview-card .about-lead {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 26px;
}
.page-about-us #company-overview .overview-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
  margin: 0 auto 28px;
}
.page-about-us #company-overview .overview-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  transition: transform .25s ease, box-shadow .25s ease;
}
.page-about-us #company-overview .overview-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(30, 39, 97, .08);
}
.page-about-us #company-overview .feature-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 6px 14px rgba(129, 179, 56, .3);
}
.page-about-us #company-overview .overview-closing {
  font-size: 17px;
  color: var(--ink);
  font-weight: 600;
}
.page-about-us #company-overview .overview-card .about-tags {
  justify-content: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
@media (max-width: 768px) {
  .page-about-us #company-overview .overview-card {
    padding: 28px 22px;
  }
  .page-about-us #company-overview .overview-features {
    grid-template-columns: 1fr;
  }
  .page-about-us #company-overview .overview-card .about-lead {
    font-size: 18px;
  }
}

.products-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(30, 39, 97, .08);
}

.products-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 820px;
}

.products-table thead th {
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 16px 18px;
  text-align: left;
  white-space: nowrap;
}

.products-table tbody td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  vertical-align: middle;
}

.products-table tbody tr:nth-child(even) {
  background: #eaf3ffa1;
}

.products-table tbody tr:hover {
  background: var(--green-soft);
}

.products-table tbody tr td:first-child {
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
}

.products-table .product-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 4px;
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 14, 40, .92);
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, .25);
}

@media (max-width: 768px) {
  .products-table {
    font-size: 14px;
  }
  .products-table thead th,
  .products-table tbody td {
    padding: 11px 14px;
  }
  .products-table .product-img {
   width: 100px;
        height: 100px;
  }
}

.page-nav-section {
  padding: 0 0 60px;
}

.page-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 720px;
}

.page-nav-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.page-nav-link:hover {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.page-nav-link.next {
  text-align: right;
  align-items: flex-end;
}

.page-nav-direction {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
}

.page-nav-title {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.page-nav-link.is-disabled {
  pointer-events: none;
  opacity: .55;
}

@media (max-width: 767px) {
  .page-nav {
    grid-template-columns: 1fr;
  }
}

.answer-card {
  background: linear-gradient(135deg, var(--cream), #fff);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 14px;
  padding: 26px 30px;
}

.answer-card .answer-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--green);
  margin-bottom: 10px;
}

.answer-card p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text);
}


/* ===== Plant-Based Blog Styles (merged from plant-based.css) ===== */
.section-title {
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e2761;
    font-size: 30px;
}

.info-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 45px;
    color: #1e2761;
    margin-bottom: 15px;
}

.stat-box {
    background: #f5f7ff;
    border-left: 5px solid #1e2761;
    padding: 25px;
    border-radius: 12px;
    height: 100%;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #1e2761;
}

.trend-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
  height: auto;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    width: 4px;
    height: 100%;
    background: #1e2761;
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -28px;
    top: 8px;
    width: 18px;
    height: 18px;
    background: #1e2761;
    border-radius: 50%;
}

.cta-box {
    background: #1e2761;
    color: #fff;
    padding: 80px 40px;
    border-radius: 20px;
}

.badge-custom {
    background: #eaedff;
    color: #1e2761;
    padding: 8px 15px;
    border-radius: 30px;
    display: inline-block;
    margin: 5px;
    font-size: 14px;
}

.blog-heading {
    font-size: 25px;
}

.modal-header-bg {
    background-color: #eaedff;
}

.modal-body-bg {
    background-color: #eaedff;
}

.captcha-msg {
    margin-left: 100px;
    color: red;
}

.footer-widget-bg {
    background-color: #f5f7ff;
}

.copyright-bg {
    background-color: #f5f7ff;
}

.final-bg-color {
    background-color: #f5f7ff;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 24px;
    }
    .info-card h4,
    .trend-box h4 {
        font-size: 18px;
    }
    .info-card h5,
    .trend-box h5 {
        font-size: 16px;
    }
    .info-card h6 {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 22px;
    }
    .trend-box h4,
    .info-card h4 {
        font-size: 17px;
    }
}

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

.rise-bg {
    background-image: url(../images/blog/the-rise-bg-img.webp);
    background-size: cover;
    background-position: center;
}

.rise-bg .info-card {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
}

.rise-bg .info-card h5 {
    color: #fff;
}

.rise-bg .info-card p {
    color: rgba(255, 255, 255, .85);
}

.rise-bg .info-card i {
    color: #fff;
}

.glass-box {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 15px;
    text-align: center;
}

.glass-badge {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-block;
}

.glass-badge strong {
    color: #fff;
}