*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #060c0c;
  --accent: #B7F66E;
  --btn-bg: #021717;
  --text-white: #ffffff;
  --card-bg: #242423;
  --card-border: #1a2c2c;
  --nav-bg: #080808;
}

html, body {
  width: 100%;
  height: 100%;
  background: #000000;
  font-family: 'Host Grotesk', sans-serif;
  color: var(--text-white);
  overflow: visible;
}

/* ────── HEADER ────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  height: 107px;
  transition: transform 0.4s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img { width: auto; }
.logo-icon { width: 34px; height: 34px; }

.logo-name {
  font-size: 21px;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: -0.3px;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8.26px;
  padding: 10px 14px;
  height: 77px;
}

.nav-pill a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  padding: 9px 20px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-pill a:hover { color: #fff; }

.btn-partner {
  background: var(--btn-bg) !important;
  color: var(--accent) !important;
  font-family: 'Host Grotesk', sans-serif !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 116% !important;
  border-radius: 9px !important;
  padding: 14px 20px !important;
  border: 1px solid rgba(183,246,110,0.12) !important;
  transition: background 0.25s, box-shadow 0.25s !important;
}

.btn-partner:hover {
  background: #032424 !important;
  box-shadow: 0 0 20px rgba(183,246,110,0.12) !important;
}

/* ────── HAMBURGER ─────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  z-index: 201;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.32s cubic-bezier(0.4,0,0.2,1);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ────── MOBILE DRAWER ─────────────────────────── */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 82vw);
  height: 100vh;
  background: #061212;
  border-left: 1px solid rgba(255,255,255,0.07);
  z-index: 200;
  padding: 88px 30px 40px;
  flex-direction: column;
  gap: 4px;
  transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
}

.mobile-drawer.open { right: 0; }

.mobile-drawer a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
  display: block;
}

.mobile-drawer a:hover { color: var(--accent); }

.btn-partner-mobile {
  margin-top: 22px !important;
  background: var(--btn-bg) !important;
  color: var(--accent) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  border-radius: 9px !important;
  padding: 14px 18px !important;
  text-align: center !important;
  border: 1px solid rgba(183,246,110,0.18) !important;
  border-bottom: 1px solid rgba(183,246,110,0.18) !important;
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 199;
  opacity: 0;
  transition: opacity 0.35s;
}
.drawer-overlay.open { opacity: 1; }

/* ────── SPLINE ─────────────────────────────────── */
.spline-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: auto;
}

spline-viewer {
  width: 100%;
  height: 100%;
  display: block;
}

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  background: transparent;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  padding-top: 107px;
  overflow: hidden;
}

.hero-text,
.hero-subtitle,
.cards-wrap { position: relative; z-index: 1; }

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(120px, 18vh, 200px) 0 clamp(40px, 6vh, 80px) 4.3vw;
  min-width: 0;
  height: 100%;
}

.hero-heading {
  font-size: clamp(28px, 3.9vw, 56px);
  font-weight: 400;
  line-height: 116%;
  letter-spacing: 0;
  text-transform: capitalize;
  color: var(--text-white);
}

.hero-heading em {
  font-family: 'Behind The Nineties', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: inherit;   /* inherits clamp(28px,3.9vw,56px) from parent — prevents em being bigger than heading on small screens */
  line-height: 116%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: var(--accent);
}

@font-face {
  font-family: 'Behind The Nineties';
  src: url('../fonts/Behind-The-Nineties-Md-It.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(11px, 1.04vw, 15px);
  font-weight: 400;
  line-height: 116%;
  color: rgba(255,255,255,0.50);
  max-width: 455px;
}

.cards-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 18px;
  padding: 0 57px clamp(40px, 6vh, 80px) 0;
  min-width: 0;
  height: 100%;
}

.card {
  width: 440px;
  max-width: 100%;
  height: auto;
  min-height: 120px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14.25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.22s;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(183,246,110,0.22);
  transform: translateY(-2px);
}

.card-body { flex: 1; min-width: 0; }

.card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 116%;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.85);
}

.card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.45);
}

.card-thumb {
  width: 151.6px;
  height: 101.2px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-thumb img { transform: scale(1.05); }

/* ════════════════════════════════════════════════
   HERO RESPONSIVE
════════════════════════════════════════════════ */
@media (min-width: 1440px) {
  .card { width: 440px; }
  .card-thumb { width: 151.6px; height: 101.2px; }
}

@media (max-width: 1380px) {
  .cards-wrap { padding-right: 36px; }
  .card { width: 410px; }
}

@media (max-width: 1280px) {
  .cards-wrap { padding-right: 28px; gap: 14px; }
  .card { width: 380px; }
  .card-thumb { width: 130px; height: 88px; }
}

@media (max-width: 1100px) {
  .card { width: 340px; }
  .card-title { font-size: 16px; }
  .card-desc { font-size: 12px; }
  .card-thumb { width: 110px; height: 74px; }
  .cards-wrap { padding-right: 20px; gap: 12px; }
  .hero-left { padding-left: 3.5vw; }
}

@media (max-width: 1024px) {
  .card { width: 300px; }
  .card-thumb { width: 95px; height: 65px; }
  .hero { padding-top: 90px; }
}

@media (max-width: 960px) {
  .nav-pill { display: none; }
  .hamburger { display: flex; }
  .mobile-drawer { display: flex; }

  header { padding: 0 22px; height: 70px; }

  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 70px;
    overflow: visible;
  }

  .hero-left {
    padding: 40px 22px 24px;
    justify-content: flex-start;
    gap: 20px;
  }

  .hero-heading { font-size: 40px; }
  .hero-subtitle { font-size: 14px; max-width: 100%; }

  .cards-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    padding: 0 22px 48px;
    gap: 14px;
  }

  .card {
    width: calc(50% - 7px);
    min-width: 240px;
    max-width: 360px;
    min-height: 110px;
  }

  .card-thumb { width: 80px; height: 80px; }
}

@media (max-width: 560px) {
  .hero-heading { font-size: 60px; }
  .cards-wrap { flex-direction: column; align-items: center; }
  .card { width: 100%; max-width: 380px; }
}

@media (max-width: 380px) {
  .hero-heading { font-size: 50px; }
  header { padding: 0 16px; }
}

/* ════════════════════════════════════════════════
   ECOSYSTEM SECTION
════════════════════════════════════════════════ */
.ecosystem-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 871px;
  border-radius: 32px;
  background: #A7FC00;
  position: relative;
  overflow: hidden;
  top: 30px;
}

.eco-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.eco-nav-pill {
  position: absolute;
  top: 28px;
  right: 40px;
  width: 281px;
  height: 77px;
  background: rgba(28, 28, 28, 0.28);
  backdrop-filter: blur(13.9px);
  -webkit-backdrop-filter: blur(13.9px);
  border-radius: 8.26px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  z-index: 10;
}

.eco-hamburger {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 4px;
}

.eco-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #021717;
  border-radius: 2px;
}

.eco-nav-btn {
  width: 155px;
  height: 53px;
  background: #021717;
  color: #A7FC00;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 116%;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  margin-left: auto;
  transition: opacity 0.2s;
}

.eco-nav-btn:hover { opacity: 0.85; }

.eco-content {
  position: absolute;
  top: 153px;
  left: 136px;
  width: 1197px;
  max-width: calc(100% - 136px - 40px);
  z-index: 2;
}

.eco-tagline {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 116%;
  letter-spacing: 0;
  color: #000000;
  width: 650px;
  max-width: 100%;
}

.eco-divider {
  width: 1193px;
  max-width: 100%;
  height: 0;
  border: none;
  border-top: 1px solid #000000;
  margin: 41px 0 0 0;
}

.eco-body {
  margin-top: 49px;
  width: 1197px;
  max-width: 100%;
}

.eco-body p {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 116%;
  letter-spacing: 0;
  color: #000000;
}

.eco-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 63px;
  width: 381px;
  height: 62px;
  border-radius: 72.63px;
  border: 0.59px solid #021717;
  background: #A7FC00;
  color: #021717;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 19.02px;
  font-weight: 400;
  line-height: 116%;
  text-decoration: none;
  padding: 0 0 0 37.2px;
  white-space: nowrap;
  transition: opacity 0.22s, transform 0.22s;
}

.eco-cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.eco-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.eco-arrow-icon { width: 11.65px; height: 11.27px; display: block; }

.eco-cta-btn:hover .eco-cta-arrow { transform: translateX(4px); }

.eco-img-left,
.eco-img-right {
  position: absolute;
  width: 738.88px;
  height: 539px;
  top: 360px;
  overflow: hidden;
}

.eco-img-left { left: 0; }
.eco-img-right { left: 699.93px; }

.eco-img-left img,
.eco-img-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

/* ── Ecosystem Responsive ── */
@media (max-width: 1440px) {
  .ecosystem-section { border-radius: 24px; }
  .eco-img-left,
  .eco-img-right {
    width: 51.3vw;
    height: auto;
    aspect-ratio: 738.88 / 539;
  }
  .eco-img-right { left: 48.6vw; }
}

@media (max-width: 1280px) {
  .eco-content { left: 80px; max-width: calc(100% - 80px - 40px); }
  .eco-body p { font-size: 34px; }
}

@media (max-width: 960px) {
  .ecosystem-section { height: auto; min-height: 500px; border-radius: 20px; }
  .eco-nav-pill { top: 20px; right: 20px; width: 240px; height: 64px; }
  .eco-nav-btn { width: 130px; height: 44px; font-size: 14px; }
  .eco-content {
   position: revert;
    top: auto; left: auto;
    width: 100%; max-width: 100%;
    padding: 32px 22px 0;
  }
  .eco-tagline { font-size: 18px; width: 100%; }
  .eco-divider { margin-top: 20px; }
  .eco-body { margin-top: 28px; }
  .eco-body p { font-size: 24px; }
  .eco-cta-btn {
    margin-top: 36px;
    width: 100%; max-width: 340px;
    font-size: 15px; height: 54px;
    padding: 0 0 0 24px;
  }
  .eco-img-left,
  .eco-img-right {
   position: revert-rule;
    top: auto; left: auto;
    width: 100%; height: 220px;
    aspect-ratio: unset;
  }
  .eco-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 32px;
  }
}

@media (max-width: 560px) {
  .eco-body p { font-size: 20px; }
  .eco-tagline { 
   font-size: 35px;
  margin-top: 60px;
  }
  .eco-cta-btn { font-size: 14px; padding: 0 0 0 20px; }
  .eco-nav-pill { width: 200px; height: 56px; }
  .eco-nav-btn { font-size: 13px; width: 120px; height: 40px; }
}

/* ════════════════════════════════════════════════
   SERVICES STACK
════════════════════════════════════════════════ */
.services-stack {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  /* top: -30px; */
  z-index: -1;
}

.service-slide {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  transform-origin: top center;
  will-change: transform, opacity;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0.116);
}

.service-slide:not(:last-child) {
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.service-slide .slide-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.service-slide .slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,12,12,0.52);
  z-index: 1;
}

.service-slide .slide-content {
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.service-slide .slide-heading {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 116%;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #ffffff;
  width: 499px;
  max-width: calc(100vw - 140px);
}

.service-slide .slide-heading em {
  font-family: 'Behind The Nineties', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: inherit;   /* inherits from parent slide-heading for correct scaling */
  line-height: 116%;
  color: #B7F66E;
}

.slide-bottom {
  position: absolute;
  bottom: 52px;
  left: 70px; right: 57px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-slide .slide-subtitle {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: rgba(255,255,255,0.65);
  width: 455px;
  max-width: 50%;
  flex-shrink: 0;
}

.service-slide .slide-cta-btn {
  width: 381px;
  height: 62px;
  flex-shrink: 0;
  border-radius: 72.63px;
  border: 0.59px solid #B7F66E;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  padding: 0 28px 0 37px;
  gap: 0;
  text-decoration: none;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 19.02px;
  font-weight: 400;
  line-height: 116%;
  white-space: nowrap;
  color: #ffffff;
  transition: background 0.25s, transform 0.22s;
}

.slide-btn-text {
  background: linear-gradient(90deg, #ffffff, #B7F66E);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.slide-cta-arrow {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
}

.slide-arrow-icon { width: 45px; height: 11.27px; display: block; }

.service-slide .slide-cta-btn:hover {
  background: rgba(183,246,110,0.12);
  transform: translateY(-1px);
}

/* ── Services Responsive ── */
@media (max-width: 1280px) {
  .slide-bottom { right: 32px; }
  .service-slide .slide-cta-btn { width: 320px; }
}

@media (max-width: 960px) {
  .service-slide .slide-content { left: 28px; top: 42%; }
  .service-slide .slide-heading { font-size: 36px; width: calc(100vw - 56px); }
  .slide-bottom {
    left: 28px; right: 28px; bottom: 36px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .service-slide .slide-subtitle { max-width: 100%; width: 100%; }
  .service-slide .slide-cta-btn {
    width: 100%; font-size: 15px;
    height: 54px; padding: 0 0 0 24px;
  }
}

@media (max-width: 560px) {
  .service-slide .slide-heading { font-size: 50px; }
  .service-slide .slide-subtitle { font-size: 13px; }
  .service-slide .slide-cta-btn { font-size: 14px; padding: 0 0 0 20px; }
}

/* ════════════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════════ */
.problem-section {
  background: #F5FAF0;
  padding: 80px 85px 85px 85px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: visible;
}

/* ── Section Tag ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: 302px;
  height: 51px;
  background: #E5FFE5;
  border-radius: 7px;
  padding: 0 18px;
  flex-shrink: 0;
  align-self: flex-start;
}

.section-tag-dot {
  display: inline-block;
  width: 15px;
  height: 13px;
  background: #B7F66E;
  border-radius: 3px;
  flex-shrink: 0;
}

.section-tag-label {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 116%;
  color: #021717;
  white-space: nowrap;
}

/* ── Top Row ── */
.problem-top {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 170px;
}

.problem-heading-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.problem-heading {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 116%;
  letter-spacing: 0%;
  color: #021717;
  max-width: 793px;
}

.problem-accent { color: #2D8C6E; }

.problem-subtext {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 116%;
  color: #021717;
}

/* ── Bottom Block ── */
.problem-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  position: relative;
  overflow: visible;
}

.problem-changes-text {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 48px;
  line-height: 116%;
  text-align: right;
  width: 352px;
  margin-bottom: 0;
  padding-bottom: 100px;
  align-self: flex-end;
  position: relative;
  z-index: 2;
}

.problem-changes-text em {
  font-weight: 700;
  font-style: italic;
  color: #18C03D;
  display: block;
}

.problem-changes-text span {
  font-weight: 400;
  font-style: normal;
  color: #3D5050;
  display: block;
}

/* ── Green Card ── */
/* ── Green Card ── */
.problem-card {
  width: 100%;
  min-height: 400px;
  background: #B7F66E;
  border-radius: 24px;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: flex-end;
}

/* ✅ FIXED — GIF is full card width, phones overflow top naturally */
.problem-card-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 2;
  /* No right/max-width/transform — GIF khud full width lega */
}

/* Text — bottom-left */
.problem-card-body {
  position: relative;
  z-index: 3;
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 116%;
  color: #021717;
  max-width: 402px;
  padding: 0 0 54px 54px;
  align-self: flex-end;
}

/* ── Problem Responsive ── */
@media (max-width: 1280px) {
  .problem-section { padding: 60px 50px 60px 50px; }
  .problem-heading { font-size: 40px; }
  .problem-changes-text { font-size: 40px; }
  .problem-card { min-height: 400px; }
  .problem-card-img { width: 100%; left: 0; right: auto; }
}

@media (max-width: 960px) {
  .problem-section { padding: 48px 32px 0 32px; }
  .problem-top { 
    flex-direction: column; 
    gap: 32px;
    padding-bottom: 50px; 
  }
  .section-tag { width: auto; padding: 0 16px; }
  .problem-heading { font-size: 32px; }
  .problem-subtext { font-size: 18px; }
  .problem-changes-text 
  { font-size: 32px; 
    width: auto; 
    padding-bottom: 50px;
  }

  /* ── Stacked layout: GIF upar, text neeche ── */
  .problem-card {
    min-height: unset;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }
  .problem-card-img {
    position: relative;
    bottom: auto;
    left: auto;
    width: 70%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
  }
  .problem-card-body {
    position: relative;
    z-index: 3;
    padding: 24px 32px 32px 32px;
    max-width: 100%;
    font-size: 16px;
    align-self: unset;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .problem-section { padding: 40px 20px 0 20px; }
  .problem-heading { font-size: 26px; }
  .problem-subtext { font-size: 16px; }
  .problem-changes-text { font-size: 48px; }

  /* ── Stacked layout: GIF upar, text neeche ── */
  .problem-card {
    min-height: unset;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }
  .problem-card-img {
    position: relative;
    bottom: auto;
    left: auto;
    width: 65%;
    max-width: 260px;
    display: block;
    margin: 0 auto;
  }
  .problem-card-body {
    position: relative;
    z-index: 3;
    padding: 20px 20px 28px 20px;
    max-width: 100%;
    font-size: 14px;
    align-self: unset;
    text-align: left;
  }
}

/* ════════════════════════════════════════════════
   GROWTH ENGINE SECTION
════════════════════════════════════════════════ */
.growth-section {
  background: #021717;
  padding: 92px 83px 100px;
  width: 100%;
}

.growth-container {
  display: grid;
  grid-template-columns: 1fr 1.43fr;
  column-gap: clamp(48px, 6vw, 308px);
  align-items: start;
}

/* ── Section Tag (growth variant) ── */
.growth-tag {
  background: #A7FC00 !important;
  /* width: fit-content !important; */
  min-width: 0 !important;
  padding: 0 18px !important;
  margin-bottom: 32px;
}
.growth-tag .section-tag-dot {
  background: #ffffff !important;
}
.growth-tag .section-tag-label {
  color: #021717 !important;
}

/* ── Left Column ── */
.growth-left {
  display: flex;
  flex-direction: column;
}

.growth-heading {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 300;
  font-size: 48px;
  line-height: 116%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #ffffff;
}

.growth-heading em {
  font-family: 'Behind The Nineties', sans-serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0;
  color: #ffffff;
}

/* ── Right Column ── */
.growth-right {
  display: flex;
  flex-direction: column;
  gap: 50px;            /* Figma annotation: 50px gap between subtext & first card */
  padding-top: 83px;    /* Aligns subtext with heading: section-tag 51px + growth-tag margin-bottom 32px */
}

.growth-subtext {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 116%;
  color: rgba(255, 255, 255, 0.85);
  max-width: 451px;
}

/* ── Base Card ── */
.growth-card {
  width: 100%;
  height: 172px;
  border-radius: 14.25px;
  display: flex;
  align-items: center;
  padding: 19px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.3s ease, border-color 0.3s ease;
}

/* ── BOTH cards: dark by default ── */
.growth-card--green,
.growth-card--dark {
  background: #071e1e;
  border: 1px solid rgba(183, 246, 110, 0.1);
}

/* ── BOTH cards: hover = green ── */
.growth-card--green:hover,
.growth-card--dark:hover {
  background: #A7FC00;
  border-color: #A7FC00;
  transform: translateY(-2px);
}

/* ── Card photo ── */
.growth-card-img {
  width: 152px;
  height: 137px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.growth-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.growth-card:hover .growth-card-img img {
  transform: scale(1.04);
}

/* ── Card text ── */
.growth-card-content {
  flex: 1;
  min-width: 0;
  padding: 0 0 0 18px;
  align-self: flex-start;
}

.growth-card-title {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 116%;
  margin-bottom: 10px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.growth-card--green:hover .growth-card-title,
.growth-card--dark:hover .growth-card-title {
  color: #101010;
}

.growth-card-desc {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 127%;
  color: rgba(255, 255, 255, 0.70);
  transition: color 0.3s ease;
}

.growth-card--green:hover .growth-card-desc,
.growth-card--dark:hover .growth-card-desc {
  color: rgba(16, 16, 16, 0.82);
}

/* ── Arrow button ── */
.growth-card-arrow {
  position: absolute;
  bottom: 19px;
  right: 37px;
  width: 28px;
  height: 27px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #B7F66E;
  transition: transform 0.2s ease, background 0.3s ease;
}

.growth-card:hover .growth-card-arrow {
  transform: translate(2px, -2px);
}

.growth-card--green:hover .growth-card-arrow,
.growth-card--dark:hover .growth-card-arrow {
  background: #000000;
}

.growth-card-arrow img {
  width: 11.65px;
  height: 11.27px;
  display: block;
  /* transform: rotate(-45deg); */
  filter: invert(1) brightness(0);
  transition: filter 0.3s ease;
}

.growth-card--green:hover .growth-card-arrow img,
.growth-card--dark:hover .growth-card-arrow img {
  filter: none;
}

/* ══ GROWTH RESPONSIVE ══════════════════════════ */
@media (max-width: 1280px) {
  .growth-section   { padding: 80px 50px 90px; }
  .growth-heading   { font-size: 40px; }
  .growth-subtext   { font-size: 20px; }
  .growth-card      { height: 160px; }
  .growth-card-img  { width: 130px; height: 117px; }
  .growth-right     { padding-top: 71px; gap: 40px; } /* scale with smaller tag/margin at this bp */
}

@media (max-width: 1024px) {
  .growth-section   { padding: 72px 40px 80px; }
  .growth-container { column-gap: 40px; }
  .growth-heading   { font-size: 36px; }
  .growth-right     { padding-top: 71px; gap: 32px; }
}

@media (max-width: 960px) {
  .growth-section     { padding: 64px 32px 72px; }
  .growth-container   { grid-template-columns: 1fr; row-gap: 40px; }
  .growth-heading     { font-size: 36px; }
  .growth-subtext     { font-size: 18px; max-width: 100%; }
  .growth-right       { padding-top: 0; gap: 24px; } /* single-column: no offset needed */
  .growth-card        { height: auto; min-height: 150px; }
  .growth-card-img    { width: 130px; height: 115px; }
  .growth-card-arrow  { right: 16px; bottom: 16px; }
}

@media (max-width: 640px) {
  .growth-section      { padding: 48px 20px 60px; }
  .growth-heading      { font-size: 30px; }
  .growth-subtext      { font-size: 16px; }
  .growth-right        { gap: 16px; }
  .growth-card         { height: auto; min-height: auto; flex-direction: column; align-items: flex-start; padding: 16px; padding-bottom: 56px; }
  .growth-card-img     { width: 100%; height: 150px; }
  .growth-card-content { padding: 14px 0 0 0; }
  .growth-card-arrow   { right: 16px; bottom: 16px; }
}

@media (max-width: 400px) {
  .growth-section   { padding: 40px 16px 48px; }
  .growth-heading   { font-size: 26px; }
  .growth-tag       { margin-bottom: 24px; }
}

/* ════════════════════════════════════════════════
   INTRO VIDEO SECTION
════════════════════════════════════════════════ */
.intro-video-section {
  width: 100%;
  max-width: 1444px;
  margin: 0 auto;
  height: 812px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intro-vid{
background-color: #FFFFFF;
}

/* ── Responsive ── */
@media (max-width: 1440px) {
  .intro-video-section {
    height: auto;
    aspect-ratio: 1444 / 812;
    border-radius: 20px;
  }
}

@media (max-width: 960px) {
  .intro-video-section {
    border-radius: 16px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 560px) {
  .intro-video-section {
    border-radius: 12px;
    aspect-ratio: 16 / 9;
  }
}

/* contact css */
/* ════════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════════ */
.contact-section {
  width: 100%;
  background: #F1FFEF;
  padding: 80px 170px;
  color: #021616;
}

.contact-container {
  display: grid;
  grid-template-columns: 341px 1px 1fr;
  column-gap: 64px;
  align-items: start;
}

/* ── Divider ── */
.contact-divider {
  width: 1px;
  background: rgba(2, 23, 23, 0.26);
  align-self: stretch;
  min-height: 700px;
}

/* ══ LEFT COLUMN ══════════════════════════════ */

.contact-heading {
  font-size: 64px;
  line-height: 115.99%;
  margin-bottom: 48px;
  font-weight: 400;
}

.contact-heading-italic {
  font-family: 'Behind The Nineties', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 64px;
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: capitalize;
  background: linear-gradient(to right, #021616, #0F2814, #A7FC00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-heading-italic em {
  font-style: italic;
  color: #A7FC00;
  font-family: 'Behind The Nineties', serif;
}

.contact-heading-plain {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #021616;
}

/* Info Items */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.contact-info-label {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 22.87px;
  font-weight: 400;
  color: #025E73;
  margin-bottom: 4px;
}

.contact-info-text {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #025E73;
  line-height: 1.55;
}

/* Map Card */
.contact-map-card {
  display: block;
  width: 100%;
  max-width: 337px;
  margin-bottom: 28px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(44, 131, 24, 0.22);
  background: #eaf6e6;
  box-shadow: 0 2px 12px rgba(2, 22, 22, 0.07);
}

/* Iframe wrap */
.contact-map-iframe-wrap {
  width: 100%;
  height: 130px;
  overflow: hidden;
  position: relative;
}

.contact-map-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

/* Overlay — sits on top of iframe */
.contact-map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(241, 255, 239, 0.18) 0%,
    rgba(241, 255, 239, 0.06) 50%,
    rgba(241, 255, 239, 0.22) 100%
  );
}

/* Animated pin */
.contact-map-pin-wrap {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map-pin-dot {
  width: 14px;
  height: 14px;
  background: #021717;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 10px rgba(2, 22, 22, 0.35);
  position: relative;
  z-index: 2;
}

.contact-map-pin-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background: #A7FC00;
  border-radius: 50%;
}

.contact-map-pin-ring {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 2px solid rgba(167, 252, 0, 0.5);
  border-radius: 50%;
  animation: mapPingRing 2s ease-out infinite;
}

@keyframes mapPingRing {
  0%   { transform: scale(0.4); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Location pill label */
.contact-map-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 12px 5px 9px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(2, 22, 22, 0.12);
}

.contact-map-pill span {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #021616;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Footer row */
.contact-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #ffffff;
  border-top: 1px solid rgba(44, 131, 24, 0.12);
  text-decoration: none;
  transition: background 0.15s ease;
}

.contact-map-footer:hover {
  background: #f6fff4;
}

.contact-map-footer-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #025E73;
}

.contact-map-footer-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.18s ease;
}

.contact-map-footer:hover .contact-map-footer-arrow {
  transform: translate(2px, -2px);
}
/* ══ RIGHT COLUMN ══════════════════════════════ */

.contact-form-heading {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 41.68px;
  font-weight: 400;
  line-height: 115.99%;
  color: #021616;
  margin-bottom: 32px;
}

.contact-form-heading em {
  font-family: 'Behind The Nineties', serif;
  font-style: italic;
  font-weight: 500;
  color: #021616;
}

/* Tabs */
.contact-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  border-bottom: none;
}

.contact-tab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 19.86px;
  font-weight: 400;
  color: rgba(2, 94, 115, 0.46);
  padding: 0 0 10px 0;
  margin-right: 40px;
  position: relative;
  transition: color 0.2s;
}

.contact-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background 0.2s;
}

.contact-tab.active {
  color: #025E73;
}

.contact-tab.active::after {
  background: rgba(2, 94, 115, 0.40);
}

/* Form Fields */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.cf-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.76px;
  font-weight: 400;
  color: #696969;
  line-height: 21.56px;
}

.cf-input {
  background: none;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 24.31px;
  font-weight: 400;
  color: #000000;
  line-height: 38.53px;
  padding: 0;
  width: 100%;
}

.cf-input::placeholder {
  color: #00000027;
  opacity: 0.85;
}

.cf-line {
  width: 100%;
  height: 1px;
  background: #C7C7C7;
  margin-top: 4px;
}

/* Phone */
.cf-phone-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cf-flag {
  width: 25.18px;
  height: 25.18px;
  border-radius: 2.74px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.flag-stripe {
  flex: 1;
  display: block;
}
.flag-saffron { background: #FF7337; }
.flag-white   { background: #ffffff; }
.flag-green   { background: #18C03D; }

.cf-code {
  font-family: 'DM Sans', sans-serif;
  font-size: 24.31px;
  font-weight: 400;
  color: #000000;
  flex-shrink: 0;
}

.cf-input--phone {
  flex: 1;
}

/* Select Row */
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ════════════════════════════════════════════════
   CUSTOM DROPDOWN
════════════════════════════════════════════════ */

.cf-custom-select {
  position: relative;
  user-select: none;
}

/* Trigger row — mimics the old cf-input height/font */
.cf-custom-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
  line-height: 38.53px;
  min-height: 38.53px;
}

.cf-selected-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 24.31px;
  font-weight: 400;
  color: #000000;
  line-height: 38.53px;
}

.cf-selected-text.placeholder {
  color: rgba(0, 0, 0, 0.85);
}

/* Chevron — rotates when open */
.cf-chevron {
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}

.cf-chevron.rotated {
  transform: rotate(180deg);
}

/* Dropdown list */
.cf-dropdown-list {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  right: -16px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(2, 22, 22, 0.12), 0 2px 8px rgba(2, 22, 22, 0.06);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  z-index: 100;
  overflow: hidden;

  /* open animation */
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.cf-custom-select.open .cf-dropdown-list {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Individual option */
.cf-dropdown-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #021616;
  padding: 11px 20px;
  cursor: pointer;
  transition: background 0.14s ease, color 0.14s ease;
  position: relative;
}

.cf-dropdown-item:hover {
  background: #F1FFEF;
  color: #025E73;
}

.cf-dropdown-item.active {
  color: #025E73;
  font-weight: 500;
}

.cf-dropdown-item.active::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #A7FC00;
}

/* Separator between items (subtle) */
.cf-dropdown-item + .cf-dropdown-item {
  border-top: 1px solid rgba(2, 23, 23, 0.05);
}

/* Submit */
.cf-submit {
  width: 190px;
  height: 53px;
  background: #021717;
  border: none;
  border-radius: 52px;
  color: #ffffff;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}

.cf-submit:hover {
  background: #04302f;
  transform: translateY(-1px);
}

/* ══ RESPONSIVE ══════════════════════════════════ */

@media (max-width: 1280px) {
  .contact-section {
    padding: 72px 80px;
  }
  .contact-container {
    grid-template-columns: 300px 1px 1fr;
    column-gap: 48px;
  }
  .contact-heading { font-size: 52px; }
}

@media (max-width: 1024px) {
  .contact-section {
    padding: 64px 50px;
  }
  .contact-container {
    grid-template-columns: 280px 1px 1fr;
    column-gap: 40px;
  }
  .contact-heading { font-size: 46px; }
  .contact-form-heading { font-size: 34px; }
  .contact-tab { font-size: 17px; }
  .cf-input, .cf-selected-text, .cf-code { font-size: 20px; }
}

@media (max-width: 860px) {
  .contact-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 48px;
  }
  .contact-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
  }
  .contact-map { max-width: 100%; }
  .contact-heading { font-size: 48px; }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 48px 24px;
  }
  .contact-heading { font-size: 38px; }
  .contact-form-heading { font-size: 28px; }
  .cf-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-tab { font-size: 15px; margin-right: 24px; }
  .cf-input, .cf-selected-text, .cf-code { font-size: 18px; }
  .cf-label { font-size: 13px; }
  .cf-dropdown-list { left: 0; right: 0; }
}

@media (max-width: 400px) {
  .contact-section { padding: 40px 16px; }
  .contact-heading { font-size: 32px; }
  .contact-form-heading { font-size: 24px; }
  .cf-submit { width: 100%; }
}

/* slider */
/* ══════════════════════════════════════════════════════
   EVENTS SECTION
   Paste this block at the bottom of pineverse.css
══════════════════════════════════════════════════════ */

/* ── Section shell ── */
/* ══════════════════════════════════════════════════════
   EVENTS SECTION  —  Figma-accurate v2
══════════════════════════════════════════════════════ */

.events-section {
  padding: 90px 0 100px;
  /* Figma bg: same light mint/cream as card top (#F3FFF8) */
  background: #F3FFF8;
  overflow: hidden;
}

/* ── Heading ── */
.events-heading-wrap {
  text-align: center;
  padding: 0 clamp(24px, 5vw, 110px);
  margin-bottom: 52px;
}

.events-heading {
  /* Figma: 698px wide out of 1567px frame — force 2-line wrap */
  display: inline-block;
  max-width: 720px;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.16;
  font-weight: 300;
  text-transform: capitalize;
  text-align: center;
}

.events-heading-light {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 300;
  /* Figma gradient #3D443B → #025E73 */
  background: linear-gradient(180deg, #3D443B 0%, #025E73 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.events-heading-italic {
  font-family: 'Behind The Nineties', cursive;
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(180deg, #3D443B 0%, #025E73 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Slider outer — clips overflow ── */
.events-slider-outer {
  overflow: hidden;
  padding: 0 clamp(24px, 5vw, 64px);
  cursor: grab;
  user-select: none;
}

.events-slider-outer.is-dragging {
  cursor: grabbing;
}

/* ── Track — flex row, no wrap ── */
.events-track {
  display: flex;
  gap: 22px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: flex-start;
}

/* ── Individual card ── */
.event-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  box-sizing: border-box;
  /* Figma: top #F3FFF8 → bottom #A7FC00 (straight vertical) */
  background: linear-gradient(170deg, #F3FFF8 65%, #a7fc0069 100%);
  border-radius: 17.69px;
  /* Figma: image top:37px, left:45px */
  padding: 37px 45px 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.08);
}

/* ── Card image ── */
.event-card-img-wrap {
  width: 100%;
  /* Figma image: 396.64 × 264.46 ≈ 3:2 */
  aspect-ratio: 3 / 2;
  border-radius: 17.69px;
  overflow: hidden;
  margin-bottom: 26px;
  flex-shrink: 0;
}

.event-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.event-card:hover .event-card-img {
  transform: scale(1.04);
}

/* ── Date ── */
.event-card-date {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 16.08px;
  font-weight: 400;
  line-height: 1.63;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1E1E1E;
  margin: 0 0 10px;
}

/* ── Title ── */
.event-card-title {
  font-family: 'Host Grotesk', sans-serif;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.63;
  color: #1E1E1E;
  margin: 0;
}

/* ── Nav arrows ── */
.events-nav {
  display: flex;
  gap: 12px;
  padding: 32px clamp(24px, 5vw, 64px) 0;
}

.events-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 94, 73, 0.35);
  background: transparent;
  color: #025E73;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  flex-shrink: 0;
}

.events-nav-btn:hover {
  background: #025E73;
  border-color: #025E73;
  color: #fff;
}

.events-nav-btn:disabled {
  opacity: 0.28;
  pointer-events: none;
}

/* ══ RESPONSIVE ═══════════════════════════════════════ */

/* Tablet ≤1024px */
@media (max-width: 1024px) {
  .events-slider-outer {
    padding-left: clamp(24px, 4vw, 48px);
    padding-right: clamp(24px, 4vw, 48px);
  }
  .events-nav {
    padding-left: clamp(24px, 4vw, 48px);
    padding-top: 28px;
  }
  .event-card {
    padding: 28px 32px 34px;
  }
}

/* Tablet ≤900px: 2 cards */
@media (max-width: 900px) {
  .event-card {
    flex: 0 0 calc((100% - 22px) / 2);
  }
  .events-heading-wrap {
    margin-bottom: 40px;
  }
}

/* Mobile ≤580px: 1 card + next peek */
@media (max-width: 580px) {
  .events-section {
    padding: 60px 0 72px;
  }

  .events-heading-wrap {
    padding: 0 20px;
    margin-bottom: 32px;
  }

  .events-heading {
    max-width: 100%;
  }

  .events-slider-outer {
    padding-left: 20px;
    padding-right: 0;
  }

  .events-track {
    gap: 16px;
  }

  .event-card {
    flex: 0 0 calc(100vw - 20px - 44px);
    padding: 22px 20px 26px;
  }

  .event-card-img-wrap {
    margin-bottom: 18px;
  }

  .event-card-date {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .event-card-title {
    font-size: 16px;
  }

  .events-nav {
    padding-left: 20px;
    padding-top: 24px;
  }
}
/* ══════════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════════ */

.faq-section {
  background: #F3FFF8;
  padding: clamp(60px, 7vw, 100px) clamp(24px, 5vw, 80px);
}

/* ── Pill — Figma: border only, dark text, NO fill ── */
.faq-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: 34.25px;
  border: 1.14px solid #1E1E1E;
  background: transparent;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 18.27px;
  font-weight: 600;
  line-height: 1.19;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #1E1E1E;
  margin-bottom: 32px;
  width: 253px;
}

/* ── Heading — Figma: 55.5px, weight 400, single line ── */
.faq-heading {
  font-family: 'Host Grotesk', sans-serif;
  font-size: clamp(28px, 3.8vw, 55.5px);
  font-weight: 400;
  line-height: 1.62;
  color: #414141;
  margin: 0 0 clamp(32px, 4vw, 48px);
  white-space: nowrap;        /* prevent orphan word-wrap on desktop */
}

@media (max-width: 700px) {
  .faq-heading { white-space: normal; }
}

/* ── List ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Single item ── */
.faq-item {
  background: #F1F1F1;
  border-radius: 22.55px;
  overflow: hidden;
  transition: background 0.35s ease;
}

.faq-item.is-open {
  background: #9EFD38;
}

/* ── Trigger ── */
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 22px clamp(20px, 2.5vw, 36px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-trigger span {
  font-family: 'Host Grotesk', sans-serif;
  font-size: clamp(16px, 2.15vw, 31.22px);
  font-weight: 400;
  line-height: 1.62;
  color: #414141;
}

/* ── Icon — raw SVG image, NO circle wrap ──
   Figma: closed = 0° (scroll-up icon as-is)
          open   = 90° rotated                ── */
.faq-icon {
  width: 40.76px;
  height: 40.76px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(0deg);
}

.faq-item.is-open .faq-icon {
  transform: rotate(90deg);
}

/* ── Body — smooth CSS grid animation ── */
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding-bottom 0.35s ease;
  padding-bottom: 0;
}

.faq-body-inner {
  overflow: hidden;
  padding: 0 clamp(20px, 2.5vw, 36px);
}

.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
  padding-bottom: 26px;
}

.faq-body p {
  font-family: 'Host Grotesk', sans-serif;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: #2a2a2a;
  margin: 0;
  padding-top: 6px;
}

/* ── Responsive ── */
@media (max-width: 580px) {
  .faq-pill { font-size: 14px; padding: 10px 22px; }
  .faq-trigger { padding: 18px; }
  .faq-icon { width: 32px; height: 32px; }
}
 
 
/* ══════════════════════════════════════════════════════
   SITE FOOTER
══════════════════════════════════════════════════════ */
 
.site-footer {
  background: #10B981;
  padding: clamp(28px, 3vw, 40.65px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48.79px);
}
 
/* ── White card ── */
.footer-card {
  background: #fff;
  border-radius: 16.26px;
  padding: clamp(24px, 3vw, 32.52px) clamp(24px, 3vw, 40.65px);
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 97.57px);
  overflow: hidden;
}
 
/* ── Top row ── */
.footer-card-top {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2vw, 16.26px);
  flex-wrap: wrap;
}
 
/* Logo column */
.footer-logo-col {
  flex: 0 0 auto;
  width: clamp(160px, 22vw, 280px);
}
 
.footer-logo {
  height: 60px;
  width: auto;
  display: block;
}
 
/* Nav columns wrapper */
.footer-nav-cols {
  flex: 1 1 0;
  display: flex;
  gap: clamp(16px, 2vw, 16.26px);
  flex-wrap: wrap;
}
 
.footer-nav-col {
  flex: 1 1 160px;
  min-width: 140px;
}
 
.footer-nav-label {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 10.16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1B1819;
  opacity: 0.6;
  margin: 0 0 24.39px;
}
 
.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
 
.footer-nav-list li a {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 16.26px;
  font-weight: 400;
  line-height: 1.4;
  color: #1B1819;
  text-decoration: none;
  transition: opacity 0.2s;
}
 
.footer-nav-list li a:hover { opacity: 0.65; }
 
/* CTA column */
.footer-cta-col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16.26px;
}
 
.footer-cta-btn {
  display: inline-block;
  background: #1B1819;
  color: #fff;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 14.23px;
  font-weight: 600;
  line-height: 1.4;
  padding: 8.13px 16.26px;
  border-radius: 8.13px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
 
.footer-cta-btn:hover { opacity: 0.82; }
 
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
 
.footer-contact span {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 12.20px;
  font-weight: 600;
  line-height: 1.3;
  color: #1B1819;
}
 
/* ── Bottom row (social + address) ── */
.footer-card-bottom {
  display: flex;
  align-items: center;
  gap: 16.26px;
  flex-wrap: wrap;
}
 
.footer-social {
  display: flex;
  align-items: center;
  gap: 8.13px;
}
 
.footer-social-btn {
  width: 40.65px;
  height: 40.65px;
  background: #1B1819;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
 
.footer-social-btn:hover { opacity: 0.75; }
 
.footer-address {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 12.20px;
  font-weight: 600;
  line-height: 1.3;
  color: #1B1819;
  font-style: normal;
  max-width: 320px;
}
 
/* ── Bottom strip ── */
.footer-bottom-strip {
  display: flex;
  align-items: flex-end;
  gap: clamp(24px, 3vw, 16.26px);
  flex-wrap: wrap;
}
 
.footer-cta-heading {
  flex: 1 1 0;
  font-family: 'Host Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 40.65px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  min-width: 240px;
}
 
.footer-form-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8.13px;
  padding-bottom: 4.07px;
  min-width: 260px;
}
 
.footer-form-label {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 14.23px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  margin: 0;
}
 
/* Email field */
.footer-email-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8.13px 24.39px 8.13px 16.26px;
  border-radius: 12.20px;
  border: 1.02px solid rgba(255, 255, 255, 0.60);
  gap: 12px;
}
 
.footer-email-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
 
.footer-email-hint {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 10.16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.4;
}
 
.footer-email-input {
  background: none;
  border: none;
  outline: none;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 16.26px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  width: 100%;
}
 
.footer-email-input::placeholder { color: rgba(255,255,255,0.45); }
 
.footer-email-submit {
  background: none;
  border: none;
  border-radius: 4px;
  width: 36px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
  padding: 0;
}
 
.footer-email-submit:hover { background: rgba(255,255,255,0.15); }
 
/* ── Copyright ── */
.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
 
.footer-copyright span,
.footer-copyright a {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 10.16px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
}
 
.footer-copyright a:hover { text-decoration: underline; }
 
/* ══ FOOTER RESPONSIVE ════════════════════════════════ */
 
@media (max-width: 900px) {
  .footer-card-top {
    flex-direction: column;
  }
  .footer-logo-col { width: 100%; }
  .footer-cta-col {
    align-items: flex-start;
    width: 100%;
  }
  .footer-bottom-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
 
@media (max-width: 580px) {
  .site-footer {
    padding: 24px 18px;
    gap: 32px;
  }
  .footer-card {
    padding: 22px 18px;
    gap: 40px;
  }
  .footer-nav-cols { gap: 24px; }
  .footer-email-field { flex-wrap: wrap; }
  .footer-cta-heading { font-size: 26px; }
}

/* ═══════════════════════════════════════════
   CAPTCHA FIELD — Pineverse Contact Form
   Paste at the bottom of pineverse.css
══════════════════════════════════════════ */

/* ── Outer wrapper ── */
.cf-captcha-field {
  margin-top   : 14px;
}

/* ── Section label ── */
.cf-captcha-label {
  display       : flex;
  align-items   : center;
  gap           : 6px;
  font-size     : 11px;
  font-weight   : 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color         : #888;
  margin-bottom : 10px;
}

.cf-captcha-label svg {
  width  : 13px;
  height : 13px;
  opacity: 0.6;
}

/* ── Card wrapper ── */
.cf-captcha-card {
  display       : flex;
  flex-direction: column;
  gap           : 10px;
  background    : #F8F8F6;
  border        : 1.5px solid #E4E4DF;
  border-radius : 12px;
  padding       : 14px 16px;
}

/* ── Image row ── */
.cf-captcha-wrap {
  display    : flex;
  align-items: center;
  gap        : 12px;
}

/* ── CAPTCHA image ── */
.cf-captcha-img {
  display      : block;
  width        : 200px;          /* bigger display */
  height       : 66px;
  border       : 1.5px solid #D2D2CC;
  border-radius: 8px;
  object-fit   : cover;
  background   : #EFEFEC;
  user-select  : none;
  flex-shrink  : 0;
  transition   : opacity 0.3s ease, border-color 0.2s;
}

.cf-captcha-img:hover {
  border-color: #ABABAA;
}

.cf-captcha-img.loading {
  opacity: 0.3;
}

/* ── Refresh button ── */
.cf-captcha-refresh {
  display        : flex;
  align-items    : center;
  justify-content: center;
  width          : 38px;
  height         : 38px;
  background     : #fff;
  border         : 1.5px solid #D0D0CB;
  border-radius  : 50%;
  color          : #666;
  cursor         : pointer;
  flex-shrink    : 0;
  transition     : border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}

.cf-captcha-refresh:hover {
  border-color: #2E7D52;
  color       : #2E7D52;
  background  : #F0FAF4;
  box-shadow  : 0 2px 8px rgba(46,125,82,0.12);
}

.cf-captcha-refresh:active {
  transform: scale(0.93);
}

/* Spin on refresh click */
.cf-captcha-refresh.spinning svg {
  animation: captchaSpin 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes captchaSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Hint text ── */
.cf-captcha-hint {
  font-size  : 11px;
  color      : #999;
  line-height: 1.4;
  margin-left: 2px;
}

/* ── Input row ── */
.cf-captcha-input-row {
  display    : flex;
  align-items: center;
  gap        : 0;
  background : #fff;
  border     : 1.5px solid #D2D2CC;
  border-radius: 8px;
  overflow   : hidden;
  transition : border-color 0.2s, box-shadow 0.2s;
}

.cf-captcha-input-row:focus-within {
  border-color: #2E7D52;
  box-shadow  : 0 0 0 3px rgba(46,125,82,0.10);
}

.cf-captcha-input-row.has-error {
  border-color: #D44;
  box-shadow  : 0 0 0 3px rgba(204,51,51,0.10);
}

/* ── Input icon prefix ── */
.cf-captcha-icon {
  display        : flex;
  align-items    : center;
  justify-content: center;
  padding        : 0 10px 0 12px;
  color          : #AAAAA5;
  flex-shrink    : 0;
  pointer-events : none;
}

.cf-captcha-icon svg {
  width : 15px;
  height: 15px;
}

/* ── The actual text input ── */
.cf-captcha-input {
  flex          : 1;
  height        : 42px;
  padding       : 0 12px 0 0;
  border        : none;
  outline       : none;
  background    : transparent;
  font-size     : 16px;            /* bigger font */
  font-weight   : 600;
  letter-spacing: 4px;
  color         : #1a2820;
  text-transform: uppercase;
  caret-color   : #2E7D52;
}

.cf-captcha-input::placeholder {
  font-size     : 12px;
  font-weight   : 400;
  letter-spacing: 0.03em;
  color         : #BABAB5;
  text-transform: none;
}

/* ── Inline error message ── */
.cf-captcha-error {
  display    : none;
  align-items: center;
  gap        : 5px;
  margin-top : 6px;
  font-size  : 12px;
  color      : #C33;
  font-style : italic;
}

.cf-captcha-error.visible {
  display: flex;
}

.cf-captcha-error svg {
  width     : 13px;
  height    : 13px;
  flex-shrink: 0;
}

/* ── Submit success state ── */
.cf-submit--success {
  background    : #2E7D52 !important;
  border-color  : #2E7D52 !important;
  color         : #fff !important;
  pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .cf-captcha-img {
    width : 160px;
    height: 52px;
  }

  .cf-captcha-input {
    font-size: 14px;
  }
}