:root {
  --bp-bg: #f6f6f2;
  --bp-surface: #ffffff;
  --bp-soft: #eef1e5;
  --bp-border: #e2e5d6;
  --bp-text: #1f2419;
  --bp-muted: #66705d;
  --bp-primary: #6e7d34;
  --bp-primary-dark: #586429;
  --bp-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --bp-radius: 1.25rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--bp-bg);
  color: var(--bp-text);
  line-height: 1.65;
}

a {
  color: var(--bp-primary);
  text-decoration: none;
}

a:hover {
  color: var(--bp-primary-dark);
}

.bg-soft {
  background: linear-gradient(180deg, #fafbf7 0%, #f4f5ef 100%);
}

.section-space {
  padding: 5.5rem 0;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-text {
  color: var(--bp-muted);
  font-size: 1.05rem;
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: .9rem;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--bp-primary);
}

.navbar {
  background: rgba(246, 246, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 229, 214, .9);
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bp-text);
}

.navbar-brand img {
  width: 100%;
  height: 2rem;
}

.navbar-brand:hover {
  color: var(--bp-text);
}

.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .9rem;
  background: linear-gradient(135deg, var(--bp-primary), #95a84a);
  color: #fff;
  box-shadow: var(--bp-shadow);
  font-weight: 800;
  margin-right: .8rem;
}

.nav-link {
  font-weight: 600;
  color: var(--bp-muted);
  position: relative;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.35rem;
  width: 0;
  height: 2px;
  background: var(--bp-primary);
  transition: width .25s ease;
}

.nav-link.active,
.nav-link:hover {
  color: var(--bp-text);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.btn-bp-primary {
  background: var(--bp-primary);
  border-color: var(--bp-primary);
  color: #fff;
  border-radius: 999px;
  padding: .85rem 1.4rem;
  font-weight: 700;
}

.btn-bp-primary:hover,
.btn-bp-primary:focus {
  background: var(--bp-primary-dark);
  border-color: var(--bp-primary-dark);
  color: #fff;
}

.btn-bp-outline {
  border: 1px solid var(--bp-border);
  background: #fff;
  color: var(--bp-text);
  border-radius: 999px;
  padding: .85rem 1.4rem;
  font-weight: 700;
}

.btn-bp-outline:hover,
.btn-bp-outline:focus {
  background: #f2f4eb;
  color: var(--bp-text);
}

.hero-card,
.info-card,
.product-card,
.contact-card,
.partner-card {
  background: var(--bp-surface);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius) !important;
  box-shadow: var(--bp-shadow);
}

.hero-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(12px);
}

.hero-card::before {
  width: 18rem;
  height: 18rem;
  top: -4rem;
  right: -5rem;
  background: rgba(110, 125, 52, 0.12);
}

.hero-card::after {
  width: 14rem;
  height: 14rem;
  left: -4rem;
  bottom: -5rem;
  background: rgba(216, 180, 95, 0.13);
}

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

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 1.2rem;
  max-width: 42rem;
}

.hero-text {
  font-size: 1.08rem;
  color: var(--bp-muted);
  max-width: 40rem;
}

.hero-visual {
  /*background: linear-gradient(135deg, #fcfcf8 0%, #ebeee2 100%);*/
  border-radius: var(--bp-radius);
  border: 1px solid var(--bp-border);
  min-height: 23rem;
  position: relative;
  overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 12px solid rgba(31, 36, 25, 0.35);
}

.hero-visual::before {
  width: 11rem;
  height: 11rem;
  right: 1.5rem;
  top: 1.5rem;
}

.hero-visual::after {
  width: 8rem;
  height: 8rem;
  left: 2rem;
  bottom: 2rem;
}

.hero-tool-image {
  position: relative;
  z-index: -1;
  border-radius: var(--bp-radius);
  object-fit: cover;
  width: 100%;
  height: 100%;
  /*filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.12));*/
}

.stat-box {
  background: var(--bp-soft);
  border: 1px solid var(--bp-border);
  border-radius: 1rem;
  padding: 1.15rem;
  height: 100%;
}

.stat-box strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.1;
  margin-bottom: .35rem;
}

.stat-box span {
  color: var(--bp-muted);
  font-size: .95rem;
}

.product-card,
.contact-card,
.partner-card,
.info-card {
  height: 100%;
}

.product-card .card-body,
.contact-card .card-body,
.partner-card .card-body,
.info-card .card-body {
  padding: 1.5rem;
}

.product-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid var(--bp-border);
  background: linear-gradient(135deg, #f8f9f2 0%, #e8ebdd 100%);
  margin-bottom: 1.2rem;
}

.price {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--bp-primary-dark);
  margin-top: 1rem;
}

.price-sm {
  font-size: 1.08rem;
}

.icon-badge {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .9rem;
  background: var(--bp-soft);
  border: 1px solid var(--bp-border);
  color: var(--bp-primary-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.service-pill {
  padding: .95rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--bp-border);
  background: var(--bp-soft);
  font-weight: 600;
}

.partner-card .card-body {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  max-width: 100%;
  max-height: 9rem;
  object-fit: contain;
}

.partner-logo:hover {
  filter: grayscale(100%);
}

.accordion {
  --bs-accordion-border-color: var(--bp-border);
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-color: var(--bp-text);
  --bs-accordion-active-bg: #fff;
  --bs-accordion-btn-icon-width: 1rem;
  --bs-accordion-border-radius: 1rem;
  --bs-accordion-inner-border-radius: 1rem;
}

.accordion-item {
  border-radius: 1rem !important;
  overflow: hidden;
  box-shadow: var(--bp-shadow);
  margin-bottom: 1rem;
}

.accordion-button {
  font-weight: 700;
  font-size: 1.05rem;
}

.accordion-body {
  color: var(--bp-muted);
}

.contact-point {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--bp-border);
}

.contact-point:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-point:first-child {
  padding-top: 0;
}

.contact-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bp-soft);
  border: 1px solid var(--bp-border);
  color: var(--bp-primary-dark);
  flex: 0 0 auto;
}

.form-control,
.form-select {
  border-radius: .95rem;
  border-color: var(--bp-border);
  padding: .9rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(110, 125, 52, .55);
  box-shadow: 0 0 0 .25rem rgba(110, 125, 52, .12);
}

footer {
  border-top: 1px solid var(--bp-border);
  color: var(--bp-muted);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

body.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
  will-change: opacity, transform;
}

body.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .nav-link {
    padding-top: .65rem;
    padding-bottom: .65rem;
  }

  .nav-link::after {
    bottom: .25rem;
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding: 4.25rem 0;
  }

  .partner-card .card-body {
    min-height: 100px;
  }
}


.nexodot img {
  height: 1.5rem;
  width: 100%;
}