:root {
  --pendo-green: #76b839;
  --pendo-green-bright: #dceb1f;
  --pendo-dark: #102714;
  --pendo-dark-2: #17361c;
  --pendo-text: #5f6f61;
  --pendo-text-soft: #617063;
  --pendo-bg: #f7faf6;
  --pendo-white: #ffffff;
  --pendo-radius: 18px;
  --pendo-radius-lg: 24px;
  --pendo-shadow: 0 18px 50px rgba(16, 39, 20, 0.08);
}

/* base */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--pendo-dark);
  background: #fff;
}

a {
  transition: all 0.25s ease;
}

img {
  max-width: 100%;
}

/* buttons */
.pendo-btn-primary {
  background: var(--pendo-green-bright);
  color: #102714;
  border: none;
  font-weight: 700;
  border-radius: 14px;
  min-height: 54px;
  padding: 12px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  box-shadow: 0 14px 32px rgba(118, 184, 57, 0.18);
}

.pendo-btn-primary:hover {
  color: #102714;
  transform: translateY(-2px);
}

.pendo-btn-outline-light {
  min-height: 54px;
  padding: 12px 26px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pendo-btn-outline-light:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
}

.pendo-btn-outline-white {
  min-height: 54px;
  padding: 12px 24px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pendo-btn-outline-white:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
}

/* nav */
.pendo-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 18px 0;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.pendo-nav .nav-link {
  color: #fff !important;
  font-weight: 600;
  margin-left: 14px;
}

.pendo-nav--solid {
  background: rgba(7, 102, 58, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 12px 0;
  backdrop-filter: blur(8px);
}

.pendo-logo {
  height: 70px;
  width: auto;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

/* =========================================
   GALLERY HERO
========================================= */
.pendo-page-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #08160d;
  padding: 170px 0 100px;
}

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

.pendo-page-hero-media {
  position: absolute;
  inset: 0;
  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 center / cover no-repeat;
  transform: scale(1.03);
  filter: brightness(1.05) saturate(1.05);
  z-index: 1;
}

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

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

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

/* GREEN GRAIN TEXTURE */
.pendo-page-hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;

  opacity: 0.28;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23grain)' fill='%2376b839'/%3E%3C/svg%3E");

  background-size: 200px 200px;

  mix-blend-mode: overlay;
}

.pendo-page-kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e0eadf;
}

.pendo-page-title {
  margin: 0 0 20px;
  max-width: 760px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.000121em;
  color: #ffffff;
  font-size: 50px;
}

.pendo-page-subtitle {
  max-width: 620px;
  margin: 0 0 32px;
  font-size: 1.04rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.pendo-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.pendo-page-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.72);
}

.pendo-page-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.pendo-page-breadcrumb a:hover {
  color: #d8eb1f;
}

.pendo-page-breadcrumb span {
  color: rgba(255, 255, 255, 0.72);
}

/* buttons */
.pendo-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: none;
  border-radius: 999px;
  background: #d8eb1f;
  color: #102714;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(216, 235, 31, 0.22);
  transition: all 0.3s ease;
}

.pendo-btn-primary:hover {
  transform: translateY(-2px);
  color: #102714;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(216, 235, 31, 0.28);
}

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

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

/* responsive */
@media (max-width: 1199.98px) {
  .pendo-page-hero {
    min-height: 610px;
    padding: 160px 0 90px;
  }
}

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

  .pendo-page-title {
    font-size: clamp(2.4rem, 8vw, 4rem);
  }

  .pendo-page-subtitle {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.75;
  }
}

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

  .pendo-page-hero-media {
    background-position: center center;
    transform: scale(1.05);
  }

  .pendo-page-kicker {
    margin-bottom: 14px;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
  }

  .pendo-page-title {
    margin-bottom: 16px;
    line-height: 0.98;
  }

  .pendo-page-subtitle {
    margin-bottom: 26px;
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .pendo-page-hero-actions {
    gap: 12px;
    margin-bottom: 24px;
  }

  .pendo-btn-primary,
  .pendo-btn-outline-light {
    min-height: 50px;
    padding: 0 22px;
    font-size: 0.92rem;
  }

  .pendo-page-breadcrumb {
    gap: 8px;
    font-size: 0.88rem;
  }
}

@media (max-width: 575.98px) {
  .pendo-page-hero {
    padding: 125px 0 68px;
  }

  .pendo-page-title br {
    display: none;
  }

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

  .pendo-btn-primary,
  .pendo-btn-outline-light {
    width: 100%;
  }
}

.pendo-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.pendo-page-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.pendo-page-breadcrumb a:hover {
  opacity: 0.8;
}

/* shared section text */
.pendo-section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pendo-green);
}

.pendo-section-kicker.light {
  color: rgba(255, 255, 255, 0.82);
}

.pendo-section-title {
  margin: 0 0 16px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--pendo-dark);
}

.pendo-section-title.centered {
  text-align: center;
}

.pendo-section-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--pendo-text);
}

.pendo-section-text.centered {
  text-align: center;
}

.pendo-section-text.narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* intro strip */
.pendo-gallery-intro-strip {
  padding: 85px 0 55px;
  background:
    radial-gradient(circle at top right, rgba(118, 184, 57, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf7 100%);
}

.pendo-gallery-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pendo-gallery-stat-card {
  height: 100%;
  padding: 24px 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(16, 39, 20, 0.06);
  box-shadow: 0 16px 40px rgba(16, 39, 20, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pendo-gallery-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(16, 39, 20, 0.10);
}

.pendo-gallery-stat-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(118, 184, 57, 0.10);
  color: var(--pendo-green);
  font-size: 1.1rem;
}

.pendo-gallery-stat-card h4 {
  margin: 0 0 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--pendo-dark);
}

.pendo-gallery-stat-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--pendo-text-soft);
}

/* gallery head */
.pendo-gallery-page {
  padding-top: 40px;
  padding-bottom: 90px;
  background:
    radial-gradient(circle at top left, rgba(118, 184, 57, 0.05), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7faf5 100%);
}

.pendo-gallery-head {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

.pendo-gallery-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pendo-green);
}

.pendo-gallery-title {
  margin: 0 0 14px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--pendo-dark);
}

.pendo-gallery-subtitle {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--pendo-text-soft);
}

/* filters */
.pendo-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 34px;
}

.pendo-filter-btn {
  border: 1px solid rgba(16, 39, 20, 0.10);
  background: #fff;
  color: var(--pendo-dark);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(16, 39, 20, 0.04);
}

.pendo-filter-btn:hover,
.pendo-filter-btn.active {
  background: var(--pendo-green-bright);
  border-color: var(--pendo-green-bright);
  color: var(--pendo-dark);
  transform: translateY(-1px);
}

/* masonry */
.pendo-masonry {
  column-count: 4;
  column-gap: 12px;
}

.pendo-gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  display: inline-block;
  width: 100%;
}

.pendo-gallery-item.hidden {
  display: none;
}

.pendo-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--pendo-radius);
  background: #dfe8dc;
  box-shadow: 0 14px 32px rgba(16, 39, 20, 0.07);
  isolation: isolate;
}

.pendo-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 18%, rgba(0, 0, 0, 0.42) 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.pendo-gallery-card img,
.pendo-gallery-card video {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
  background: #000;
}

.pendo-gallery-card:hover img,
.pendo-gallery-card:hover video {
  transform: scale(1.04);
}

.pendo-gallery-card:hover::after {
  opacity: 0.9;
}

.pendo-gallery-card.standard img {
  aspect-ratio: 4 / 5;
}

.pendo-gallery-card.landscape img,
.pendo-gallery-card.landscape video {
  aspect-ratio: 16 / 9;
}

.pendo-gallery-card.square img {
  aspect-ratio: 1 / 1;
}

.pendo-gallery-card.reel video {
  aspect-ratio: 9 / 16;
}

.pendo-gallery-card.tall img {
  aspect-ratio: 3 / 5;
}

.pendo-gallery-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.pendo-gallery-tag {
  display: inline-flex;
  align-items: center;
  max-width: 85%;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(220, 235, 31, 0.96);
  color: var(--pendo-dark);
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.pendo-gallery-play {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.20);
  color: #fff;
  backdrop-filter: blur(5px);
  font-size: 0.72rem;
  flex: 0 0 auto;
}

.pendo-gallery-empty {
  display: none;
  text-align: center;
  padding: 24px 0 0;
  color: var(--pendo-text);
  font-weight: 600;
}

/* story section */
.pendo-story-head {
  margin-bottom: 42px;
}

.pendo-gallery-story-section {
  padding: 25px 0 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf6 100%);
}

.pendo-story-card {
  height: 100%;
  padding: 34px 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(16, 39, 20, 0.06);
  box-shadow: 0 18px 50px rgba(16, 39, 20, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pendo-story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(16, 39, 20, 0.09);
}

.pendo-story-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(118, 184, 57, 0.12);
  color: var(--pendo-green);
  font-size: 1.2rem;
}

.pendo-story-card h4 {
  margin: 0 0 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--pendo-dark);
}

.pendo-story-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--pendo-text);
}

/* CTA */
.pendo-gallery-cta {
  padding: 0 0 100px;
  background: linear-gradient(180deg, #f7faf6 0%, #ffffff 100%);
}

.pendo-gallery-cta-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(16, 39, 20, 0.18);
}

.pendo-gallery-cta-image {
  background:
    url("../img/gallery/hass3.jpg") center center / cover no-repeat;
}

.pendo-gallery-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 28, 14, 0.38) 0%, rgba(10, 28, 14, 0.52) 100%),
    linear-gradient(90deg, rgba(10, 28, 14, 0.42) 0%, rgba(10, 28, 14, 0.18) 45%, rgba(10, 28, 14, 0.42) 100%);
  z-index: 1;
}

.pendo-gallery-cta-content {
  position: relative;
  z-index: 2;
  min-height: 460px;
  padding: 60px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pendo-gallery-cta-title {
  margin: 0 0 14px;
  max-width: 900px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
}

.pendo-gallery-cta-text {
  margin: 0 auto;
  max-width: 900px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
}

.pendo-gallery-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.pendo-cta-btn,
.pendo-cta-btn-outline {
  min-width: 180px;
  height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0;
}

.pendo-btn-outline-white {
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none !important;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.pendo-btn-outline-white:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .pendo-gallery-cta-card {
    min-height: 400px;
  }

  .pendo-gallery-cta-content {
    min-height: 400px;
    padding: 48px 28px;
  }
}

@media (max-width: 767.98px) {
  .pendo-gallery-cta {
    padding-bottom: 75px;
  }

  .pendo-gallery-cta-card {
    min-height: 360px;
    border-radius: 22px;
  }

  .pendo-gallery-cta-content {
    min-height: 360px;
    padding: 34px 22px;
  }

  .pendo-gallery-cta-title {
    font-size: clamp(1.55rem, 8vw, 2.3rem);
  }

  .pendo-gallery-cta-text {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .pendo-gallery-cta-actions {
    width: 100%;
    gap: 12px;
  }

  .pendo-cta-btn,
  .pendo-cta-btn-outline {
    width: 100%;
    min-width: 100%;
  }
}

.pendo-cta-btn,
.pendo-cta-btn-outline {
  min-width: 180px;
  height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-left: 10px;
  margin-top: 8px;
}

/* footer */
.footer-area {
  padding: 80px 0 55px;
  background: #102714;
  color: rgba(255, 255, 255, 0.8);
}

.footer-box {
  margin-bottom: 30px;
}

.footer-logo img {
  max-height: 70px;
}

.footer-box p,
.footer-box li,
.footer-box a {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  text-decoration: none;
}

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

.widget-title {
  margin-bottom: 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

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

.pendo-subscribe-form {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 14px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.pendo-subscribe-form input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 14px 16px;
  background: transparent;
  color: #fff;
}

.pendo-subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.pendo-subscribe-form button {
  width: 56px;
  border: 0;
  background: var(--pendo-green-bright);
  color: var(--pendo-dark);
  font-size: 1rem;
}

.footer-mini-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.copyright {
  padding: 18px 0;
  background: #0b1d0f;
}

.copyright p,
.copyright a {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.social-icons ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-icons li {
  display: inline-block;
  margin-left: 10px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* success popup */
.pendo-success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1200;
}

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

.pendo-success-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 22px;
  padding: 34px 28px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.pendo-success-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: #6c7b6d;
}

.pendo-success-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(118, 184, 57, 0.12);
  color: var(--pendo-green);
  font-size: 2rem;
}

.pendo-success-card h4 {
  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: var(--pendo-dark);
}

.pendo-success-card p {
  margin: 0;
  color: var(--pendo-text);
  line-height: 1.7;
}

/* responsive */
@media (max-width: 1199.98px) {
  .pendo-masonry {
    column-count: 3;
  }
}

@media (max-width: 991.98px) {
  .pendo-logo {
    height: 60px;
  }

  .pendo-page-hero {
    min-height: 560px;
    padding: 150px 0 85px;
  }

  .pendo-gallery-intro-strip {
    padding: 70px 0 40px;
  }

  .pendo-gallery-stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .pendo-masonry {
    column-count: 2;
    column-gap: 10px;
  }

  .pendo-gallery-item {
    margin-bottom: 10px;
  }

  .pendo-gallery-cta-card {
    padding: 38px 28px;
  }

  .pendo-cta-btn,
  .pendo-cta-btn-outline {
    margin-left: 0;
    margin-right: 10px;
  }

  .copyright .text-right {
    text-align: left !important;
    margin-top: 10px;
  }

  .social-icons li {
    margin-left: 0;
    margin-right: 10px;
  }
}

@media (max-width: 767.98px) {
  .pendo-nav {
    padding: 12px 0;
  }

  .pendo-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }

  .pendo-page-hero {
    min-height: 520px;
    padding: 135px 0 70px;
  }

  .pendo-page-title {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
    line-height: 1.02;
  }

  .pendo-page-subtitle {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .pendo-page-hero-actions {
    gap: 12px;
  }

  .pendo-page-hero .pendo-btn-primary,
  .pendo-btn-outline-light {
    width: 100%;
  }

  .pendo-gallery-stat-grid {
    grid-template-columns: 1fr;
  }

  .pendo-gallery-page {
    padding-top: 28px;
    padding-bottom: 70px;
  }

  .pendo-gallery-subtitle {
    font-size: 0.97rem;
    line-height: 1.75;
  }

  .pendo-gallery-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .pendo-gallery-filters::-webkit-scrollbar {
    height: 5px;
  }

  .pendo-gallery-filters::-webkit-scrollbar-thumb {
    background: rgba(16, 39, 20, 0.16);
    border-radius: 999px;
  }

  .pendo-filter-btn {
    white-space: nowrap;
    flex: 0 0 auto;
    padding: 10px 16px;
    font-size: 0.88rem;
  }

  .pendo-masonry {
    column-count: 2;
    column-gap: 8px;
  }

  .pendo-gallery-item {
    margin-bottom: 8px;
  }

  .pendo-gallery-meta {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .pendo-gallery-tag {
    font-size: 0.62rem;
    padding: 6px 9px;
  }

  .pendo-gallery-play {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
  }

  .pendo-gallery-story-section {
    padding: 10px 0 70px;
  }

  .pendo-gallery-cta {
    padding-bottom: 75px;
  }

  .pendo-gallery-cta-card {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .pendo-cta-btn,
  .pendo-cta-btn-outline {
    width: 100%;
    min-width: 100%;
    margin-right: 0;
  }

  .footer-area {
    padding: 65px 0 40px;
  }
}

@media (max-width: 480px) {
  .pendo-logo {
    height: 52px;
  }

  .pendo-masonry {
    column-count: 2;
    column-gap: 7px;
  }

  .pendo-gallery-item {
    margin-bottom: 7px;
  }
}













/* =========================
   PREMIUM GALLERY
========================= */
.premium-gallery-section {
  padding: 90px 0 110px;
  background:
    radial-gradient(circle at top left, rgba(214, 223, 32, 0.08), transparent 25%),
    linear-gradient(180deg, #f9fcf7 0%, #ffffff 100%);
}

.premium-gallery-head {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}

.premium-gallery-toolbar {
  display: flex;
  justify-content: center;
  margin-bottom: 38px;
}

.premium-gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(7, 102, 58, 0.08);
  padding: 12px;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(10, 31, 18, 0.08);
}

.premium-tab-btn {
  border: 0;
  background: transparent;
  color: #1d2b21;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.premium-tab-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  margin-left: 8px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(7, 102, 58, 0.08);
  font-size: 12px;
}

.premium-tab-btn.active,
.premium-tab-btn:hover {
  background: #07663a;
  color: #fff;
  box-shadow: 0 12px 25px rgba(7, 102, 58, 0.18);
}

.premium-tab-btn.active span,
.premium-tab-btn:hover span {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.premium-featured-row {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1.4fr;
  gap: 24px;
  margin-bottom: 42px;
}

.premium-media-group {
  margin-bottom: 48px;
}

.premium-group-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.premium-group-head h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: #102117;
}

.premium-group-head p {
  margin: 0;
  color: #5f6f66;
  max-width: 620px;
}

.premium-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.premium-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.premium-media-card,
.premium-feature-card {
  position: relative;
  display: block;
  text-decoration: none !important;
  color: inherit;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 102, 58, 0.07);
  box-shadow: 0 16px 36px rgba(15, 23, 18, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.premium-media-card:hover,
.premium-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(11, 27, 18, 0.14);
  border-color: rgba(7, 102, 58, 0.18);
}

.premium-media-frame {
  position: relative;
  overflow: hidden;
  background: #eef3ed;
}

.ratio-4x5 {
  aspect-ratio: 4 / 5;
}

.ratio-16x9 {
  aspect-ratio: 16 / 9;
}

.premium-media-frame img,
.premium-media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.premium-media-card:hover .premium-media-frame img,
.premium-media-card:hover .premium-media-frame video,
.premium-feature-card:hover .premium-media-frame img,
.premium-feature-card:hover .premium-media-frame video {
  transform: scale(1.05);
}

.premium-card-info {
  padding: 16px 16px 18px;
}

.premium-card-info span {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #07663a;
  margin-bottom: 7px;
}

.premium-card-info h5 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 800;
  color: #122319;
}

.premium-media-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 100%);
}

.premium-media-overlay h4 {
  margin: 12px 0 6px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.premium-media-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.premium-badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(8px);
}

.premium-play.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.premium-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 8, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.28s ease;
  z-index: 9999;
}

.premium-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.premium-lightbox-inner {
  width: min(1100px, 100%);
  max-height: 88vh;
  border-radius: 22px;
  overflow: hidden;
  background: #0d1210;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.premium-lightbox-inner img,
.premium-lightbox-inner video {
  width: 100%;
  max-height: 88vh;
  display: block;
  object-fit: contain;
  background: #0d1210;
}

.premium-lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}

.premium-hidden {
  display: none !important;
}

#premiumGalleryEmpty {
  display: none;
  text-align: center;
  padding: 22px;
  border-radius: 16px;
  background: #f3f7f4;
  color: #5f6f66;
  font-weight: 600;
}

@media (max-width: 1199.98px) {
  .premium-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .premium-video-grid,
  .premium-featured-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-featured-row .premium-feature-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 767.98px) {
  .premium-gallery-tabs {
    border-radius: 24px;
  }

  .premium-photo-grid,
  .premium-video-grid,
  .premium-featured-row {
    grid-template-columns: 1fr;
  }

  .premium-featured-row .premium-feature-card:last-child {
    grid-column: auto;
  }

  .premium-group-head {
    align-items: flex-start;
  }
}










.ratio-4x5 {
  aspect-ratio: 4 / 5;
}

.premium-feature-video-card .premium-media-frame {
  aspect-ratio: 4 / 5;
}

.premium-feature-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.premium-feature-video-card .premium-media-frame {
  aspect-ratio: 9 / 12;
}

.premium-featured-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.premium-featured-row .premium-feature-card .premium-media-frame {
  aspect-ratio: 4 / 5;
}

.premium-feature-video-card .premium-media-overlay {
  min-height: 34%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}