/* ============================================================
   Green ChemisTree Foundation — Global Stylesheet
   Fonts: Plus Jakarta Sans · Icons: Bootstrap Icons
   Palette
     green:  #2f9e54  dark: #1d7a40  deep: #0f3a22  ink: #0e2517
     blue:   #2156d6  alt:  #1f50c9  deep: #142a78 / #163a96
     orange: #f15a29  deep: #d6431a
     bg:     #f4f8f4  mist: #edf4ee / #e8f1ea
     text:   #14241a  head: #0f2417  body: #46584d / #5a6b60
     line:   #e7efe8 / #e3ece4
   ============================================================ */

:root {
  --green: #2f9e54;
  --green-dk: #1d7a40;
  --green-deep: #0f3a22;
  --ink: #0e2517;
  --blue: #2156d6;
  --blue-alt: #1f50c9;
  --blue-deep: #142a78;
  --blue-deep2: #163a96;
  --orange: #f15a29;
  --orange-dk: #d6431a;
  --bg: #f4f8f4;
  --mist-1: #edf4ee;
  --mist-2: #e8f1ea;
  --text: #14241a;
  --head: #0f2417;
  --body: #46584d;
  --muted: #5a6b60;
  --soft: #6a7a6f;
  --line: #e7efe8;
  --line-2: #e3ece4;
  --maxw: 1400px;
  --pad-x: clamp(20px, 5vw, 56px);
  --radius: 4px;
}

/* ---------- Reset & base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 600;
  background: white;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

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

button {
  font-family: inherit;
}

input,
textarea {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  padding: clamp(60px, 8vw, 60px) 0;
}

.section-narrow {
  padding: clamp(56px, 8vw, 60px) 0;
}

/* ---------- Eyebrow / section heading ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dk);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}

.eyebrow.center::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}

.eyebrow.center::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}

.eyebrow.light {
  color: #7fe0a3;
}

.eyebrow.light::before,
.eyebrow.light.center::after {
  background: #7fe0a3;
}

.heading-2 {
  margin: 16px 0 0;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--head);
  margin-bottom: 20px;
}

.lead {
  margin: 18px 0 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--body);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  line-height: 1;
}

.btn i {
  font-size: .95em;
}

.btn-sm {
  padding: 16px 24px;
  font-size: 15px;
  margin-top: 30px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #5fbd43, #238648);
  /* box-shadow: 0 14px 30px rgba(31, 122, 64, .32); */
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(31, 122, 64, .4);
}

.btn-blue {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep2));
  box-shadow: 0 12px 24px rgba(31, 80, 201, .26);
}

.btn-blue:hover {
  transform: translateY(-3px);
}

.btn-ghost {
  color: var(--green-dk);
  background: rgba(255, 255, 255, .8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(47, 158, 84, .32);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  background: #fff;
}

.btn-white {
  color: var(--green-deep);
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.btn-white:hover {
  transform: translateY(-3px);
}

.btn-white.blue {
  color: var(--blue-deep);
}

.btn-outline-light {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .4);
}

.btn-outline-light:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .22);
}

.btn-outline-blue {
  color: var(--blue-deep);
  background: #fff;
  border: 1.5px solid #c9d6f0;
}

.btn-outline-blue:hover {
  background: #f3f6fc;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(255, 255, 255, .78);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(47, 158, 84, .14);
  box-shadow: 0 6px 26px rgba(20, 48, 31, .06);
}

.nav-logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  position: relative;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  border-radius: var(--radius);
  transition: background .2s, color .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--green-dk);
  background: rgba(47, 158, 84, .08);
}

.nav-link i.chev {
  font-size: 11px;
  opacity: .6;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2.5px;
  border-radius: 6px;
  background: var(--orange);
}

.nav-link .ext {
  font-size: 11px;
  opacity: .6;
}

.nav-cta {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
  background: linear-gradient(135deg, #5fbd43, #238648);
  border-radius: var(--radius);
  /* box-shadow: 0 8px 20px rgba(31, 122, 64, .28); */
  transition: transform .2s, box-shadow .2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(31, 122, 64, .36);
}

/* dropdown */
.nav-dd {
  position: relative;
}

.nav-dd-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid #e6efe7;
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(20, 48, 31, .18);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 50;
}

.nav-dd:hover .nav-dd-menu,
.nav-dd.open .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dd-menu.wide {
  min-width: 320px;
}

.nav-dd-menu.narrow {
  min-width: 260px;
}

.dd-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 13px;
  border-radius: var(--radius);
  transition: background .18s;
}

.dd-item:hover {
  background: rgba(47, 158, 84, .08);
}

.dd-item.simple {
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
}

.dd-ico {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.dd-ico.green {
  background: linear-gradient(135deg, var(--green), var(--green-dk));
}

.dd-ico.blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep2));
}

.dd-title {
  display: block;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text);
}

.dd-sub {
  display: block;
  font-size: 12.5px;
  color: var(--soft);
  margin-top: 2px;
}

.dd-item.simple i {
  color: var(--green);
}

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(47, 158, 84, .1);
  border: 1px solid rgba(47, 158, 84, .18);
  border-radius: var(--radius);
  color: var(--green-dk);
  cursor: pointer;
}

.nav-burger i {
  font-size: 26px;
}

/* mobile sheet */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(15, 36, 23, .45);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s, visibility .22s;
}

.mobile-sheet {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1150;
  width: min(86vw, 360px);
  background: #fff;
  /* box-shadow: -20px 0 60px rgba(20, 48, 31, .22); */
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .26s ease;
}

body.menu-open .mobile-overlay {
  opacity: 1;
  visibility: visible;
}

body.menu-open .mobile-sheet {
  transform: translateX(0);
}

.mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.mobile-head img {
  height: 38px;
}

.mobile-close {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(47, 158, 84, .1);
  border: none;
  color: var(--green-dk);
  cursor: pointer;
  font-size: 18px;
}

.m-link {
  padding: 14px 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 9px;
}

.m-link:hover {
  background: rgba(47, 158, 84, .08);
}

.m-sub {
  padding: 12px 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: var(--radius);
}

.m-sub:hover {
  background: rgba(47, 158, 84, .08);
}

.m-sub i {
  color: var(--green);
}

.m-sub i.blue {
  color: var(--blue);
}

.m-group {
  padding: 12px 12px 4px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9aa89e;
}

.m-cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dk));
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(31, 122, 64, .3);
}

@media(max-width:991px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: inline-flex;
  }
}

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  position: relative;
  height: clamp(180px, 26vw, 250px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url(../images/GCF-inner-banner.png);
  background-size: cover;
  background-position: bottom;
}

.page-banner::before {
  display: none;
}

.pb-ring {
  position: absolute;
  top: -50px;
  right: 8%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .16);
  animation: pbFloat 9s ease-in-out infinite;
}

.pb-blob {
  position: absolute;
  bottom: -40px;
  right: 24%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(47, 158, 84, .28);
  filter: blur(4px);
  animation: pbFloat 11s ease-in-out infinite;
}

.pb-dot {
  position: absolute;
  top: 30%;
  right: 16%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(241, 90, 41, .22);
}

.pb-inner {
  position: relative;
  width: 100%;
}

.pb-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: #000000;
  letter-spacing: -.02em;
  animation: pbFade .7s cubic-bezier(.2, .7, .3, 1) both;
}

.pb-crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 14.5px;
  font-weight: 600;
  animation: pbFade .7s cubic-bezier(.2, .7, .3, 1) .14s both;
}

.pb-crumbs a {
  color: #298b48;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: .18s;
}

.pb-crumbs a:hover {
  color: #000000;
}

.pb-crumbs .sep {
  font-size: 11px;
  color: rgb(42 140 71);
}

.pb-crumbs .here {
  color: #298b48;
}

/* ============================================================
   HOME HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 90vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('../images/hero-banner.png');
  background-size: cover;
  background-position: center right;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, rgba(244, 248, 244, .97) 0%, rgba(244, 248, 244, .86) 34%, rgba(244, 248, 244, .35) 60%, rgba(244, 248, 244, 0) 82%); */
  background: linear-gradient(90deg, rgb(243 248 217) 0%, rgb(251 251 243) 34%, rgba(244, 248, 244, .35) 60%, rgba(244, 248, 244, 0) 82%);
}

.hero-dot {
  position: absolute;
  border-radius: 50%;
}

.hero-dot.a {
  top: 14%;
  left: 6%;
  width: 14px;
  height: 14px;
  background: var(--green);
  opacity: .5;
  animation: floatY 7s ease-in-out infinite;
}

.hero-dot.b {
  bottom: 22%;
  left: 14%;
  width: 9px;
  height: 9px;
  background: var(--blue-alt);
  opacity: .45;
  animation: floatY2 9s ease-in-out infinite;
}

.hero-dot.c {
  top: 24%;
  left: 40%;
  width: 10px;
  height: 10px;
  background: var(--orange);
  opacity: .45;
  animation: floatY 8s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  width: 100%;
  padding-top: 96px;
  padding-bottom: 96px;
}

.hero-content {
  max-width: 660px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(47, 158, 84, .12);
  border: 1px solid rgba(47, 158, 84, .24);
  color: var(--green-dk);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: var(--radius);
  animation: riseIn .7s both;
}

.hero-title {
  margin: 22px 0 0;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--head);
  text-wrap: balance;
  animation: riseIn .7s .08s both;
}

.hero-title .accent {
  color: #5fbd43;
}

.hero-text {
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
  color: #3f5147;
  max-width: 560px;
  animation: riseIn .7s .16s both;
}

.hero-text strong {
  color: var(--green-dk);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  animation: riseIn .7s .24s both;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--green-dk);
}

.scroll-cue span.lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .7;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(29, 122, 64, .45);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.scroll-mouse span {
  width: 5px;
  height: 9px;
  border-radius: 6px;
  background: var(--green);
  animation: scrollDot 1.6s ease-in-out infinite;
}

/* ============================================================
   ABOUT / SPLIT SECTIONS
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.media-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  aspect-ratio: 4/3.4;
  background-image: url('../images/ABout-GCF.png');
  background-size: cover;
  background-position: center right;
}

.media-wrap {
  position: relative;
}

.float-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 26px;
  box-shadow: 0 22px 50px rgba(20, 48, 31, .16);
  display: flex;
  align-items: center;
  gap: 16px;
}

.float-badge.bl {
  bottom: -26px;
  left: -10px;
}

.float-badge.tr {
  top: -22px;
  right: -12px;
  padding: 16px 22px;
  box-shadow: 0 20px 44px rgba(20, 48, 31, .16);
}

.float-badge .fb-ico {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, #2156d6, #163a96);
}

.float-badge.tr .fb-ico {
  width: 46px;
  height: 46px;
  font-size: 22px;
  background: rgba(241, 90, 41, .14);
  color: var(--orange);
}

.fb-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--head);
  line-height: 1;
}

.float-badge.tr .fb-num {
  font-size: 15px;
  line-height: 1.1;
}

.fb-sub {
  font-size: 13px;
  color: var(--soft);
  margin-top: 4px;
}

.float-badge.tr .fb-sub {
  font-size: 12.5px;
  margin-top: 0;
}

.body-text {
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.78;
  color: var(--body);
}

.body-text strong {
  color: var(--green-dk);
}

.body-text+.body-text {
  margin-top: 16px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.mini-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.mini-stat .num {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.mini-stat .lbl {
  font-size: 13.5px;
  color: var(--soft);
  margin-top: 8px;
  font-weight: 500;
}

.tone-green {
  color: var(--green);
}

.tone-blue {
  color: var(--blue-alt);
}

.tone-orange {
  color: var(--orange);
}

/* ---------- tinted section backgrounds ---------- */
.bg-mist {
background: #fbfbfb;
  position: relative;
  overflow: hidden;
}

.bg-mist .glow-a,
.bg-mist .glow-b {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.bg-mist .glow-a {
  top: -90px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(47, 158, 84, .14), transparent 70%);
}

.bg-mist .glow-b {
  bottom: -100px;
  left: -70px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(31, 80, 201, .09), transparent 70%);
}

.bg-green-deep {
  /* background: linear-gradient(135deg, var(--green-deep), var(--green-dk)); */
  background: linear-gradient(135deg, #498537, var(--green-dk));
  position: relative;
  overflow: hidden;
}

.bg-green-deep .glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}

.bg-ink {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.bg-ink .glow {
  position: absolute;
  top: -100px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 158, 84, .22), transparent 70%);
}

/* ============================================================
   CARD GRIDS
   ============================================================ */
.grid {
  display: grid;
  gap: 24px;
}

.grid-cards {
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

/* numbered objective cards */
.obj-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  /* border-top: 3px solid var(--green); */
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .28s, box-shadow .28s;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.obj-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(20, 48, 31, .16);
}

/* .obj-card.blue {
  border-top-color: var(--blue);
}

.obj-card.orange {
  border-top-color: var(--orange);
} */

.obj-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  opacity: 1;
}

.obj-num.green {
  color: rgb(33 87 214 / 17%);
}

.obj-num.blue {
  color: rgb(33 87 214 / 17%);
}

.obj-num.orange {
  color: rgb(33 87 214 / 17%);
}

.obj-ico {
  position: relative;
  display: flex;
  width: 70px;
  height: 60px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  margin-bottom: 22px;
}

/* .obj-ico.green {
  background: linear-gradient(135deg, var(--green), var(--green-dk));
  box-shadow: 0 12px 24px #2f9e5440;
} */

/* .obj-ico.blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep2));
  box-shadow: 0 12px 24px #2156d640;
} */

/* .obj-ico.orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  box-shadow: 0 12px 24px #f15a2940;
} */

.obj-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 500;
  color: var(--head);
  letter-spacing: -.01em;
}

.obj-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

.card-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-size: 13.5px;
  font-weight: 700;
}

.card-more.green {
  color: var(--green-dk);
}

.card-more.blue {
  color: var(--green-dk)
}

.card-more.orange {
  color: var(--green-dk)
}

/* platform cards */
.platform-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 42px;
  color: #fff;
  transition: transform .3s, box-shadow .3s;
}

.platform-card .pc-blob {
  position: absolute;
  top: -50px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.platform-card.green {
  background: linear-gradient(135deg, var(--green-deep), var(--green-dk));
}

.platform-card.green:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 58, 34, .4);
}

.platform-card.blue {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
}

.platform-card.blue:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(20, 42, 120, .4);
}

.pc-ico {
  position: relative;
  display: flex;
  width: 75px;
  height: 62px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  /* background: rgba(255, 255, 255, .16); */
  font-size: 28px;
  margin-bottom: 22px;
}

.platform-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 500;
}

.platform-card p {
  position: relative;
  margin: 0 0 28px;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
}

.pc-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 15px;
  color: var(--green-deep);
  background: #fff;
  border-radius: var(--radius);
  transition: transform .2s;
}

.platform-card.blue .pc-link {
  color: var(--blue-deep);
}

.pc-link:hover {
  transform: translateX(4px);
}

/* ---------- social tiles ---------- */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.social-tile {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: .26s;
}

.social-tile i {
  font-size: 30px;
  color: #fff;
}

.social-tile span {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.social-tile:hover {
  transform: translateY(-8px);
}

.social-tile.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-tile.ig:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  border-color: transparent;
}

.social-tile.li:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

.social-tile.tw:hover {
  background: #000;
  border-color: #333;
}

.social-tile.yt:hover {
  background: #ff0000;
  border-color: #ff0000;
}

/* center text on dark sections */
.on-dark h2 {
  color: #fff;
}

.on-dark .lead {
  color: #a9c0b0;
}

.text-center {
  text-align: center;
}

.mt-block {
  margin-top: 16px;
}

/* ============================================================
   ABOUT — objective + vision cards
   ============================================================ */
.vm-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
  transition: transform .28s, box-shadow .28s;
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(20, 48, 31, .14);
}

.vm-ico {
  display: flex;
  width: 62px;
  height: 62px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  margin-bottom: 22px;
}

.vm-ico.green {
  background: linear-gradient(135deg, var(--green), var(--green-dk));
}

.vm-ico.blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep2));
}

.vm-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 500;
  color: var(--head);
}

.vm-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.objective-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform .26s, box-shadow .26s;
}

.objective-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(20, 48, 31, .12);
}

.objective-card .oc-ico {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.oc-ico.green {
  background: rgba(47, 158, 84, .12);
  color: var(--green-dk);
}

.oc-ico.blue {
  background: rgba(31, 80, 201, .12);
  color: var(--blue-alt);
}

.oc-ico.orange {
  background: rgba(241, 90, 41, .12);
  color: var(--orange);
}

.objective-card h3 {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 500;
  color: var(--head);
}

.objective-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
}

/* why-this-platform checklist */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.check-item i {
  color: #7fe0a3;
  font-size: 22px;
  margin-top: 1px;
}

.check-item .ci-t {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}

.check-item .ci-d {
  font-size: 16px;
  line-height: 1.6;
  color: rgb(255, 255, 255);
}

/* big stat tiles */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 20px;
}

.stat-tile .num {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
}

.stat-tile .lbl {
  font-size: 14.5px;
  color: var(--soft);
  margin-top: 10px;
  font-weight: 600;
}

/* CTA panels */
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 35px);
  text-align: center;
}

.cta-panel.blue {
  /* background: linear-gradient(120deg, var(--blue-deep), var(--blue)); */
      background: linear-gradient(120deg, #111d49, #153ea3);
}

.cta-panel.green {
  /* background: linear-gradient(120deg, var(--green-deep), var(--green-dk)); */
     background: linear-gradient(120deg, #111d49, #153ea3);
}

.cta-panel .cta-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.cta-panel .cta-blob.a {
  top: -60px;
  left: -40px;
  width: 240px;
  height: 240px;
}

.cta-panel .cta-blob.b {
  bottom: -70px;
  right: -30px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, .07);
}

.cta-panel h2 {
  position: relative;
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: -.02em;
}

.cta-panel p {
  position: relative;
  margin: 0 auto 30px;
  max-width: 560px;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
}

.cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ============================================================
   EVENT PAGE
   ============================================================ */
.event-hero {
  position: relative;
  min-height: clamp(560px, 88vh, 840px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('../images/hero-banner.png');
  background-size: cover;
  background-position: center right;
}

.event-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(9, 30, 18, .92) 0%, rgba(12, 45, 27, .82) 42%, rgba(15, 58, 34, .45) 70%, rgba(15, 58, 34, .15) 100%);
}

.eh-ring {
  position: absolute;
  top: 18%;
  right: 10%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .14);
}

.eh-dot {
  position: absolute;
  bottom: 16%;
  right: 22%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(241, 90, 41, .22);
}

.eh-inner {
  position: relative;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 110px;
}

.eh-content {
  max-width: 720px;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(241, 90, 41, .18);
  border: 1px solid rgba(241, 90, 41, .4);
  color: #ffb59c;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: var(--radius);
  margin-bottom: 22px;
  animation: riseIn .7s both;
}

.badge-live .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulseDot 1.6s ease-in-out infinite;
}

.eh-title {
  margin: 0;
  font-size: clamp(2.2rem, 5.2vw, 3.9rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -.03em;
  color: #fff;
  text-wrap: balance;
  animation: riseIn .7s .08s both;
}

.eh-sub {
  margin: 16px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 500;
  color: #bfe6cd;
  animation: riseIn .7s .14s both;
}

.eh-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 26px;
  font-size: 15.5px;
  font-weight: 600;
  color: #e7f3ea;
  animation: riseIn .7s .2s both;
}

.eh-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eh-meta i {
  color: #7fe0a3;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 440px;
  margin: 32px 0 0;
  animation: riseIn .7s .26s both;
}

.cd-cell {
  text-align: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 16px 6px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.cd-num {
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.cd-num.accent {
  color: #7fe0a3;
}

.cd-lbl {
  font-size: 11px;
  font-weight: 600;
  color: #a9c8b4;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 7px;
}

.eh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
  animation: riseIn .7s .32s both;
}

.scroll-cue.light {
  color: #cfe8d8;
}

.scroll-cue.light .scroll-mouse {
  border-color: rgba(255, 255, 255, .4);
}

.scroll-cue.light .scroll-mouse span {
  background: #7fe0a3;
}

/* background facts */
.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.fact .num {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.fact .lbl {
  font-size: 13.5px;
  color: var(--soft);
  margin-top: 8px;
  font-weight: 600;
}

.fact.green {
  border-top: 3px solid var(--green);
}

.fact.blue {
  border-top: 3px solid var(--blue);
}

.fact.orange {
  border-top: 3px solid var(--orange);
}

.fact.green .num {
  color: var(--green);
}

.fact.blue .num {
  color: var(--blue-alt);
}

.fact.orange .num {
  color: var(--orange);
}

/* highlight cards */
.hl-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 32px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .28s, box-shadow .28s;
}

.hl-card:hover {
  transform: translateY(-8px);
}

.hl-card.feature {
  background: linear-gradient(150deg, var(--green-deep), var(--green-dk));
  color: #fff;
}

.hl-card.feature:hover {
  box-shadow: 0 28px 56px rgba(15, 58, 34, .34);
}

.hl-card.plain {
  background: #fff;
  border: 1px solid var(--line);
}

.hl-card.plain:hover {
  box-shadow: 0 28px 56px rgba(20, 48, 31, .14);
}

.hl-ico {
  display: flex;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.hl-ico.glass {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.hl-ico.blue {
  background: rgba(31, 80, 201, .12);
  color: var(--blue-alt);
}

.hl-ico.orange {
  background: rgba(241, 90, 41, .12);
  color: var(--orange);
}

.hl-ico.green {
  background: rgba(47, 158, 84, .12);
  color: var(--green-dk);
}

.hl-card h3 {
  margin: 0 0 7px;
  font-size: 20px;
  font-weight: 500;
}

.hl-card.plain h3 {
  color: var(--head);
}

.hl-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.hl-card.feature p {
  color: rgba(255, 255, 255, .85);
}

.hl-card.plain p {
  color: var(--muted);
}

/* stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}

.stat-strip .cell {
  background: #fff;
  padding: 26px 16px;
}

.stat-strip .num {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
}

.stat-strip .lbl {
  font-size: 13px;
  color: var(--soft);
  margin-top: 8px;
  font-weight: 600;
}

/* upcoming event cards */
.evt-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .28s, box-shadow .28s;
}

.evt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(20, 48, 31, .14);
}

.evt-head {
  position: relative;
  padding: 30px 30px 26px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff;
  overflow: hidden;
}

.evt-head .blob {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.evt-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .24);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius);
}

.evt-head h3 {
  position: relative;
  margin: 18px 0 0;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.01em;
}

.evt-body {
  padding: 26px 30px 30px;
}

.evt-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
}

.evt-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.evt-meta i {
  color: var(--blue);
}

.evt-body p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.evt-body p strong {
  color: var(--green-dk);
}

.org-note {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 15px;
  background: #f3f6fc;
  border: 1px solid #e2e8f6;
  border-radius: var(--radius);
  margin-bottom: 22px;
  font-size: 13.5px;
  color: var(--body);
}

.org-note i {
  color: var(--blue);
}

.org-note strong {
  color: var(--blue-deep);
}

.evt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.evt-img {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center 18%;
}

.evt-img.workshop {
  background-image: url('../images/rd-workshop.jpg');
}

.evt-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 58, 34, .1), rgba(15, 58, 34, .55));
}

.evt-img .pill {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .92);
  color: var(--green-dk);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius);
}

.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #9aa89e;
  margin-bottom: 10px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dk);
  background: rgba(47, 158, 84, .1);
  padding: 6px 12px;
  border-radius: var(--radius);
}

.tag.muted {
  color: var(--muted);
  background: #eef3ef;
}

/* past events slider */
.slider-head {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.slider-nav {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  border: 1.5px solid #cdded2;
  background: #fff;
  color: var(--green-dk);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}

.slider-btn:hover {
  background: var(--green-dk);
  color: #fff;
  border-color: var(--green-dk);
}

.slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 14px;
  scroll-padding-left: 2px;
  scrollbar-width: none;
}

.slider::-webkit-scrollbar {
  display: none;
}

.past-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(280px, 80vw, 360px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .28s;
}

.past-card:hover {
  box-shadow: 0 26px 52px rgba(20, 48, 31, .14);
}

.past-img {
  position: relative;
  height: 160px;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.past-img .edition {
  position: absolute;
  right: -6px;
  bottom: -30px;
  font-size: 130px;
  font-weight: 800;
  color: rgba(255, 255, 255, .1);
  line-height: 1;
}

.past-img>i {
  font-size: 46px;
  color: rgba(255, 255, 255, .92);
}

.past-img .year {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, .92);
  color: var(--green-dk);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius);
}

.past-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.past-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--soft);
}

.past-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.past-meta i {
  color: var(--green);
}

.past-body h3 {
  margin: 0 0 9px;
  font-size: 18.5px;
  font-weight: 800;
  color: var(--head);
  line-height: 1.25;
}

.past-body p {
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
}

.recap-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--green-dk);
  transition: gap .2s;
}

.recap-link:hover {
  gap: 12px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .26s, box-shadow .26s;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(20, 48, 31, .12);
}

.info-ico {
  display: flex;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.info-ico.green {
  background: rgba(47, 158, 84, .12);
  color: var(--green-dk);
}

.info-ico.blue {
  background: rgba(31, 80, 201, .12);
  color: var(--blue-alt);
}

.info-ico.orange {
  background: rgba(241, 90, 41, .12);
  color: var(--orange);
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--head);
}

.info-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
}

.info-card a {
  display: block;
  font-size: 14.5px;
  line-height: 1.65;
}

.info-card a.strong {
  color: var(--green-dk);
  font-weight: 600;
}

.info-card a.strong:hover {
  text-decoration: underline;
}

.info-card a.soft {
  color: var(--muted);
}

.info-card a.soft:hover {
  color: var(--green-dk);
}

.info-card .note {
  margin: 4px 0 0;
  font-size: 13.5px;
  color: #7a8a7f;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 22px 50px rgba(20, 48, 31, .08);
}

.form-card h2 {
  margin: 14px 0 26px;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--head);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #3f5147;
  margin-bottom: 7px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  font-size: 15px;
  color: var(--text);
  background: #f7faf7;
  border: 1.5px solid #e3ece4;
  border-radius: var(--radius);
  outline: none;
  transition: border .2s, box-shadow .2s;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 158, 84, .14);
  background: #fff;
}

.field .err {
  display: none;
  font-size: 12.5px;
  color: var(--orange-dk);
  margin-top: 6px;
}

.field.invalid .err {
  display: block;
}

.field.invalid input,
.field.invalid textarea {
  border-color: var(--orange-dk);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background: rgba(47, 158, 84, .07);
  border: 1px solid rgba(47, 158, 84, .2);
  border-radius: var(--radius);
}

.form-success.show {
  display: flex;
}

.form.hide {
  display: none;
}

.success-ico {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dk));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 18px;
}

.form-success h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--head);
}

.form-success p {
  margin: 0 0 22px;
  font-size: 15px;
  color: var(--muted);
  max-width: 320px;
}

.btn-reset {
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--green-dk);
  background: #fff;
  border: 1.5px solid rgba(47, 158, 84, .3);
  border-radius: var(--radius);
  cursor: pointer;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-wrap {
  position: relative;
  flex: 1;
  min-height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(20, 48, 31, .08);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-height: 300px;
  filter: saturate(1.05);
}

.follow-card {
  background: linear-gradient(135deg, var(--green-deep), var(--green-dk));
  border-radius: var(--radius);
  padding: 32px;
  color: #fff;
}

.follow-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
}

.follow-card p {
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
}

.follow-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.follow-row a {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 19px;
  transition: .2s;
}

.follow-row a:hover {
  background: #fff;
  color: var(--green-dk);
  transform: translateY(-3px);
}

/* ============================================================
   EVENT PAGE
   ============================================================ */

/* Banner */
.ev-banner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.ev-banner img {
  width: 100%;
  /* height: clamp(260px, 45vw, 600px); */
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Body text utility */
.body-text {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--body);
  margin: 0 0 0px;
  font-weight: 400;
}

/* About */
.ev-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 860px) {
  .ev-about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.ev-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ev-stat {
  background: #fff;
  border: 1.5px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: 10px;
  padding: 22px 20px;
  text-align: center;
}

.ev-stat--blue {
  border-top-color: var(--blue);
}

.ev-stat--orange {
  border-top-color: var(--orange);
}

.ev-stat--teal {
  border-top-color: #0b8e7a;
}

.ev-stat .ev-num {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--green);
}

.ev-stat--blue .ev-num {
  color: var(--blue);
}

.ev-stat--orange .ev-num {
  color: var(--orange);
}

.ev-stat--teal .ev-num {
  color: #0b8e7a;
}

.ev-stat .ev-lbl {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.ev-date-bar {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-dk));
  border-radius: 10px;
  padding: 18px 24px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  color: #fff;
}

.ev-date-bar .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
}

.ev-date-bar .item i {
  color: #7fe0a3;
  font-size: 17px;
}

/* Objectives */
.ev-obj-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.ev-obj-card {
  flex: 0 1 calc(33.333% - 16px);
  min-width: 260px;
  position: relative;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  padding: 32px 26px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.ev-obj-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(20, 48, 31, .1);
}

.ev-obj-num {
  position: absolute;
  top: -8px;
  right: 16px;
  font-size: 72px;
  font-weight: 900;
  opacity: .06;
  color: var(--green);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.ev-obj-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.ev-obj-head h3 {
  margin: 0;
}

.ev-obj-ico {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
     background: linear-gradient(135deg, #5fbd43, #238648);
}

.ev-obj-ico img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ev-obj-card h3 {
margin: 0 0 10px;
    font-size: 20px;
    font-weight: 500;
    color: var(--head);
    letter-spacing: -.01em;
}

.ev-obj-card p {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--muted);
}

/* ---- Session Schedule Tabs (classic folder style) ---- */
.ev-tabs-wrap {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  border-bottom: 2px solid #c8ddd4;
  margin-bottom: 0;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  overflow: visible;
  width: fit-content;
}

.ev-tab {
  position: relative;
  padding: 11px 28px 13px;
  font-size: 13.5px;
  font-weight: 700;
  border: 1.5px solid #c8ddd4;
  border-bottom: none;
  background: #f2f7f4;
  color: #6b8c7a;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  font-family: inherit;
  letter-spacing: .01em;
}

.ev-tab:hover {
  background: #e3f0e9;
  color: #1d7a40;
}

.ev-tab.active {
  background: #fff;
  color: #1a3d27;
  border-color: #c8ddd4;
  border-bottom: 2px solid #fff;
  margin-bottom: -2px;
  padding-bottom: 15px;
  z-index: 1;
  font-weight: 800;
}

@media (max-width: 640px) {
  .ev-tabs-wrap {
    width: 100%;
    gap: 3px;
  }

  .ev-tab {
    flex: 1;
    justify-content: center;
    padding: 10px 6px 12px;
    font-size: 12px;
  }

  .ev-tab.active {
    padding-bottom: 14px;
  }
}

.ev-sched-panel {
  display: none;
}

.ev-sched-panel.active {
  display: block;
}

/* ---- Classic Professional Schedule Table ---- */
.ev-sched-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1.5px solid #c8ddd4;
  box-shadow: 0 6px 32px rgba(20, 58, 39, .07);
}

.ev-sched-table thead th {
  background: #1a3d27;
  color: rgba(255, 255, 255, .82);
  padding: 15px 28px;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: none;
}

.ev-sched-table thead th:first-child {
  width: 158px;
  padding-left: 32px;
}

/* Day band row */
.ev-day-band td {
  background: #f0f7f3;
  padding: 10px 28px !important;
  border-bottom: 1px solid #c8ddd4 !important;
  border-left: none !important;
}

.ev-day-band-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ev-day-band-date {
  font-size: 12px;
  font-weight: 800;
  color: #1a3d27;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ev-day-band-time {
  font-size: 11.5px;
  color: #3f7a58;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ev-day-band-time i {
  font-size: 12px;
}

/* Row defaults */
.ev-sched-table tbody tr {
  border-bottom: 1px solid #e2ede7;
  transition: background .15s;
}

.ev-sched-table tbody tr:last-child {
  border-bottom: 0;
}

.ev-sched-table tbody tr:not(.ev-day-band):hover {
  background: #eef6f1;
}

/* Row left accent */
.ev-tr-keynote   { border-left: 5px solid #1d7a40; }
.ev-tr-technical { border-left: 5px solid #2f9e54; }
.ev-tr-panel     { border-left: 5px solid #0369a1; }
.ev-tr-workshop  { border-left: 5px solid #0b8e7a; }
.ev-tr-break     { border-left: 5px solid #f59e0b; }
.ev-tr-awards    { border-left: 5px solid #dc2626; }
.ev-tr-social    { border-left: 5px solid #059669; }
.ev-tr-closing   { border-left: 5px solid #d97706; }

/* Cells */
.ev-sched-table td {
  padding: 24px 28px;
  vertical-align: top;
}

/* Time cell */
.ev-tc-time {
  width: 158px;
  padding-left: 32px !important;
  padding-right: 20px !important;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #e2ede7;
}

.ev-t-from {
  font-size: 22px;
  font-weight: 800;
  color: #1a3d27;
  line-height: 1;
  letter-spacing: -.02em;
}

.ev-t-sep {
  font-size: 11px;
  color: #a0b8ab;
  margin: 5px 0;
}

.ev-t-to {
  font-size: 14px;
  color: #2f9e54;
  font-weight: 700;
}

.ev-t-session-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #a0b8ab;
  margin-bottom: 4px;
}

.ev-t-session-label {
  font-size: 22px;
  font-weight: 800;
  color: #1a3d27;
  line-height: 1;
}

/* Hide legacy badge column */
.ev-tc-type { display: none; }
.ev-badge   { display: none; }

/* Session type chip (inside details cell) */
.ev-s-type-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #1d7a40;
  background: #e6f4ed;
  border: 1px solid #c0e2ce;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* Session title */
.ev-s-title {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: #1a3d27;
  line-height: 1.4;
  margin-bottom: 8px;
}

/* Session description */
.ev-s-desc {
  display: block;
  font-size: 13.5px;
  line-height: 1.78;
  color: #4a6557;
  margin-bottom: 14px;
}

/* Audience row */
.ev-s-audience {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: #2f7a50;
  border-top: 1px dashed #c8ddd4;
  padding-top: 12px;
  width: 100%;
}

.ev-s-audience i {
  font-size: 13px;
  color: #1d7a40;
  flex-shrink: 0;
}

/* Legacy speaker styles (kept for compat) */
.ev-s-speaker {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
}

.ev-s-speaker i {
  font-size: 11px;
  color: var(--green);
}

@media (max-width: 640px) {
  .ev-sched-table td {
    padding: 18px 16px;
  }

  .ev-tc-time {
    width: 88px;
    padding-left: 14px !important;
    padding-right: 10px !important;
  }

  .ev-t-from {
    font-size: 15px;
  }

  .ev-t-to {
    font-size: 12px;
  }

  .ev-t-session-label {
    font-size: 16px;
  }
}

/* ---- Day Jump Buttons ---- */
.ev-day-jumps {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.ev-day-jump {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border: 1px solid #d5d5d5;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  color: #1a3d27;
  text-decoration: none;
  background: transparent;
  transition: background .2s, color .2s;
  font-family: inherit;
  cursor: pointer;
}

.ev-day-jump:hover,
.ev-day-jump.active {
      background: linear-gradient(135deg, #5fbd43, #238648);
  color: #fff;
}

@media (max-width: 540px) {
  .ev-day-jump {
    padding: 9px 18px;
    font-size: 12.5px;
  }
}

/* ---- Single Unified Schedule Table ---- */
.ev-single-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1.5px solid #b8d0c4;
  box-shadow: 0 6px 40px rgba(20, 58, 39, .09);
}

.ev-single-table thead th {
  background: rgb(91 185 68);
  color: rgba(255, 255, 255, .88);
  padding: 16px 24px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.ev-single-table thead th:last-child {
  border-right: none;
}

.ev-single-table tbody tr {
  border-bottom: 1px solid #ddeae3;
}

.ev-single-table tbody tr:last-child {
  border-bottom: 0;
}

/* Date column */
.ev-td-date {
  background: #f0f5e8;
  text-align: center;
  vertical-align: middle;
  padding: 28px 20px;
  width: 165px;
  min-width: 140px;
  border-right: 1.5px solid #c4d8bb;
  border-bottom: 1px solid #d4e4c8;
  line-height: 1;
}

.ev-td-date-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #4a7a38;
  margin-bottom: 8px;
}

.ev-td-date-num {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #1a3d27;
  margin-bottom: 6px;
  letter-spacing: .01em;
}

.ev-td-date-time {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #5a8a52;
}

/* Session description column */
.ev-td-desc {
  background: #fff;
  padding: 22px 28px;
  vertical-align: top;
  border-right: 1px solid #ddeae3;
  font-size: 14px;
  line-height: 1.75;
  color: #333;
}

.ev-td-desc strong {
  color: #1a3d27;
  font-weight: 700;
}

.ev-td-desc-num {
  font-weight: 800;
  color: #1a3d27;
  margin-right: 4px;
}

/* Expected audience column */
.ev-td-audience {
  background: #eaf4fc;
  padding: 22px 20px;
  vertical-align: middle;
  width: 200px;
  min-width: 165px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #1a3060;
  border-left: 1.5px solid #c5d9ee;
  border-bottom: 1px solid #d0e3f0;
}

@media (max-width: 860px) {
  .ev-single-table thead th:last-child,
  .ev-td-audience {
    display: none;
  }
}

@media (max-width: 560px) {
  .ev-td-date {
    width: 110px;
    min-width: 100px;
    padding: 18px 12px;
  }

  .ev-td-date-num {
    font-size: 12.5px;
  }

  .ev-td-desc {
    padding: 18px 16px;
    font-size: 13px;
  }
}

/* Exhibition */
.ev-exh-showcase {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 32px 36px;
  box-shadow: 0 4px 24px rgba(20, 58, 39, .07);
  text-align: center;
}

.ev-exh-desc {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--body);
  margin: 0 auto 20px;
  max-width: 720px;
}

.ev-exh-desc strong {
  color: var(--green-dk);
}

.ev-exh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.ev-exh-tag {
     display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    background: #5cbb4314;
    border: 1px solid #4680364d;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    color: #1a3d27;
}

.ev-exh-tag i {
  font-size: 13px;
  color: #2f9e54;
}

.ev-exh-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--body);
  margin: 0;
  font-weight: 400;
}

.ev-stat-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(135deg, #0f3a22, #1d7a40);
  border-radius: 14px;
  padding: 40px 28px;
  text-align: center;
}

@media (max-width: 540px) {
  .ev-stat-banner {
    grid-template-columns: 1fr;
  }
}

.ev-stat-banner .ev-sb-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.ev-stat-banner .ev-sb-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  font-weight: 500;
}

.ev-stat-banner .ev-sb-div {
  border-left: 1px solid rgba(255, 255, 255, .18);
}

@media (max-width: 540px) {
  .ev-stat-banner .ev-sb-div {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .18);
    padding-top: 28px;
    margin-top: 28px;
  }
}

/* FAQ accordion */

/* FAQ background section */
.faq-bg {
  position: relative;
  background: url('../images/BG/Bg-img-1.png') center / cover no-repeat;
  overflow: hidden;
}

.faq-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.faq-bg .container {
  position: relative;
  z-index: 1;
}

.faq-bg .heading-2 {
  color: #000000;
}

.faq-bg .faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

@media (max-width: 700px) {
  .faq-bg .faq-list {
    grid-template-columns: 1fr;
  }
}

.faq-bg .faq {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .3);
}

.faq-bg .faq-q {
  color: var(--head);
}

.faq-bg .faq-a .inner {
  color: var(--muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--head);
  border-radius: 4px;
  border: 1px solid #cfcfcf;
}

.faq-q i {
  flex-shrink: 0;
  color: var(--green);
  font-size: 18px;
  transition: transform .25s;
}

.faq.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-a .inner {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #fff;
  color: #3d5a47;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #ececec;
}

.footer .glow-a,
.footer .glow-b {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.footer .glow-a {
  top: -120px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(47, 158, 84, .08), transparent 70%);
}

.footer .glow-b {
  bottom: -140px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(31, 80, 201, .06), transparent 70%);
}

.footer-grid {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 54px) var(--pad-x) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 28px 36px;
}

.footer-brand {
  max-width: 340px;
}

.footer-logo {
  /* background: #f4f8f5; */
  display: inline-flex;
  padding: 9px 12px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  /* border: 1px solid rgba(47, 158, 84, .15); */
}

.footer-logo img {
  height: 48px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7a68;
  margin: 0 0 15px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 158, 84, .07);
  color: #3d5a47;
  border: 1px solid rgba(47, 158, 84, .18);
  transition: .2s;
}

.footer-social a:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .02em;
  margin: 0px 0 26px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14.5px;
  font-weight: 400;
}

.footer-links a {
  color: #5a7a68;
  transition: .18s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--green-dk);
}

.footer-links a i {
  font-size: 11px;
  color: var(--green);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 21px;
  font-size: 15px;
  font-weight: 400;
}

.footer-contact>div,
.footer-contact>a {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: #5a7a68;
  transition: .18s;
}

.footer-contact a:hover {
  color: var(--green-dk);
}

.footer-contact i {
  color: var(--green);
  margin-top: 2px;
}

.footer-contact a i {
  margin-top: 0;
}

.footer-bottom {
  position: relative;
  max-width: var(--maxw);
  margin: 26px auto 0;
  padding: 15px var(--pad-x);
  border-top: 1px solid rgba(47, 158, 84, .15);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom span {
  font-size: 13.5px;
  color: #7a9a87;
}

.footer-bottom .legal {
  display: flex;
  gap: 24px;
  font-size: 13.5px;
  font-weight: 400;
}

.footer-bottom .legal a {
  color: #7a9a87;
  transition: .18s;
}

.footer-bottom .legal a:hover {
  color: var(--ink);
}

.footer-devby {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #7a9a87;
  text-decoration: none;
  transition: .18s;
  font-weight: 400;
}

.footer-devby:hover {
  color: #222;
}

.enseur-logo {
  height: 18px;
  width: auto;
  filter: brightness(0);
  vertical-align: middle;
}


/* ============================================================
   SCROLL REVEAL + KEYFRAMES
   ============================================================ */
.reveal.in {
  animation: riseIn .8s cubic-bezier(.2, .7, .3, 1) both;
}

@keyframes riseIn {
  from {
    transform: translateY(28px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes pbFade {
  from {
    transform: translateY(18px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes pbFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-16px) rotate(8deg);
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes floatY2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-26px);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .35;
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
  }
}

/* ===================== FURTHER DETAILS SECTION ===================== */
.details-section {
  padding: 32px 0;
}

.details-panel {
  padding: 28px 32px;
}

.details-eyebrow {
  color: rgba(255,255,255,.6);
  font-size: 11px;
  letter-spacing: .1em;
}

.details-heading {
  position: relative;
  text-align: center;
  color: #fff;
  margin: 6px 0 20px;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  letter-spacing: -.02em;
}

.details-cards {
  position: relative;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

  .eapps-widget-toolbar
 {
    position: absolute;
    top: -32px;
    left: 0;
    right: 0;
    display: none !important;
    z-index: 99999;
    padding-bottom: 4px;
    transition: all .3s ease;
    pointer-events: none;
    opacity: 0;
}

.details-card {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  padding: 18px 22px;
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  text-align: start;
}

.details-card-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
  color: #fff;
}

.details-card-role {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}

.details-card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 13px;
}

.details-card-link:last-child {
  margin-bottom: 0;
  font-size: 12px;
  word-break: break-all;
}

.details-card-link i {
  font-size: 13px;
  flex-shrink: 0;
}

/* ===================== PRELOADER ===================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s ease, visibility .4s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes loader {
  0%, 10%, 100% { width: 80px; height: 80px; }
  65%            { width: 150px; height: 150px; }
}

@keyframes loaderBlock {
  0%, 30%  { transform: rotate(0); }
  100%     { transform: rotate(90deg); }
}

@keyframes loaderBlockInverse {
  0%, 20%  { transform: rotate(0); }
  100%     { transform: rotate(-90deg); }
}

.loader {
  position: relative;
  width: 80px;
  height: 80px;
  transform: rotate(45deg) translate3d(0, 0, 0);
  animation: loader 1.2s infinite ease-in-out;
}

.loader span {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  animation: loaderBlock 1.2s infinite ease-in-out both;
}

.loader span:nth-child(1) { top: 0; left: 0; background-color: #5fbd43; }
.loader span:nth-child(2) { top: 0; right: 0; background-color: #238648; animation: loaderBlockInverse 1.2s infinite ease-in-out both; }
.loader span:nth-child(3) { bottom: 0; left: 0; background-color: #5fbd43; animation: loaderBlockInverse 1.2s infinite ease-in-out both; }
.loader span:nth-child(4) { bottom: 0; right: 0; background-color: #238648; }

/* ============================================================
   GALLERY SLIDER + LIGHTBOX
   ============================================================ */
.gallery-section {
  background: #fff;
  overflow: hidden;
  padding-bottom: 0px !important;
}

.gallery-track-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 8px;
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: galleryScroll 36s linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

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

.gallery-item {
  flex-shrink: 0;
  width: 420px;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 58, 34, 0.42);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gi-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  pointer-events: none;
}

.gallery-item:hover .gi-zoom {
  opacity: 1;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5, 15, 10, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s, visibility 0.28s;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.glb-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
}

.glb-img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  display: block;
  transition: opacity 0.2s;
}

.glb-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
  font-family: inherit;
}

.glb-btn:hover {
  background: rgba(255, 255, 255, 0.24);
}

.glb-close {
  top: 20px;
  right: 24px;
  width: 46px;
  height: 46px;
  font-size: 17px;
}

.glb-prev,
.glb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 20px;
}

.glb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.glb-next:hover { transform: translateY(-50%) translateX(3px); }
.glb-prev { left: 20px; }
.glb-next { right: 20px; }

@media (max-width: 640px) {
  .gallery-item { width: 280px; height: 200px; }
  .glb-prev { left: 8px; }
  .glb-next { right: 8px; }
}

/* ============================================================
   FULLY RESPONSIVE — ALL BREAKPOINTS
   ============================================================ */

/* Fix broken clamp (min = max = 60px, so always 60px regardless of viewport) */
.section { padding: clamp(36px, 7vw, 60px) 0; }
.section-narrow { padding: clamp(32px, 6vw, 56px) 0; }

/* ---- 1100px: large tablet / small laptop ---- */
@media (max-width: 1100px) {
  .split {
    gap: clamp(28px, 4vw, 52px);
  }
  .hero-inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .platform-card {
    padding: 36px;
  }
}

/* ---- 991px: tablet landscape (nav already hidden here) ---- */
@media (max-width: 991px) {
  .hero-inner {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .hero-content {
    max-width: 100%;
  }
  /* stop the media-card from being huge when it stacks */
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .media-card {
    aspect-ratio: 16/9;
  }
  /* keep float-badge from clipping outside the viewport */
  .float-badge.bl {
    left: 0;
    bottom: -18px;
  }
  .float-badge.tr {
    right: 0;
    top: -18px;
  }
  /* two-col becomes one-col on tablet */
  .grid-2 {
    grid-template-columns: 1fr;
  }
  /* three-col stays two-col on tablet */
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  /* section head spacing */
  .section-head {
    margin-bottom: 44px;
  }
  /* cta-panel padding */
  .cta-panel {
    padding: 36px clamp(20px, 4vw, 48px);
  }
  /* contact grid single column */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .ev-about {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ---- 768px: portrait tablet ---- */
@media (max-width: 768px) {
  .hero-inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  /* limit hero image overlap so text is always readable */
  .hero {
    background-position: right center;
  }
  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(243,248,217,.97) 0%,
      rgba(251,251,243,.92) 40%,
      rgba(244,248,244,.7)  65%,
      rgba(244,248,244,.4)  100%
    );
  }
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .obj-card {
    padding: 28px 24px;
  }
  .platform-card {
    padding: 28px 26px;
  }
  .platform-card h3 {
    font-size: 20px;
  }
  /* hero stats strip */
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  /* stat grid two col */
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* mini stats */
  .mini-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  /* section-head lead text slightly smaller */
  .lead {
    font-size: 15.5px;
  }
  /* fact grid stays 2 col — fine */
  /* page-banner shrink */
  .page-banner {
    height: clamp(140px, 22vw, 220px);
  }
  /* vm cards grid */
  .grid.grid-2 .vm-card {
    padding: 32px;
  }
  /* form card */
  .form-card {
    padding: 28px 24px;
  }
  /* follow card */
  .follow-card {
    padding: 26px;
  }
}

/* ---- 640px: large phones / small tablets ---- */
@media (max-width: 640px) {
  .hero-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* stack hero CTA buttons vertically */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    justify-content: center;
    text-align: center;
  }
  /* all card grids go single column */
  .grid-cards {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  /* smaller card padding */
  .obj-card {
    padding: 24px 20px;
  }
  .obj-num {
    font-size: 40px;
  }
  /* platform card */
  .platform-card {
    padding: 24px 20px;
  }
  /* section head */
  .section-head {
    margin-bottom: 32px;
  }
  /* float badges — clip to grid on small phones */
  .float-badge {
    padding: 14px 18px;
  }
  .float-badge .fb-ico {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .fb-num {
    font-size: 22px;
  }
  /* event hero */
  .eh-inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
  /* vm-card padding */
  .vm-card {
    padding: 28px 24px;
  }
  /* cta panel */
  .cta-panel {
    padding: 32px 20px;
  }
  /* stat-strip single col */
  .stat-strip {
    grid-template-columns: 1fr;
  }
  /* fact grid single col on small */
  .fact-grid {
    grid-template-columns: 1fr;
  }
  /* slider buttons on events page */
  .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  /* social section heading */
  .bg-ink .section-head {
    padding: 0 var(--pad-x);
  }
  /* gallery already handled above */
}

/* ---- 480px: standard phones ---- */
@media (max-width: 480px) {
  :root {
    --pad-x: 16px;
  }
  .hero-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  /* prevent full-width btn from overflowing */
  .hero-actions .btn {
    width: 100%;
  }
  /* buttons slightly smaller */
  .btn {
    padding: 13px 20px;
    font-size: 15px;
    gap: 7px;
  }
  .btn-sm {
    padding: 12px 18px;
    font-size: 14px;
    margin-top: 20px;
  }
  .nav-cta {
    padding: 11px 16px;
    font-size: 14px;
  }
  /* grid-4 single column */
  .grid-4 {
    grid-template-columns: 1fr;
  }
  /* mini stats single row */
  .mini-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  /* stat grid */
  .stat-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  /* page banner */
  .page-banner {
    height: clamp(120px, 28vw, 160px);
  }
  .pb-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  /* countdown cells */
  .cd-num {
    font-size: 1.4rem;
  }
  /* countdown reduce gap */
  .countdown {
    gap: 6px;
  }
  .cd-cell {
    padding: 12px 4px;
  }
  /* event hero */
  .eh-inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .eh-meta {
    gap: 14px;
    font-size: 14px;
  }
  /* vm-card */
  .vm-card {
    padding: 24px 20px;
  }
  /* form card */
  .form-card {
    padding: 22px 18px;
  }
  /* info-card */
  .info-card {
    padding: 24px;
  }
  /* obj-card smaller font */
  .obj-card h3 {
    font-size: 18px;
  }
  /* platform card */
  .platform-card h3 {
    font-size: 18px;
  }
  .platform-card {
    padding: 22px 18px;
  }
  /* pc-link */
  .pc-link {
    padding: 11px 18px;
    font-size: 14px;
  }
  /* gallery-section head stays padded */
  .gallery-section .container {
    padding-bottom: 0;
  }
  /* glb buttons slightly smaller */
  .glb-prev, .glb-next {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }
}

/* ---- 380px: small phones ---- */
@media (max-width: 380px) {
  .hero-inner {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .hero-actions .btn {
    font-size: 14px;
    padding: 12px 16px;
  }
  .obj-card {
    padding: 20px 16px;
  }
  .platform-card {
    padding: 20px 16px;
  }
  .vm-card {
    padding: 20px 16px;
  }
  .vm-ico {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
  .obj-ico {
    width: 56px;
    height: 52px;
  }
  /* countdown very tight */
  .cd-num {
    font-size: 1.2rem;
  }
  .cd-lbl {
    font-size: 9px;
  }
  /* footer */
  .footer-grid {
    gap: 20px;
  }
  .footer-brand p {
    font-size: 13.5px;
  }
  /* gallery slightly smaller images */
  .gallery-item {
    width: 240px;
    height: 170px;
  }
}