:root {
  --green-950: #062b1c;
  --green-900: #0b432d;
  --green-800: #12613f;
  --green-600: #238554;
  --green-100: #e9f8e4;
  --green-50: #f7fff3;
  --text: #0e3024;
  --muted: #66766f;
  --border: rgba(14, 48, 36, .12);
  --shadow: 0 22px 55px rgba(6, 43, 28, .14);
}

body {
  color: var(--text);
  background: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, .hero-title, .section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.navbar {
  min-height: 94px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(14, 48, 36, .08);
  box-shadow: 0 12px 30px rgba(6, 43, 28, .08);
}

.navbar-brand img {
  width: clamp(180px, 18vw, 250px);
  height: 74px;
  object-fit: contain;
}

.nav-link {
  color: var(--green-800);
  font-weight: 800;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--green-950);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: .5rem;
  right: .5rem;
  bottom: .2rem;
  height: 2px;
  background: var(--green-600);
}

.hero, .page-hero, .contact-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero {
  min-height: 760px;
  background: var(--green-950);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 43, 28, .92), rgba(6, 43, 28, .62) 44%, rgba(6, 43, 28, .22)),
    linear-gradient(0deg, rgba(6, 43, 28, .68), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 94px;
}

.hero-title {
  font-size: clamp(3rem, 6.2vw, 6.2rem);
  line-height: .95;
  margin-top: 1rem;
}

.hero-text {
  max-width: 660px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--green-600);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.bg-soft {
  background:
    radial-gradient(circle at 8% 10%, rgba(35, 133, 84, .12), transparent 26%),
    linear-gradient(180deg, var(--green-50), var(--green-100));
}

.section-heading {
  max-width: 780px;
}

.section-title {
  color: var(--green-950);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  margin-top: .8rem;
}

.section-text {
  color: var(--muted);
  font-size: 1.1rem;
}

.image-panel, .stat-card, .card, .value-card, .logo-box, .contact-card, .contact-list a {
  border-radius: 8px;
}

.image-panel {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stat-card {
  height: 100%;
  padding: 1.4rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.stat-card strong, .stat-card span {
  display: block;
}

.stat-card strong {
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.stat-card span {
  margin-top: .55rem;
  color: var(--muted);
  font-weight: 700;
}

.products-section {
  background: var(--green-900);
}

.product-card, .feature-card, .transform-card {
  overflow: hidden;
  border: 0;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}

.product-card:hover, .feature-card:hover, .transform-card:hover, .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 80px rgba(6, 43, 28, .2);
}

.product-card .card-img-top, .feature-card .card-img-top {
  height: 255px;
  object-fit: cover;
}

.product-card .card-body, .feature-card .card-body {
  padding: 1.55rem;
}

.product-card h3 {
  color: var(--green-950);
  font-weight: 900;
  text-transform: uppercase;
}

.product-card p, .feature-card p, .transform-card li, .value-card p {
  color: var(--muted);
}

.feature-card i {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #fff;
  background: var(--green-800);
  font-size: 1.25rem;
}

.feature-card h3 {
  color: var(--green-950);
  font-size: 1.35rem;
  font-weight: 900;
}

.page-hero, .contact-hero {
  background:
    radial-gradient(circle at 84% 20%, rgba(154, 217, 87, .28), transparent 25%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
}

.page-hero {
  padding: calc(94px + clamp(4rem, 8vw, 7rem)) 0 clamp(4rem, 7vw, 6rem);
}

.logo-box {
  padding: clamp(2rem, 5vw, 4rem);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
}

.logo-box img {
  width: 100%;
  height: auto;
}

.transform-card .card-img-top {
  height: 390px;
  object-fit: cover;
}

.transform-card .card-body {
  padding: 1.7rem;
}

.transform-card h3 {
  color: var(--green-950);
}

.value-card {
  height: 100%;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}

.value-card i {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  color: #fff;
  background: var(--green-800);
  font-size: 1.45rem;
}

.value-card h2 {
  color: var(--green-950);
  font-size: 1.5rem;
}

.contact-hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: calc(94px + 4rem) 0 5rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .12);
}

.contact-list i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--green-950);
  background: #dff7d2;
  font-size: 1.45rem;
}

.contact-list strong, .contact-list span {
  display: block;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  color: var(--green-950);
}

.contact-card p {
  color: var(--muted);
}

.form-control, .form-select {
  border-color: var(--border);
  border-radius: 8px;
}

.form-control:focus, .form-select:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 .25rem rgba(35, 133, 84, .16);
}

.footer {
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
  color: rgba(255, 255, 255, .78);
  background: var(--green-950);
}

.footer-logo {
  width: 190px;
  filter: brightness(0) invert(1);
}

.footer h2 {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: .75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .56);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1030;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  color: #fff;
  background: #008f72;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
  font-size: 2rem;
  text-decoration: none;
}

.whatsapp-float span {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(0, 143, 114, .26);
  animation: pulse 1.9s ease-out infinite;
}

.whatsapp-float i {
  position: relative;
  z-index: 2;
  animation: wiggle 2.4s ease-in-out infinite;
}

@keyframes pulse {
  from { transform: scale(.75); opacity: .9; }
  to { transform: scale(1.55); opacity: 0; }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  45% { transform: rotate(-8deg) scale(1.08); }
  70% { transform: rotate(6deg) scale(1.02); }
}

@media (max-width: 991.98px) {
  .nav-link.active::after { left: 0; right: auto; width: 44px; }
  .hero { text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .transform-card .card-img-top { height: 320px; }
}

@media (max-width: 575.98px) {
  .navbar { min-height: 82px; }
  .navbar-brand img { width: 170px; height: 60px; }
  .hero { min-height: 700px; }
  .hero-title { font-size: 2.85rem; }
  .product-card .card-img-top, .feature-card .card-img-top { height: 220px; }
  .whatsapp-float { width: 56px; height: 56px; font-size: 1.75rem; }
}
