/* =========================================================
   PENDO ORCHARDS — REGENERATED MAIN.CSS
   Cleaned, deduplicated, responsive, desktop-site safe
   ========================================================= */

/* =========================================================
   1) ROOT / TOKENS
   ========================================================= */

   /* =========================================================
   FORCE PROPER SCALING (DESKTOP MODE FIX)
   ========================================================= */

/* Base font scaling */
html {
  font-size: clamp(16px, 1.2vw, 18px);
}

/* Force readable scaling on mobile (even in desktop mode) */
@media screen and (max-width: 1024px) {
  html {
    font-size: 16px !important;
  }

  body {
    min-width: 0 !important;
  }
}

/* Extra fix for very small devices */
@media screen and (max-width: 768px) {
  html {
    font-size: 15px !important;
  }
}

:root {
  --pendo-green: #07663a;
  --pendo-green-dark: #044a29;
  --pendo-green-deep: #043a22;
  --pendo-lime: #d6df20;
  --pendo-lime-hover: #c7cf1a;

  --black: #0b0b0b;
  --white: #ffffff;
  --text: #101828;
  --muted: #5b6472;
  --border: #e6e9ef;
  --surface: #f7faf9;

  --pendo-ink: #0f172a;
  --pendo-muted: rgba(15, 23, 42, 0.72);
  --pendo-line: rgba(15, 23, 42, 0.1);
  --pendo-accent: #2f8f4e;
  --pendo-accent2: #1c6b3a;

  --shadow-sm: 0 8px 24px rgba(2, 6, 23, 0.08);
  --shadow: 0 14px 40px rgba(2, 6, 23, 0.1);
  --shadow-lg: 0 22px 70px rgba(2, 6, 23, 0.14);

  --radius-sm: 14px;
  --radius: 18px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --container-max: 1340px;

  --reveal-dur: 820ms;
  --reveal-ease: cubic-bezier(.16, 1, .3, 1);
}

/* =========================================================
   2) RESET / BASE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
}

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

a {
  transition: 0.25s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--pendo-ink);
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.15;
}

p,
li,
a,
button,
input,
textarea,
select {
  font-size: clamp(15px, 1rem, 18px);
}

p {
  margin-top: 0;
  line-height: 1.8;
  color: var(--muted);
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  max-width: var(--container-max);
}

.container,
.container-fluid {
  padding-left: clamp(14px, 2vw, 24px);
  padding-right: clamp(14px, 2vw, 24px);
}

.row {
  margin-left: -12px;
  margin-right: -12px;
}

.row > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
  padding: 12px;
}

@media (max-width: 767.98px) {
  .row > [class*="col-"] {
    margin-bottom: 20px;
  }

  .row > [class*="col-"]:last-child {
    margin-bottom: 0;
  }
}

/* =========================================================
   3) HELPERS
   ========================================================= */
.link-strong {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.link-strong:hover {
  color: var(--pendo-green);
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.78) !important;
}

.pendo-section {
  padding: clamp(56px, 7vw, 84px) 0;
}

.pendo-kicker,
.pendo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pendo-kicker {
  color: var(--pendo-accent2);
  background: rgba(47, 143, 78, 0.08);
  border: 1px solid rgba(47, 143, 78, 0.18);
}

.pendo-eyebrow {
  color: var(--pendo-green);
  background: rgba(214, 223, 32, 0.14);
}

.pendo-h2,
.pendo-section-title {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--pendo-ink);
}

.pendo-section-title-sm {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--pendo-ink);
}

.pendo-lead,
.pendo-sub,
.pendo-text,
.pendo-page-subtitle,
.pendo-contact-sub {
  color: var(--pendo-muted);
  line-height: 1.85;
}

.pendo-lead {
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  max-width: 70ch;
}

.pendo-muted,
.pendo-text-sm,
.pendo-faq-note {
  color: rgba(15, 23, 42, 0.65);
  font-size: 14px;
  line-height: 1.75;
}

.pendo-section-soft {
  background: #f6f8f3;
}

/* =========================================================
   4) BUTTONS
   ========================================================= */
.btn-primary {
  --bs-btn-bg: var(--pendo-green);
  --bs-btn-border-color: var(--pendo-green);
  --bs-btn-hover-bg: #055a31;
  --bs-btn-hover-border-color: #055a31;
  --bs-btn-active-bg: #044a29;
  --bs-btn-active-border-color: #044a29;
}

.btn-outline-primary {
  --bs-btn-color: var(--pendo-green);
  --bs-btn-border-color: var(--pendo-green);
  --bs-btn-hover-bg: var(--pendo-green);
  --bs-btn-hover-border-color: var(--pendo-green);
}

.btn-outline-secondary {
  --bs-btn-color: #4b5563;
  --bs-btn-border-color: #d1d5db;
  --bs-btn-hover-bg: #111827;
  --bs-btn-hover-border-color: #111827;
}

.btn-accent,
.pendo-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--pendo-lime);
  border-radius: 999px;
  background: var(--pendo-lime);
  color: #102714;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(214, 223, 32, 0.22);
  transition: all 0.3s ease;
}

.btn-accent:hover,
.pendo-btn-primary:hover {
  background: var(--pendo-lime-hover);
  border-color: var(--pendo-lime-hover);
  color: #102714;
  transform: translateY(-2px);
  text-decoration: none;
}

.pendo-btn-ghost,
.pendo-btn-outline,
.pendo-btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.pendo-btn-ghost,
.pendo-btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pendo-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.pendo-btn-ghost:hover,
.pendo-btn-outline:hover,
.pendo-btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* =========================================================
   5) TOPBAR
   ========================================================= */
.pendo-topbar {
  background: #044a2a;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  padding: 10px 0;
}

.pendo-topbar-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.pendo-topbar-link:hover {
  color: var(--pendo-lime);
}

.pendo-topbar-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  text-decoration: none;
}

.pendo-topbar-pill:hover {
  background: var(--pendo-lime);
  color: #111;
}

@media (max-width: 767.98px) {
  .pendo-topbar {
    padding: 8px 0;
    font-size: 12px;
  }

  .pendo-topbar .container,
  .pendo-topbar .row {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .pendo-topbar-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .pendo-topbar-pill {
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   6) NAVBAR
   ========================================================= */
.pendo-hero-wrap {
  position: relative;
}

.pendo-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  padding: 16px 0;
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}

.pendo-nav--solid {
  position: fixed;
  background: rgba(7, 102, 58, 0.95);
  backdrop-filter: blur(8px);
  padding: 8px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.pendo-logo {
  width: auto;
  height: auto;
  max-height: clamp(58px, 7vw, 95px);
  object-fit: contain;
  transition: max-height .25s ease;
}

.pendo-nav--solid .pendo-logo {
  max-height: clamp(52px, 6vw, 84px);
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
  font-size: 15px;
  padding: 0.7rem 0.95rem;
  white-space: nowrap;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--pendo-lime);
}

.navbar-toggler {
  padding: 8px 10px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

@media (max-width: 991.98px) {
  .pendo-nav {
    position: fixed;
    background: rgba(7, 102, 58, 0.96);
    backdrop-filter: blur(8px);
    padding: 12px 0;
  }

  .navbar-collapse {
    background: rgba(7, 102, 58, 0.98);
    margin-top: 12px;
    padding: 18px 16px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  }

  .navbar-collapse .nav-link {
    color: #fff !important;
    white-space: normal;
    padding: 10px 0;
  }

  .navbar-collapse .btn,
  .navbar-collapse .pendo-btn-primary,
  .navbar-collapse .pendo-btn-outline-light {
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }
}

/* =========================================================
   7) HOME HERO / VIDEO HERO
   ========================================================= */
.pendo-hero,
.pendo-hero-cinematic {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  background: #08160d;
}

.pendo-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: pendoHeroDrift 24s ease-in-out infinite;
}

.pendo-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 18, 12, 0.72) 0%, rgba(8, 18, 12, 0.36) 40%, rgba(8, 18, 12, 0.18) 68%, rgba(8, 18, 12, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.32) 100%);
}

.pendo-hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 22%, rgba(214, 223, 32, 0.1), transparent 18%),
    radial-gradient(circle at 20% 75%, rgba(7, 102, 58, 0.2), transparent 30%);
}

#pendoHeroText,
.pendo-hero-content-wrap,
.pendo-hero .container,
.pendo-hero .row {
  position: relative;
  z-index: 3;
  height: 100%;
}

.pendo-hero-content {
  width: 100%;
  max-width: 760px;
  padding: clamp(130px, 14vw, 160px) 0 clamp(76px, 8vw, 110px);
}

.pendo-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.pendo-hero-title {
    color: rgb(255, 255, 255);
    font-weight: 800;
    letter-spacing: -0.6px;
    font-size: 40px;
    line-height: 1.02;
    margin-bottom: 18px;
}

.pendo-hero-text {
  max-width: 62ch;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.85;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.18);
}

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

.pendo-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.78);
}

.pendo-hero-scroll-line {
  display: block;
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.88) 100%);
  animation: pendoScrollPulse 2s ease-in-out infinite;
}

.pendo-hero-scroll-text {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pendo-hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100svh;
}

.pendo-indicators li {
  background-color: rgba(255, 255, 255, 0.55);
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.pendo-indicators .active {
  background-color: var(--pendo-lime);
}

.pendo-control {
  width: 8%;
  opacity: 0.9;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.5));
}

@keyframes pendoScrollPulse {
  0% { transform: scaleY(0.65); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.65); opacity: 0.45; }
}

@keyframes pendoHeroDrift {
  0% { transform: scale(1.03); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1.03); }
}

@media (max-width: 991.98px) {
  .pendo-hero,
  .pendo-hero-cinematic,
  .pendo-hero-slide {
    min-height: 88svh;
    height: auto;
  }

  .pendo-hero-content {
    max-width: 100%;
    padding: 120px 0 78px;
  }

  .pendo-hero-title {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 4rem);
  }

  .pendo-hero-scroll {
    bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .pendo-hero,
  .pendo-hero-cinematic,
  .pendo-hero-slide {
    min-height: 82svh;
  }

  .pendo-hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 18, 12, 0.36) 0%, rgba(9, 18, 12, 0.62) 48%, rgba(9, 18, 12, 0.82) 100%);
  }

  .pendo-hero-content {
    padding: 108px 0 62px;
  }

  .pendo-hero-kicker {
    padding: 9px 14px;
    font-size: 0.72rem;
  }

  .pendo-hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .pendo-hero-text {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .pendo-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pendo-hero-actions .btn,
  .pendo-btn-primary,
  .pendo-btn-ghost,
  .pendo-btn-outline,
  .pendo-btn-outline-light {
    width: 100%;
    justify-content: center;
  }

  .pendo-hero-scroll,
  .pendo-control,
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
}

/* =========================================================
   8) ABOUT COLLAGE / STATS / LIST
   ========================================================= */
.pendo-badges,
.pendo-stats,
.pendo-services2-mini,
.pendo-var-actions,
.pendo-page-hero-actions,
.pendo-faq-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pendo-badge,
.pendo-mini-pill,
.pendo-market-pill2 {
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
}

.pendo-badge {
  border: 1px solid var(--pendo-line);
  background: #fff;
  padding: 8px 12px;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.78);
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.06);
}

.pendo-note {
  background: linear-gradient(180deg, rgba(47, 143, 78, 0.1), rgba(255, 255, 255, 0.75));
  border: 1px solid rgba(47, 143, 78, 0.18);
  padding: 14px 16px;
  border-radius: 16px;
  color: rgba(15, 23, 42, 0.78);
}

.pendo-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 0;
}

.pendo-list li {
  list-style: none;
}

.pendo-list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pendo-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--pendo-accent);
  box-shadow: 0 0 0 6px rgba(47, 143, 78, 0.12);
  margin-top: 6px;
}

.pendo-media-collage {
  position: relative;
  padding: 8px;
}

.pendo-media-main {
  overflow: hidden;
  border-radius: 10px;
}

.pendo-media-main img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 10px;
}

.pendo-media-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(320px, 70%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}

.pendo-media-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.pendo-media-card-cap {
  padding: 10px 12px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.78);
}

.pendo-media-glow {
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(circle at 30% 20%, rgba(47, 143, 78, 0.2), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(47, 143, 78, 0.14), transparent 55%);
  filter: blur(14px);
  z-index: -1;
}

.pendo-stat {
  flex: 1 1 160px;
  background: #fff;
  border: 1px solid var(--pendo-line);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.pendo-stat-num {
  font-weight: 900;
  font-size: 22px;
  color: var(--pendo-ink);
  line-height: 1;
}

.pendo-stat-label {
  margin-top: 6px;
  color: rgba(15, 23, 42, 0.7);
  font-size: 13px;
}

@media (max-width: 991.98px) {
  .pendo-media-main img {
    min-height: 300px;
  }
}

@media (max-width: 767.98px) {
  .pendo-media-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
}

/* =========================================================
   9) VISION / MISSION / WHY / SERVICES
   ========================================================= */
.pendo-vm2 {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.02), transparent);
}

.pendo-vm2-card,
.pendo-svc-card,
.pendo-feature2,
.pendo-services2-panel,
.pendo-step-card,
.pendo-team-card,
.pendo-finalcta-card,
.pendo-map-card,
.pendo-card--service,
.pendo-program-banner,
.pendo-cta,
.pendo-var-card,
.pendo-faq-item,
.pendo-testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--pendo-line);
  box-shadow: var(--shadow);
  height: 100%;
  padding: 8px;
}

.pendo-vm2-card {
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.pendo-vm2-card::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 20% 0%, rgba(47, 143, 78, 0.14), transparent 55%);
  filter: blur(10px);
}

.pendo-vm2-title,
.pendo-feature2-title,
.pendo-svc-title,
.pendo-svc-wide-title,
.pendo-var-name,
.pendo-team-name {
  font-weight: 900;
}

.pendo-vm2-text,
.pendo-feature2-text,
.pendo-svc-text,
.pendo-svc-wide-text,
.pendo-var-meta,
.pendo-team-desc,
.pendo-step-text {
  color: var(--pendo-muted);
  line-height: 1.8;
}

.pendo-services2,
.pendo-markets2 {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.pendo-services2-bg,
.pendo-markets2-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.03);
}

.pendo-services2-bg {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.5), rgba(2, 6, 23, 0.24)),
    url("../img/slide1.png") center/cover no-repeat;
}

.pendo-markets2-bg {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.48), rgba(2, 6, 23, 0.24)),
    url("../img/home8.png") center/cover no-repeat;
  filter: saturate(1.05);
}

.pendo-services2-panel,
.pendo-svc-card,
.pendo-svc-wide {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.pendo-services2-panel {
  padding: 22px;
}

.pendo-services2-photo {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pendo-services2-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.pendo-mini-pill,
.pendo-market-pill2 {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.pendo-svc-card {
  padding: 18px;
}

.pendo-svc-ico,
.pendo-card-ico {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.pendo-svc-wide,
.pendo-program-banner,
.pendo-cta {
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.pendo-why2-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pendo-why2-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.pendo-feature2 {
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pendo-feature2-ico,
.pendo-side-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(47, 143, 78, 0.1);
  border: 1px solid rgba(47, 143, 78, 0.18);
  color: var(--pendo-accent2);
  font-weight: 900;
}

@media (max-width: 767.98px) {
  .pendo-services2-panel,
  .pendo-svc-card,
  .pendo-svc-wide,
  .pendo-program-banner,
  .pendo-cta {
    padding: 18px;
  }

  .pendo-svc-wide,
  .pendo-program-banner,
  .pendo-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .pendo-cta a,
  .pendo-program-banner a {
    width: 100%;
    text-align: center;
  }

  .pendo-why2-media img {
    height: 280px;
  }

  .pendo-market-pill2 {
    width: 100%;
  }
}

/* =========================================================
   10) VARIETIES / CTA INLINE
   ========================================================= */
.pendo-var-card {
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.pendo-var-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pendo-var-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.pendo-var-body {
  padding: 16px;
}

.pendo-cta-inline {
  background: linear-gradient(90deg, rgba(47, 143, 78, 0.12), rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(47, 143, 78, 0.18);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.pendo-cta-inline-title {
  font-weight: 900;
}

.pendo-cta-inline-text {
  color: var(--pendo-muted);
}

@media (max-width: 767.98px) {
  .pendo-var-img {
    height: 220px;
  }

  .pendo-cta-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .pendo-cta-inline a {
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   11) VARIETY MODAL
   ========================================================= */
.pendo-variety-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.pendo-variety-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.pendo-variety-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 8, 0.62);
  backdrop-filter: blur(6px);
}

.pendo-variety-modal-dialog {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.26);
  z-index: 2;
}

.pendo-variety-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0c1a12;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.12);
  z-index: 4;
}

.pendo-variety-modal-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 560px;
}

.pendo-variety-modal-media {
  background: #eef5ec;
}

.pendo-variety-modal-img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.pendo-variety-modal-content {
  padding: 42px 36px 34px;
}

.pendo-variety-modal-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #76b839;
  text-transform: uppercase;
}

.pendo-variety-modal-title {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.02;
  font-weight: 800;
  color: #0d1b2a;
}

.pendo-variety-modal-summary,
.pendo-variety-modal-specs,
.pendo-variety-modal-availability,
.pendo-variety-modal-list {
  color: #4b5563;
  line-height: 1.8;
}

.pendo-variety-modal-label {
  margin-bottom: 10px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d1b2a;
}

.pendo-variety-modal-list {
  padding-left: 18px;
}

.pendo-variety-modal-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.pendo-modal-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .pendo-variety-modal-grid {
    grid-template-columns: 1fr;
  }

  .pendo-variety-modal-img {
    min-height: 300px;
    max-height: 360px;
  }

  .pendo-variety-modal-content {
    padding: 28px 22px 24px;
  }
}

@media (max-width: 575.98px) {
  .pendo-variety-modal {
    padding: 14px;
  }

  .pendo-variety-modal-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .pendo-variety-modal-actions {
    flex-direction: column;
  }

  .pendo-variety-modal-actions .btn {
    width: 100%;
  }
}

/* =========================================================
   12) TESTIMONIALS
   ========================================================= */
.pendo-testimonials {
  background: #fff;
}

.pendo-testi-card {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 143, 78, 0.1), transparent 55%),
    #fff;
}

.pendo-testi-media {
  height: 100%;
  min-height: 280px;
  background: #f3f6f5;
}

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

.pendo-testi-body {
  position: relative;
  padding: 34px 34px 26px;
  height: 100%;
}

.pendo-quote-mark {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 110px;
  line-height: 1;
  font-weight: 900;
  color: rgba(47, 143, 78, 0.14);
  pointer-events: none;
}

.pendo-testi-text {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(15, 23, 42, 0.72);
  margin: 0 0 18px;
}

.pendo-testi-name {
  font-weight: 900;
  color: var(--pendo-ink);
  font-size: 22px;
}

.pendo-testi-role {
  margin-top: 6px;
  font-weight: 700;
  color: var(--pendo-accent2);
}

.pendo-testi-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
}

.pendo-testi-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pendo-green);
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.18);
}

.pendo-testi-btn:hover {
  background: #055a31;
  transform: translateY(-2px);
}

.pendo-testi-indicators {
  position: static;
  margin: 18px 18px 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pendo-testi-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
}

.pendo-testi-indicators .active {
  background: var(--pendo-lime);
}

@media (max-width: 991.98px) {
  .pendo-testi-body {
    padding: 24px;
  }

  .pendo-quote-mark {
    font-size: 90px;
  }

  .pendo-testi-text {
    font-size: 16px;
  }
}

/* =========================================================
   13) PAGE HEROES / INNER PAGES
   ========================================================= */
.pendo-page-hero,
.pendo-contact-hero,
.pendo-about-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.pendo-page-hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  background: #08160d;
  padding: 170px 0 100px;
}

.pendo-page-hero .container,
.pendo-contact-hero .container,
.pendo-about-hero .container {
  position: relative;
  z-index: 3;
}

.pendo-page-hero-media,
.pendo-contact-hero-bg,
.pendo-about-hero .pendo-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: scale(1.03);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pendo-hero-gallery {
  background:
    linear-gradient(to right, rgba(6, 40, 18, 0.58) 0%, rgba(6, 40, 18, 0.34) 42%, rgba(6, 40, 18, 0.12) 72%, rgba(6, 40, 18, 0.18) 100%),
    url("../img/gallery.png") center/cover no-repeat;
}

.pendo-hero-about {
  background:
    linear-gradient(to right, rgba(6, 40, 18, 0.6) 0%, rgba(6, 40, 18, 0.36) 42%, rgba(6, 40, 18, 0.14) 72%, rgba(6, 40, 18, 0.18) 100%),
    url("../img/pageheros.jpg") center/cover no-repeat;
}

.pendo-hero-services {
  background:
    linear-gradient(to right, rgba(6, 40, 18, 0.6) 0%, rgba(6, 40, 18, 0.36) 42%, rgba(6, 40, 18, 0.14) 72%, rgba(6, 40, 18, 0.18) 100%),
    url("../img/pageheros.jpg") center/cover no-repeat;
}

.pendo-hero-contact {
  background:
    linear-gradient(to right, rgba(6, 40, 18, 0.62) 0%, rgba(6, 40, 18, 0.38) 42%, rgba(6, 40, 18, 0.16) 72%, rgba(6, 40, 18, 0.18) 100%),
    url("../img/pageheros.jpg") center/cover no-repeat;
}

.pendo-page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.pendo-page-hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 35%, rgba(118, 184, 57, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.pendo-page-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #dce9dd;
}

.pendo-page-title,
.pendo-contact-title {
  margin: 0 0 16px;
  max-width: 14ch;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.pendo-page-subtitle,
.pendo-contact-sub {
  max-width: 70ch;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
}

.pendo-page-breadcrumb,
.pendo-breadcrumb,
.pendo-about-hero .pendo-hero-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 14px;
}

.pendo-page-breadcrumb a,
.pendo-breadcrumb a,
.pendo-about-hero .pendo-hero-breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.pendo-page-breadcrumb a:hover,
.pendo-breadcrumb a:hover,
.pendo-about-hero .pendo-hero-breadcrumb a:hover {
  color: var(--pendo-lime);
}

.pendo-contact-hero {
  padding: 200px 0 100px;
  min-height: 450px;
}

.pendo-about-hero .pendo-hero-bg {
  background-image:
    linear-gradient(90deg, rgba(10, 30, 18, 0.88) 0%, rgba(10, 30, 18, 0.78) 40%, rgba(10, 30, 18, 0.45) 65%, rgba(10, 30, 18, 0.18) 82%, rgba(10, 30, 18, 0.08) 100%),
    url("../img/slide3.png");
  background-position: center right;
}

.pendo-about-hero .pendo-hero-title {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 14px 0 12px;
}

.pendo-about-hero .pendo-hero-text {
  color: rgba(255, 255, 255, 0.84);
  max-width: 62ch;
}

@media (max-width: 991.98px) {
  .pendo-page-hero {
    min-height: auto;
    padding: 150px 0 84px;
  }

  .pendo-contact-hero {
    padding: 130px 0 60px;
    min-height: auto;
  }

  .pendo-page-title,
  .pendo-contact-title,
  .pendo-about-hero .pendo-hero-title {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 4rem);
  }
}

@media (max-width: 767.98px) {
  .pendo-page-hero {
    padding: 128px 0 72px;
  }

  .pendo-contact-hero {
    padding: 118px 0 54px;
  }

  .pendo-page-hero-actions,
  .pendo-page-hero-actions a {
    width: 100%;
  }

  .pendo-page-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =========================================================
   14) ABOUT PAGE / MEDIA GRID / TEAM / STEPS
   ========================================================= */
.pendo-media-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 220px 220px;
}

.pendo-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.pendo-media-lg {
  grid-row: 1 / span 2;
}

.pendo-highlight {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.pendo-highlight-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}

.pendo-highlight-item h6 {
  margin: 0 0 4px;
  font-weight: 800;
}

.pendo-highlight-item p {
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
}

.pendo-step-card {
  overflow: hidden;
}

.pendo-step-media {
  height: 180px;
  overflow: hidden;
}

.pendo-step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.pendo-step-badge {
  padding: 14px 16px 0;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(0, 0, 0, 0.55);
}

.pendo-step-title {
  padding: 6px 16px 0;
  margin: 0;
  font-weight: 900;
}

.pendo-step-text {
  padding: 10px 16px 18px;
  margin: 0;
}

.pendo-team-photo {
  height: 360px;
  background: #f3f5f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pendo-team-photo img,
.pendo-team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pendo-team-body {
  padding: 16px 18px 18px;
}

.pendo-team-position,
.pendo-team-role {
  margin: 0 0 10px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
}

@media (max-width: 991.98px) {
  .pendo-media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 180px 180px;
  }

  .pendo-media-lg {
    grid-row: auto;
  }

  .pendo-team-photo {
    height: 320px;
  }
}

/* =========================================================
   15) FAQ
   ========================================================= */
.pendo-faq {
  position: relative;
  background: linear-gradient(180deg, #f7faf6 0%, #ffffff 100%);
  overflow: hidden;
}

.pendo-faq .row {
  row-gap: 40px;
}

.pendo-faq-image {
  overflow: hidden;
}

.pendo-faq-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
}

.pendo-faq-title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.08;
  font-weight: 800;
  color: #0f172a;
}

.pendo-faq-sub {
  margin: 0 0 28px;
  max-width: 680px;
  color: #5b6472;
  line-height: 1.8;
}

.pendo-faq-acc {
  display: grid;
  gap: 14px;
}

.pendo-faq-item {
  overflow: hidden;
}

.pendo-faq-item .accordion-header {
  margin: 0;
}

.pendo-faq-btn {
  position: relative;
  width: 100%;
  border: 0;
  outline: 0;
  background: #fff;
  color: #0f172a;
  text-align: left;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.55;
  padding: 18px 56px 18px 18px;
  cursor: pointer;
  box-shadow: none;
}

.pendo-faq-btn:hover,
.pendo-faq-btn:focus {
  background: #f9fcf8;
  color: #07663a;
}

.pendo-faq-btn::before,
.pendo-faq-btn::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #07663a;
  border-radius: 20px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.pendo-faq-btn::after {
  transform: translateY(-50%) rotate(90deg);
}

.pendo-faq-btn[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

.pendo-faq-body {
  padding: 0 18px 18px;
  font-size: 0.98rem;
  line-height: 1.9;
  color: rgba(15, 23, 42, 0.72);
  background: #fff;
}

@media (max-width: 991.98px) {
  .pendo-faq-image img {
    height: 300px;
  }
}

/* =========================================================
   16) PARTNERS MARQUEE
   ========================================================= */
.pendo-partners-marquee {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
}

.pendo-partners-track {
  display: flex;
  width: max-content;
  animation: pendoMarquee 25s linear infinite;
}

.pendo-partners-row {
  display: flex;
  align-items: center;
  gap: 150px;
  padding: 0 30px;
}

.pendo-partners-row img {
  height: 80px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.25s ease;
}

.pendo-partners-row img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-3px);
}

@keyframes pendoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 767.98px) {
  .pendo-partners-row {
    gap: 70px;
  }

  .pendo-partners-row img {
    height: 54px;
  }
}

/* =========================================================
   17) CONTACT / FORM / MAP
   ========================================================= */
.pendo-contact-side {
  background: radial-gradient(circle at 10% 0%, rgba(47, 143, 78, 0.1), transparent 60%), #fff;
}

.pendo-label {
  font-weight: 800;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.75);
  margin-bottom: 8px;
}

.pendo-input {
  width: 100%;
  border-radius: 14px !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  padding: 12px 12px !important;
  height: auto !important;
  box-shadow: none !important;
}

.pendo-input:focus {
  border-color: rgba(47, 143, 78, 0.4) !important;
  box-shadow: 0 0 0 .2rem rgba(47, 143, 78, 0.14) !important;
}

.pendo-form-note {
  color: rgba(15, 23, 42, 0.62);
  font-weight: 600;
  font-size: 13px;
}

.pendo-side-title {
  font-weight: 900;
  color: var(--pendo-ink);
  margin-bottom: 14px;
}

.pendo-side-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
}

.pendo-side-label {
  font-weight: 900;
  color: rgba(15, 23, 42, 0.82);
  font-size: 14px;
}

.pendo-side-text {
  color: rgba(15, 23, 42, 0.65);
  margin-top: 3px;
}

.pendo-side-link {
  color: rgba(15, 23, 42, 0.78);
  font-weight: 700;
  text-decoration: none;
}

.pendo-side-link:hover {
  color: var(--pendo-accent2);
  text-decoration: none;
}

.pendo-side-divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.1);
  margin: 10px 0 16px;
}

.pendo-map {
  padding: 0 0 84px;
}

.pendo-map-card {
  overflow: hidden;
  background: #fff;
}

.pendo-map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 991.98px) {
  .pendo-map-card iframe {
    height: 320px;
  }
}

/* =========================================================
   18) SUCCESS POPUP
   ========================================================= */
.pendo-success-popup {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 14, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 9999;
}

.pendo-success-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pendo-success-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 18px;
  padding: 34px 28px 28px;
  text-align: center;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s ease;
}

.pendo-success-popup.active .pendo-success-card {
  transform: translateY(0) scale(1);
}

.pendo-success-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #7a7a7a;
  cursor: pointer;
  padding: 0;
}

.pendo-success-icon {
  font-size: 58px;
  color: #2f8f4e;
  margin-bottom: 14px;
}

.pendo-success-card h4 {
  font-size: 28px;
  font-weight: 800;
  color: #101010;
  margin-bottom: 10px;
}

.pendo-success-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.72);
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .pendo-success-card {
    padding: 28px 20px 22px;
    border-radius: 14px;
  }

  .pendo-success-card h4 {
    font-size: 23px;
  }

  .pendo-success-icon {
    font-size: 48px;
  }
}

/* =========================================================
   19) FOOTER
   ========================================================= */
.footer-area {
  background: linear-gradient(180deg, #07663a 0%, #064f2d 55%, #043a22 100%) !important;
  position: relative;
  overflow: hidden;
  height: auto;
  padding-top: 70px;
  padding-bottom: 24px;
}

.footer-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 20% 10%, rgba(214, 223, 32, 0.1), transparent 60%),
    radial-gradient(700px 350px at 80% 30%, rgba(255, 255, 255, 0.06), transparent 55%),
    radial-gradient(900px 500px at 50% 120%, rgba(0, 0, 0, 0.35), transparent 60%);
  pointer-events: none;
}

.footer-area > .container {
  position: relative;
  z-index: 2;
}

.footer-logo {
  text-align: left;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 80px;
  width: auto;
}

.footer-box .widget-title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 16px;
  color: #fff;
}

.footer-box .widget-title::after {
  width: 28px !important;
  height: 2px !important;
  background: #d6df20 !important;
  opacity: 0.95;
}

.footer-box p,
.footer-box ul li {
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.9;
  font-size: 15px;
}

.footer-box ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-box ul li {
  margin-bottom: 12px !important;
}

.footer-box a {
  color: rgba(255, 255, 255, 0.88) !important;
  text-decoration: none !important;
}

.footer-box a:hover {
  color: #d6df20 !important;
}

.footer-box.pages ul li {
  position: relative;
  padding-left: 20px;
}

.footer-box.pages ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #d6df20 !important;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}

.footer-box.subscribe form {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  margin-top: 12px;
}

.footer-box.subscribe form input[type=email] {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(0, 0, 0, 0.18) !important;
  color: #fff !important;
  padding: 14px !important;
  border-top-left-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
  outline: none !important;
}

.footer-box.subscribe form input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.footer-box.subscribe form button {
  width: auto;
  min-width: 64px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-left: none !important;
  background: rgba(0, 0, 0, 0.22) !important;
  color: #d6df20 !important;
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}

.footer-box.subscribe form button:hover {
  background: #d6df20 !important;
  color: #043a22 !important;
}

.footer-mini-note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.copyright {
  background: #043a22 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.copyright p {
  color: rgba(255, 255, 255, 0.72) !important;
  padding: 18px 0 !important;
  font-size: 14px;
}

.copyright a {
  color: #d6df20 !important;
  font-weight: 700;
}

.copyright a:hover {
  color: #fff !important;
}

.social-icons ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.social-icons ul li a {
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #c7cf1a !important;
  font-size: 16px;
}

.social-icons ul li a:hover {
  background: #c7cf1a;
  color: #043a22 !important;
}

@media (max-width: 991.98px) {
  .social-icons ul {
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .footer-box.subscribe form {
    flex-direction: column;
    gap: 10px;
  }

  .footer-box.subscribe form input[type=email],
  .footer-box.subscribe form button {
    width: 100%;
    border-radius: 8px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.14) !important;
  }
}

/* =========================================================
   20) REVEAL ANIMATIONS
   ========================================================= */
.reveal,
.pendo-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity var(--reveal-dur) var(--reveal-ease),
    transform var(--reveal-dur) var(--reveal-ease);
  will-change: opacity, transform;
  transition-delay: var(--reveal-delay, 0ms);
}

.pendo-reveal--left {
  transform: translate3d(-22px, 0, 0);
}

.pendo-reveal--right {
  transform: translate3d(22px, 0, 0);
}

.pendo-reveal--down {
  transform: translate3d(0, -22px, 0);
}

.reveal.is-visible,
.pendo-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* =========================================================
   21) FLOATING BUTTONS
   ========================================================= */
@keyframes pulseLinkedIn {
  0% { box-shadow: 0 0 0 0 rgba(0, 119, 181, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(0, 119, 181, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 119, 181, 0); }
}

@keyframes pulseWeChat {
  0% { box-shadow: 0 0 0 0 rgba(7, 193, 96, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(7, 193, 96, 0); }
  100% { box-shadow: 0 0 0 0 rgba(7, 193, 96, 0); }
}

.floating-linkedin,
.floating-wechat {
  position: fixed;
  right: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: #fff;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease;
}

.floating-linkedin {
  bottom: 20px;
  background: #0077b5;
  animation: pulseLinkedIn 2.5s infinite;
}

.floating-wechat {
  bottom: 86px;
  background: #07C160;
  animation: pulseWeChat 2.5s infinite;
}

.floating-linkedin:hover,
.floating-wechat:hover {
  transform: translateY(-4px) scale(1.04);
}

@media (max-width: 768px) {
  .floating-linkedin,
  .floating-wechat {
    right: 14px;
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .floating-linkedin {
    bottom: 16px;
  }

  .floating-wechat {
    bottom: 72px;
  }
}

/* =========================================================
   22) DESKTOP-SITE MODE FIXES ON MOBILE
   ========================================================= */
@media screen and (max-width: 1024px) {
  html {
    font-size: clamp(15px, 1.55vw, 17px);
  }

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 100%;
  }

  .pendo-hero-title,
  .pendo-page-title,
  .pendo-contact-title,
  .pendo-about-hero .pendo-hero-title {
    max-width: 100%;
    word-break: break-word;
  }

  .navbar-brand,
  .navbar-nav,
  .pendo-hero-content,
  .pendo-page-hero .container,
  .pendo-contact-hero .container {
    min-width: 0;
  }
}

/* =========================================================
   23) REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after,
  .pendo-hero-video,
  .pendo-hero-scroll-line,
  .pendo-partners-track,
  .floating-linkedin,
  .floating-wechat {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .pendo-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}