/* ============================================================
   WRKSTATION — Main Stylesheet
   To retheme the entire site, change --brand-primary below.
   All greens are derived from that one variable.
   ============================================================ */
:root {
  --brand-primary:   rgb(101, 180, 70);   /* ← CHANGE THIS to retheme */
  --brand-dark:      rgb(65, 130, 42);
  --brand-light:     rgb(196, 232, 178);
  --brand-xlight:    rgb(237, 249, 230);

  --white:           #ffffff;
  --ghost:           #f7f9f7;
  --gray-100:        #f0f3f0;
  --gray-200:        #e2e8e1;
  --gray-400:        #9aaa94;
  --text-primary:    #111710;
  --text-secondary:  #3d4e38;
  --text-muted:      #7a8f74;

  --font-heading:    'Plus Jakarta Sans', sans-serif;
  --font-body:       'Plus Jakarta Sans', sans-serif;
  --font-serif:      'Lora', serif;

  --nav-height:      66px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
}

/* ─────────────────────────────────────
   STICKY NAVBAR
───────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s ease;
  height: var(--nav-height);
}

#mainNav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

#mainNav .container {
  display: flex;
  align-items: center;
  height: var(--nav-height);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary) !important;
  letter-spacing: -0.5px;
  text-decoration: none;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.navbar-brand span {
  color: var(--brand-primary);
}

/* Nav links */
.navbar-nav .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary) !important;
  padding: 0.45rem 0.85rem !important;
  transition: color 0.2s;
  white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--brand-primary) !important;
}

/* Nav CTA buttons */
.btn-nav-demo {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--brand-primary) !important;
  border: 1.5px solid var(--brand-primary);
  border-radius: 7px;
  padding: 0.38rem 1.1rem;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-nav-demo:hover {
  background: var(--brand-xlight);
}

.btn-nav-cta {
  font-size: 0.84rem;
  font-weight: 600;
  color: white !important;
  background: var(--brand-primary);
  border-radius: 7px;
  padding: 0.38rem 1.2rem;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--brand-dark);
  color: white !important;
}

/* Hamburger toggler */
.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  padding: 0.25rem;
}

/* Mobile nav padding */
@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 0.5rem;
  }

  .navbar-nav .nav-link {
    padding: 0.55rem 0.5rem !important;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }

  .btn-nav-demo,
  .btn-nav-cta {
    text-align: center;
    display: block;
    padding: 0.6rem 1rem;
  }
}

/* ─────────────────────────────────────
   REUSABLE BUTTONS
───────────────────────────────────── */
.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--brand-primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-brand:hover {
  background: var(--brand-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(101, 180, 70, 0.28);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.73rem 1.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

/* ─────────────────────────────────────
   SECTION STRUCTURE
───────────────────────────────────── */
.section-std {
  padding: 5.5rem 0;
}

.section-ghost {
  background: var(--ghost);
}

.section-divider {
  height: 1px;
  background: var(--gray-200);
}

/* Section labels / eyebrow text */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.7rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
}

.s-heading {
  font-size: clamp(1.65rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 0.9rem;
}

.s-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
}

/* ─────────────────────────────────────
   HERO SECTION
───────────────────────────────────── */
#hero {
  background: var(--white);
  padding: 116px 0 64px;
  border-bottom: 1px solid var(--gray-200);
}

.hero-title {
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px;
  line-height: 1.13;
  margin-bottom: 1rem;
}

.hero-title em {
  font-style: italic;
  color: var(--brand-primary);
  font-family: var(--font-serif);
  font-weight: 600;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 490px;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Dashboard mockup */
.hero-mockup {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}

.mock-bar {
  background: var(--ghost);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.mock-body {
  padding: 1.25rem 1.5rem;
}

.mock-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.mock-row:last-child {
  border-bottom: none;
}

.mock-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.mock-name {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.mock-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-left: auto;
}

.mock-bar-wrap {
  flex: 1;
  height: 4px;
  background: var(--gray-100);
  border-radius: 2px;
  overflow: hidden;
}

.mock-fill {
  height: 100%;
  border-radius: 2px;
}

/* ─────────────────────────────────────
   LOGOS STRIP
───────────────────────────────────── */
#logos {
  background: var(--ghost);
  padding: 2.25rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.logos-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2.75rem;
}

.logo-item {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-400);
  transition: color 0.2s;
  cursor: default;
}

.logo-item:hover {
  color: var(--brand-primary);
}

/* ─────────────────────────────────────
   SERVICES SECTION
───────────────────────────────────── */
.service-card {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}

.service-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 6px 28px rgba(101, 180, 70, 0.11);
  transform: translateY(-3px);
  color: inherit;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.s-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--brand-xlight);
  border: 1px solid var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  transition: background 0.2s;
}

.service-card:hover .s-icon {
  background: var(--brand-light);
}

.s-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
}

.s-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.s-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}

.service-card:hover .s-cta {
  gap: 0.55rem;
}

.trial-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--brand-primary);
  color: white;
  padding: 0.12rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.45rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* ─────────────────────────────────────
   FEATURES SECTION
───────────────────────────────────── */
.feat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 11px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.25s;
}

.feat-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 4px 20px rgba(101, 180, 70, 0.09);
}

.feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--brand-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}

.feat-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.feat-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────
   PRODUCTS SECTION
───────────────────────────────────── */
.prod-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.75rem;
  height: 100%;
  transition: all 0.25s;
}

.prod-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 5px 24px rgba(101, 180, 70, 0.1);
  transform: translateY(-3px);
}

.prod-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.7rem;
}

.prod-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--brand-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}

.prod-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
}

.prod-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.prod-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 1.1rem;
}

.prod-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--brand-xlight);
  border: 1px solid var(--brand-light);
  padding: 0.18rem 0.6rem;
  border-radius: 4px;
}

.prod-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}

.prod-link:hover {
  gap: 0.55rem;
}

/* ─────────────────────────────────────
   STATS BAR
───────────────────────────────────── */
#stats {
  background: var(--text-primary);
  padding: 4rem 0;
}

.stat-num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-accent {
  color: var(--brand-primary);
}

.stat-lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
}

/* ─────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────── */
.step-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 11px;
  transition: all 0.25s;
}

.step-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 4px 18px rgba(101, 180, 70, 0.08);
}

.step-n {
  width: 38px;
  min-width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
  color: white;
}

.step-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.28rem;
}

.step-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────
   TESTIMONIALS (hidden — remove display:none to show)
───────────────────────────────────── */
#testimonials {
  display: none;
}

/* ─────────────────────────────────────
   PRICING (hidden — remove display:none to show)
───────────────────────────────────── */
#pricing {
  display: none;
}

/* ─────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────── */
.about-panel {
  background: var(--ghost);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 2.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.about-stat-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 9px;
  padding: 1.1rem;
  text-align: center;
}

.a-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
}

.a-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.val-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.val-icon {
  width: 38px;
  min-width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--brand-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 0.95rem;
}

.val-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.val-text {
  font-size: 0.81rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────
   CONTACT SECTION
───────────────────────────────────── */
.contact-panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2.25rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.form-control,
.form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: 7px;
  font-size: 0.87rem;
  padding: 0.62rem 0.9rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(101, 180, 70, 0.12);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.btn-submit {
  background: var(--brand-primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.78rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-heading);
  width: 100%;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.ci {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.ci-icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--brand-xlight);
  border: 1px solid var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 0.95rem;
}

.ci-lbl {
  font-size: 0.69rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ci-val {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-top: 0.12rem;
}

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer {
  background: var(--text-primary);
  padding: 3.75rem 0 2rem;
}

.f-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.f-brand span {
  color: var(--brand-primary);
}

.f-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.36);
  line-height: 1.65;
  max-width: 230px;
}

.f-head {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.f-link {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}

.f-link:hover {
  color: var(--brand-primary);
}

.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.5rem;
  margin-top: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.f-copy {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.26);
}

.socials {
  display: flex;
  gap: 0.5rem;
}

.soc {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 0.82rem;
  transition: all 0.2s;
}

.soc:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
}

/* ─────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────
   SUCCESS TOAST
───────────────────────────────────── */
.toast-wrap {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
}

#successToast {
  display: none;
  background: white;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--brand-primary);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-size: 0.87rem;
  color: var(--text-primary);
  font-weight: 500;
  min-width: 280px;
}

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 991px) {
  .hero-mockup { margin-top: 2.5rem; }
  #hero { padding: 100px 0 48px; }
}

@media (max-width: 767px) {
  .section-std { padding: 3.5rem 0; }
}
