/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* =============================================
   TOKENS
============================================= */
:root {
  --black:        #111111;
  --white:        #ffffff;
  --gray-bg:      #f5f5f5;
  --gray-light:   #efefef;
  --gray-border:  #e5e5e5;
  --text-muted:   #777777;
  --green:        #1a8c4e;
  --wa-green:     #25D366;
  --nav-h:        60px;
  --ann-h:        36px;
  --container:    1380px;
  --gap:          22px;
  --section-pad:  clamp(56px, 7vw, 96px);
  --ease:         cubic-bezier(.4,0,.2,1);
}

/* =============================================
   LAYOUT UTILS
============================================= */
/* Injected layout wrapper must not form a containing block, else the
   sticky navbar only sticks within the short #site-header div. */
#site-header { display: contents; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 3.2vw, 42px); font-weight: 700;
  line-height: 1.12; letter-spacing: -.022em; color: var(--black);
}
.section-title.light { color: var(--white); }

/* =============================================
   01  ANNOUNCEMENT BAR
============================================= */
.ann-bar {
  background: var(--black); color: var(--white);
  height: var(--ann-h); position: relative; z-index: 200;
}
.ann-bar .container {
  height: 100%; display: flex; align-items: center;
  justify-content: center; gap: 36px;
}
.ann-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 11.5px; color: rgba(255,255,255,.78);
  letter-spacing: .035em; white-space: nowrap;
}
.ann-item svg { flex-shrink: 0; opacity: .6; }
.ann-item a { color: inherit; transition: color .15s; }
.ann-item a:hover { color: #fff; }
@media (max-width: 860px) {
  .ann-bar .container { justify-content: flex-start; overflow-x: auto; gap: 24px; }
  .ann-item:nth-child(n+3) { display: none; }
}

/* =============================================
   02  NAVBAR
============================================= */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow .3s var(--ease);
}
.navbar.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.45); }
.nav-inner {
  display: flex; align-items: center;
  height: var(--nav-h); gap: 0;
}
.nav-logo { flex-shrink: 0; margin-right: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.nav-logo img { max-width: 100px; height: auto; object-fit: contain; filter: brightness(0) invert(1); }
.nav-logo-tagline { font-size: 8px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.75); white-space: nowrap; display: flex; align-items: center; gap: 3px; line-height: 1; }
.nav-no1 { display: inline-flex; align-items: center; gap: 2px; }
.nav-no1-text { color: #e5b36a; font-weight: 800; letter-spacing: .05em; font-size: 9px; }
.leaf-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* nav links */
.nav-links { display: flex; align-items: stretch; flex: 1; height: 100%; justify-content: center; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a, .nav-trigger {
  display: flex; align-items: center; gap: 4px; height: 100%;
  padding: 0 13px; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.75); white-space: nowrap; cursor: pointer;
  border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: inherit;
}
.nav-item > a:hover, .nav-trigger:hover,
.nav-item.active > a, .nav-item.active > .nav-trigger { color: #fff; border-bottom-color: #fff; }
.nav-trigger .chev { transition: transform .2s; }
.nav-item.open .chev { transform: rotate(180deg); }

/* nav right */
.nav-right { display: flex; align-items: center; gap: 6px; margin-left: auto; flex-shrink: 0; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green); color: #fff;
  font-size: 12.5px; font-weight: 700; letter-spacing: .02em;
  padding: 9px 18px; border-radius: 3px; white-space: nowrap;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav-cta svg { flex-shrink: 0; }
.nav-cta:hover { background: #157a43; transform: translateY(-1px); }
.lang-toggle {
  display: flex; background: rgba(255,255,255,.09);
  border-radius: 4px; overflow: hidden; font-size: 11.5px; font-weight: 600;
}
.lang-toggle a {
  padding: 4px 9px; color: rgba(255,255,255,.55); transition: all .15s;
}
.lang-toggle a.active, .lang-toggle a:hover {
  background: rgba(255,255,255,.18); color: #fff;
}
.nav-hamburger {
  display: none; width: 40px; height: 40px; align-items: center;
  justify-content: center; background: none; border: none;
  cursor: pointer; color: #fff;
}

/* ---- mega menu (full-width) ---- */
.mega-menu {
  position: fixed;
  top: calc(var(--ann-h) + var(--nav-h));
  left: 0; right: 0;
  background: #191919;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 32px 0 40px;
  opacity: 0; visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 99;
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
}
.mega-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
/* once the announcement bar scrolls away, the navbar sticks at top:0 —
   drop the mega menu up by the ann-bar height so it stays flush under the navbar */
.navbar.scrolled .mega-menu { top: var(--nav-h); }
.mega-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 40px; display: flex; gap: clamp(16px, 2.5vw, 40px);
}
.mega-col { min-width: 0; flex: 1; }
@media (max-width: 1200px) {
  .mega-inner { padding: 0 24px; }
  .mega-col-title { font-size: 9.5px; }
  .mega-link { font-size: 12px; }
}
@media (max-width: 1024px) {
  .mega-menu { padding: 24px 0 32px; }
  .mega-inner { flex-wrap: wrap; gap: 20px 32px; }
  .mega-col { flex: 0 0 calc(50% - 16px); }
}
.mega-col-title {
  display: block; text-decoration: none;
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s var(--ease);
}
a.mega-col-title:hover { color: var(--green); }
.mega-links { display: flex; flex-direction: column; gap: 2px; }
.mega-link {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,.65); padding: 5px 0;
  transition: color .15s; display: flex; align-items: center; gap: 7px;
}
.mega-link:hover { color: #fff; }
.mega-link .new-tag {
  font-size: 9.5px; font-weight: 700; background: var(--green);
  color: #fff; padding: 1px 5px; border-radius: 3px; text-transform: uppercase;
  letter-spacing: .06em;
}

/* ---- mega featured cards (with image) ---- */
.mega-cards { display: flex; flex-direction: column; gap: 8px; }
.mega-card { display: flex; align-items: center; gap: 10px; padding: 6px 8px; border-radius: 8px; text-decoration: none; transition: background .15s; }
.mega-card:hover { background: rgba(255,255,255,.08); }
.mega-card img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.mega-card-name { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.75); line-height: 1.2; }
.mega-card:hover .mega-card-name { color: #fff; }

/* ---- small dropdown ---- */
.dropdown-menu {
  position: absolute; top: calc(100% + 2px); left: 0;
  background: #191919; border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 8px; min-width: 190px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 99; box-shadow: 0 20px 48px rgba(0,0,0,.45);
}
.dropdown-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link {
  display: block; padding: 8px 12px; font-size: 13.5px;
  color: rgba(255,255,255,.7); border-radius: 5px; transition: all .15s;
}
.dropdown-link:hover { background: rgba(255,255,255,.07); color: #fff; }

/* ---- mobile drawer ---- */
.mob-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 150; opacity: 0; transition: opacity .3s;
  /* invisible-but-displayed overlay must NOT capture taps, else every link dies */
  pointer-events: none;
}
.mob-drawer {
  position: fixed; top: 0; left: -100%;
  width: 82%; max-width: 340px; height: 100vh; overflow-y: auto;
  background: #111; z-index: 160; transition: left .3s var(--ease);
  padding-bottom: 40px;
}
.mob-drawer.open  { left: 0; }
.mob-overlay.open { opacity: 1; pointer-events: auto; }
.mob-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 20px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.mob-head img { height: 18px; filter: brightness(0) invert(1); }
.mob-close { background: none; border: none; color: #fff; cursor: pointer; padding: 4px; }
.mob-nav-item { border-bottom: 1px solid rgba(255,255,255,.06); }
.mob-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 13px 20px; background: none; border: none;
  color: rgba(255,255,255,.82); font-size: 14px;
  font-family: inherit; cursor: pointer; text-align: left;
}
.mob-trigger .chev { transition: transform .2s; }
.mob-trigger.open .chev { transform: rotate(180deg); }
.mob-sub { display: none; background: rgba(0,0,0,.25); }
.mob-sub.open { display: block; }
.mob-sub-link {
  display: block; padding: 8px 20px 8px 32px;
  font-size: 13px; color: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.mob-link {
  display: block; padding: 13px 20px; font-size: 14px;
  color: rgba(255,255,255,.82); border-bottom: 1px solid rgba(255,255,255,.06);
}
.mob-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 18px 20px; padding: 13px 18px; border-radius: 4px;
  background: var(--green); color: #fff; font-size: 14px; font-weight: 700;
  transition: background .2s var(--ease);
}
.mob-cta svg { flex-shrink: 0; }
.mob-cta:hover { background: #157a43; }
@media (max-width: 1100px) {
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .mob-overlay, .mob-drawer { display: block; }
  .nav-logo { gap: 2px; margin-right: 0; }
  .nav-inner { height: auto; min-height: var(--nav-h); padding: 8px 16px; }
  .nav-logo-tagline { font-size: 7px; gap: 2px; }
  .nav-no1-text { font-size: 8px; }
  .leaf-icon { width: 11px; height: 15px; }
}
@media (max-width: 480px) {
  .nav-logo img { max-width: 80px; }
  .nav-logo-tagline { font-size: 6.5px; }
}
@media (max-width: 340px) {
  .nav-logo-tagline { display: none; }
  .nav-logo { gap: 0; }
}
@media (min-width: 1101px) { .mob-overlay, .mob-drawer { display: none !important; } }

/* =============================================
   03  HERO SLIDER
============================================= */
.hero {
  position: relative;
  height: calc(100vh - var(--ann-h) - var(--nav-h));
  min-height: 520px; max-height: 820px;
  overflow: hidden; background: #0d0d0d;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .9s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg,rgba(0,0,0,.68) 0%,rgba(0,0,0,.32) 55%,rgba(0,0,0,.08) 100%);
}
.hero-content {
  position: absolute; inset: 0; display: flex; align-items: center; z-index: 2;
}
.hero-text {
  padding: 0 40px; max-width: 580px;
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s var(--ease) .35s, transform .65s var(--ease) .35s;
}
.hero-slide.active .hero-text { opacity: 1; transform: translateY(0); }
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(34px, 5.2vw, 68px);
  font-weight: 800; line-height: 1.06; letter-spacing: -.03em;
  color: #fff; margin-bottom: 16px;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(14px, 1.4vw, 16px); font-weight: 400;
  color: rgba(255,255,255,.68); line-height: 1.6;
  margin-bottom: 32px; max-width: 400px;
}
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .055em;
  text-transform: uppercase; padding: 13px 26px; border-radius: 3px;
  cursor: pointer; transition: all .2s var(--ease); border: none;
  font-family: inherit; white-space: nowrap;
}
.btn-primary   { background: #fff; color: var(--black); }
.btn-primary:hover { background: #e8e8e8; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-dark  { background: var(--black); color: #fff; }
.btn-dark:hover { background: #222; transform: translateY(-1px); }

/* hero nav */
.hero-dots {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 7px; z-index: 3;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,.38); cursor: pointer; transition: all .25s;
}
.hero-dot.active { width: 22px; background: #fff; }
.hero-arr {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s; color: #fff;
}
.hero-arr:hover { background: rgba(255,255,255,.22); }
.hero-arr.prev { left: 20px; }
.hero-arr.next { right: 20px; }
@media (max-width: 768px) {
  .hero-text { padding: 0 20px; }
  .hero-arr  { display: none; }
}


/* =============================================
   05 / 06  EDITORIAL SECTIONS
============================================= */
.editorial {
  position: relative; min-height: 500px; overflow: hidden;
  display: flex; align-items: stretch;
}
.ed-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform-origin: center;
  transition: transform .7s var(--ease);
}
.editorial:hover .ed-bg { transform: scale(1.025); }
.ed-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(95deg,rgba(0,0,0,.74) 0%,rgba(0,0,0,.42) 50%,rgba(0,0,0,.06) 100%);
}
.ed-content { position: relative; z-index: 2; width: 100%; display: flex; align-items: stretch; }
.ed-text {
  max-width: 400px; padding: 64px 40px;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
}
.ed-text .section-eyebrow { color: rgba(255,255,255,.45); }
.ed-text .section-title   { color: #fff; margin-bottom: 12px; }
.ed-sub {
  font-size: 14.5px; color: rgba(255,255,255,.65);
  line-height: 1.6; margin-bottom: 26px;
}

/* product strip (right side) */
.ed-strip-wrap {
  flex: 1; display: flex; align-items: center;
  justify-content: flex-end; padding: 24px 0; overflow: hidden;
}
.ed-strip {
  display: flex; gap: 10px; padding: 12px 36px 12px 16px;
  overflow-x: auto; scrollbar-width: none;
}
.ed-strip::-webkit-scrollbar { display: none; }
.strip-card {
  flex-shrink: 0; width: 124px;
  background: rgba(255,255,255,.93); border-radius: 8px;
  overflow: hidden; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.strip-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.22); }
.strip-card-img {
  aspect-ratio: 1; background: var(--gray-light);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.strip-card-img img { width: 82%; height: 82%; object-fit: contain; transition: transform .3s; }
.strip-card:hover .strip-card-img img { transform: scale(1.08); }
.strip-card-body { padding: 8px 10px 10px; }
.strip-card-name { font-size: 11px; font-weight: 600; color: var(--black); line-height: 1.3; margin-bottom: 5px; }
.strip-card-cta  { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--black); }

@media (max-width: 860px) {
  .editorial { min-height: 460px; }
  .ed-text { padding: 48px 20px 32px; max-width: 100%; }
  .ed-strip-wrap { display: none; }
  .ed-overlay { background: linear-gradient(180deg,transparent 30%,rgba(0,0,0,.72) 100%); }
  .ed-text { justify-content: flex-end; }
}

/* =============================================
   07  POWER ALL SCENARIOS
============================================= */
.sec-scenarios { padding: var(--section-pad) 0; background: var(--gray-bg); }
.scenarios-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 36px;
}
.sc-card { position: relative; aspect-ratio: 9/14; border-radius: 8px; overflow: hidden; cursor: pointer; }
.sc-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.sc-card:hover img { transform: scale(1.06); }
.sc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.12) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px 16px;
}
.sc-label { font-size: 14.5px; font-weight: 600; color: #fff; margin-bottom: 5px; line-height: 1.2; }
.sc-cta {
  font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .07em;
  opacity: 0; transform: translateY(7px); transition: all .25s var(--ease);
}
.sc-card:hover .sc-cta { opacity: 1; transform: translateY(0); }
@media (max-width: 860px) { .scenarios-grid { grid-template-columns: repeat(2, 1fr); } }

/* =============================================
   08  TESTIMONIALS
============================================= */
.sec-testimonials { padding: var(--section-pad) 0; background: #fff; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--gap); margin-top: 36px;
}
.t-card { background: var(--gray-bg); border-radius: 10px; overflow: hidden; }
.t-img  { aspect-ratio: 4/3; overflow: hidden; }
.t-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.t-card:hover .t-img img { transform: scale(1.05); }
.t-body { padding: 18px; }
.t-quote {
  font-size: 13px; line-height: 1.65; color: #333; margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.t-footer { display: flex; align-items: center; justify-content: space-between; }
.t-name   { font-size: 12.5px; font-weight: 700; color: var(--black); }
.t-cta    {
  font-size: 11px; font-weight: 700; color: var(--black);
  text-transform: uppercase; letter-spacing: .05em;
  opacity: .45; transition: opacity .2s;
}
.t-card:hover .t-cta { opacity: 1; }
@media (max-width: 960px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .testimonials-grid { grid-template-columns: 1fr; } }

/* =============================================
   09  YOUTUBE VIDEOS
============================================= */
.sec-videos { padding: var(--section-pad) 0; background: var(--gray-bg); }
.videos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap); margin-top: 36px;
}
.v-card { cursor: pointer; }
.v-thumb {
  position: relative; aspect-ratio: 16/9; border-radius: 8px;
  overflow: hidden; background: #1a1a1a; margin-bottom: 11px;
}
.v-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--ease); }
.v-card:hover .v-thumb img { transform: scale(1.04); }
.v-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.28); transition: background .2s;
}
.v-card:hover .v-play { background: rgba(0,0,0,.12); }
.v-play-btn {
  width: 50px; height: 50px; background: rgba(255,255,255,.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s;
}
.v-card:hover .v-play-btn { transform: scale(1.12); background: #fff; }
.v-title { font-size: 13.5px; font-weight: 500; color: var(--black); line-height: 1.45; }
@media (max-width: 640px) { .videos-grid { grid-template-columns: 1fr; } }

/* =============================================
   10  ENDORSED BY
============================================= */
.sec-endorsed {
  padding: clamp(40px, 5vw, 64px) 0; background: #fff;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.endorsed-logos {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(24px, 4vw, 48px); flex-wrap: wrap; margin-top: 28px;
}
.e-logo img {
  height: 38px; width: auto; object-fit: contain;
  opacity: .65; filter: grayscale(100%); transition: all .3s;
  height: 56px;
}
.e-logo:hover img { opacity: 1; filter: grayscale(0%); }

/* =============================================
   11  BECOME A MEMBER
============================================= */
.sec-member { padding: var(--section-pad) 0; background: var(--black); }
.member-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.member-text .section-eyebrow { color: rgba(255,255,255,.35); }
.member-text .section-title   { color: #fff; margin-bottom: 14px; }
.member-desc {
  font-size: 15px; color: rgba(255,255,255,.6);
  line-height: 1.65; margin-bottom: 28px; max-width: 440px;
}
.member-img { border-radius: 10px; overflow: hidden; }
.member-img img { width: 100%; height: auto; display: block; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--wa-green); color: #fff;
  font-size: 13px; font-weight: 700; padding: 13px 26px; border-radius: 3px;
  letter-spacing: .04em; text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.btn-wa:hover { background: #22c35e; transform: translateY(-1px); }
/* Konsultasi (Lark form) — sama persis btn-wa, beda warna saja (brand hijau-gelap) */
.btn-form { background: var(--green); }
.btn-form:hover { background: #157a43; }
@media (max-width: 860px) {
  .member-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* =============================================
   12  FOOTER
============================================= */
.footer { background: #0a0a0a; padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 36px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand-logo { margin-bottom: 13px; }
.footer-brand-logo img { height: 28px; filter: brightness(0) invert(1); }
.footer-brand-desc {
  font-size: 12.5px; color: rgba(255,255,255,.35);
  line-height: 1.65; max-width: 240px; margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.07); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.5); transition: all .2s;
}
.footer-social a:hover { background: rgba(255,255,255,.14); color: #fff; }
.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: rgba(255,255,255,.82); margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link  { font-size: 12.5px; color: rgba(255,255,255,.42); transition: color .15s; line-height: 1.4; }
.footer-link:hover { color: rgba(255,255,255,.88); }
.footer-contact-item { margin-bottom: 11px; }
.footer-contact-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.28); margin-bottom: 2px;
}
.footer-contact-val { font-size: 12.5px; color: rgba(255,255,255,.5); line-height: 1.45; word-break: break-all; overflow-wrap: break-word; }
.footer-contact-val a { color: inherit; transition: color .15s; }
.footer-contact-val a:hover { color: rgba(255,255,255,.88); }
.footer-bottom {
  padding: 18px 0; display: flex; align-items: flex-start;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 11.5px; color: rgba(255,255,255,.28); }
.footer-disclaimer {
  font-size: 10.5px; color: rgba(255,255,255,.18);
  max-width: 560px; line-height: 1.55; text-align: right;
}
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-disclaimer { text-align: left; } }
@media (max-width: 400px)  { .footer-grid { grid-template-columns: 1fr; } }

/* =============================================
   FLOATING BUTTONS (WA + Quick Links)
============================================= */
.wa-float {
  position: fixed; bottom: 26px; right: 26px;
  width: 54px; height: 54px; background: var(--wa-green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 90;
  color: #fff; transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }

/* Quick Links FAB — sits below WA */
.fab-wrap {
  position: fixed; bottom: 90px; right: 26px; z-index: 90;
}
.fab-btn {
  width: 54px; height: 54px; background: var(--black);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25); color: #fff;
  transition: transform .2s, background .2s;
}
.fab-btn:hover { transform: scale(1.08); background: #333; }
.fab-icon-close { display: none; }
.fab-wrap.open .fab-icon-grid  { display: none; }
.fab-wrap.open .fab-icon-close { display: block; }
.fab-wrap.open .fab-btn { background: #444; }

/* popup panel — card above button */
.fab-panel {
  position: absolute; bottom: calc(100% + 12px); right: 0;
  width: 300px; background: #fff;
  border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,.18);
  overflow: hidden;
  opacity: 0; transform: translateY(10px) scale(.97);
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.fab-wrap.open .fab-panel {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}
.fab-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px 12px; border-bottom: 1px solid var(--gray-border);
}
.fab-panel-title { font-size: 14px; font-weight: 700; }
.fab-panel-close {
  background: none; border: none; cursor: pointer; color: var(--text-muted);
  display: flex; align-items: center; padding: 2px;
  transition: color .15s;
}
.fab-panel-close:hover { color: var(--black); }

.fab-option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; text-decoration: none; color: var(--black);
  border-bottom: 1px solid var(--gray-border);
  transition: background .15s;
}
.fab-option:last-of-type { border-bottom: none; }
.fab-option:hover { background: var(--gray-bg); }
.fab-opt-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.fab-option:nth-of-type(1) .fab-opt-icon { background: #1a56db; }
.fab-option:nth-of-type(2) .fab-opt-icon { background: var(--green); }
.fab-option:nth-of-type(3) .fab-opt-icon { background: #7c3aed; }
.fab-opt-body { flex: 1; min-width: 0; }
.fab-opt-label { display: block; font-size: 13px; font-weight: 600; line-height: 1.3; }
.fab-opt-sub   { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.fab-opt-arrow { flex-shrink: 0; color: var(--text-muted); }

.fab-panel-footer {
  padding: 12px 18px; background: var(--gray-bg); text-align: center;
}
.fab-panel-cta {
  display: inline-block; font-size: 13px; font-weight: 700;
  color: var(--black); text-decoration: none;
  border: 2px solid var(--black); border-radius: 8px;
  padding: 9px 20px; width: 100%; text-align: center;
  transition: background .15s, color .15s;
}
.fab-panel-cta:hover { background: var(--black); color: #fff; }

@media (max-width: 480px) {
  .fab-panel { width: calc(100vw - 32px); right: 0; }
  .fab-wrap  { right: 16px; }
  .wa-float  { right: 16px; bottom: 16px; }
}

/* =============================================
   RECOMMENDED PRODUCTS SECTION
============================================= */
.sec-recommended { padding: var(--section-pad) 0; background: var(--gray-bg); }
.rec-head { margin-bottom: 28px; }

/* slider wrapper — arrows sit outside the track */
.rec-slider-wrap {
  position: relative;
}
.rec-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--gray-border);
  background: #fff; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  transition: box-shadow .15s, border-color .15s;
}
.rec-arr:hover { box-shadow: 0 4px 16px rgba(0,0,0,.18); border-color: #bbb; }
.rec-arr.rec-prev { left: -20px; }
.rec-arr.rec-next { right: -20px; }
.rec-arr[disabled] { opacity: .35; pointer-events: none; }

/* scrollable track */
.rec-grid {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: 6px;
}
.rec-grid::-webkit-scrollbar { display: none; }

/* each card is an anchor wrapping ed2-card styles */
.rec-item {
  flex: 0 0 calc((100% - 16px * 3.5) / 4.5);
  min-width: 200px; scroll-snap-align: start;
  background: #fff; border-radius: 16px;
  display: flex; flex-direction: column;
  padding: 14px 14px 18px; position: relative;
  text-decoration: none; color: var(--black);
  transition: box-shadow .2s;
}
.rec-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,.10); }

/* image area — gray bg to match ed2-card section */
.rec-item .ed2-card-img {
  aspect-ratio: 1; overflow: hidden; position: relative;
  margin-bottom: 14px; border-radius: 10px;
  background: var(--gray-bg);
  display: flex; align-items: center; justify-content: center;
}
/* base product image only */
.rec-item .ed2-card-img img:not(.ed2-img-hover) {
  max-width: 82%; max-height: 82%; object-fit: contain;
  transition: transform .3s var(--ease), opacity .35s var(--ease);
}
.rec-item:hover .ed2-card-img img:not(.ed2-img-hover) { transform: scale(1.06); }
/* lifestyle hover image */
.rec-item .ed2-img-hover {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-width: 100%; max-height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.rec-item:hover .ed2-img-hover { opacity: 1; }
/* hide base image when hovered and hover img present */
.rec-item .ed2-card-img:has(.ed2-img-hover[src]):hover img:not(.ed2-img-hover) { opacity: 0; }

/* spec key/value table inside rec-item cards */
.ed2-spec-table {
  display: grid; grid-template-columns: auto 1fr;
  gap: 3px 10px; margin-bottom: 10px; width: 100%;
}
.ed2-spec-key { font-size: 11.5px; color: var(--text-muted); }
.ed2-spec-val { font-size: 11.5px; font-weight: 700; color: var(--black); text-align: right; }

/* category tag pill — matches ed2-card section gray pill */
.ed2-spec-tag {
  display: inline-block; align-self: flex-start;
  font-size: 10px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-muted);
  background: var(--gray-bg); border: 1px solid var(--gray-border);
  border-radius: 999px; padding: 3px 10px; margin-bottom: 4px;
  width: fit-content;
}

/* Shop Now button — solid black pill, always visible */
.ed2-cta-dark {
  margin-top: auto;
  display: block; background: var(--black); color: #fff;
  border-radius: 999px; padding: 12px 0;
  font-size: 13px; font-weight: 700; letter-spacing: .01em;
  text-align: center; width: 100%;
  transition: background .15s;
}
.ed2-cta-dark:hover { background: #2a2a2a; }
/* equal card height so Shop Now row always aligns */
.rec-item { min-height: 410px; }
/* normalise badge+tag row — same height across all cards */
.rec-meta {
  display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px;
  min-height: 50px;
}
.rec-meta .ed2-badge { margin-bottom: 0; }
.rec-meta .ed2-spec-tag { margin-bottom: 0; }
.rec-badge-ghost { visibility: hidden; }
.rec-tag-ghost { visibility: hidden; }

@media (max-width: 1024px) {
  .rec-item { flex: 0 0 calc((100% - 16px * 2.5) / 3.5); }
  .rec-arr.rec-prev { left: -14px; }
  .rec-arr.rec-next { right: -14px; }
}
@media (max-width: 640px) {
  .rec-item { flex: 0 0 calc((100% - 16px * 1.5) / 2.3); }
  .rec-arr { display: none; }
}

/* =============================================
   STATS SECTION
============================================= */
.sec-stats {
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 6vw, 72px);
  background: linear-gradient(180deg,
    #f9ddb4 0%, #fae8c8 18%,
    #fdf1e0 40%, #faf4ec 65%,
    #f7f2ee 100%);
  border-bottom: 1px solid #ecddd0;
  text-align: center;
  overflow: hidden;
}
.stats-headline {
  font-size: clamp(16px, 1.8vw, 22px); font-weight: 400;
  color: #333; margin-bottom: 44px; letter-spacing: -.01em;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
}
.no1-badge {
  display: inline-flex; align-items: center; gap: 5px;
  color: #9a6e14; font-style: italic; font-weight: 800;
  font-size: clamp(20px, 2.4vw, 30px);
}
.no1-badge svg { flex-shrink: 0; }
.stats-row {
  display: flex; justify-content: center; align-items: flex-start;
  gap: clamp(28px, 7vw, 100px); flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.stat-sup  { font-size: 11px; font-weight: 400; color: #aaa; letter-spacing: .04em; margin-bottom: 1px; }
.stat-num  { font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: -.03em; color: #222; line-height: 1.05; }
.stat-label{ font-size: 12px; color: #888; margin-top: 2px; font-weight: 500; }

/* =============================================
   CATEGORY NAV
============================================= */
.sec-cat-nav {
  background: #f8f8f6; border-bottom: 1px solid var(--gray-border);
}
.cat-nav-scroll {
  display: flex; align-items: stretch; overflow-x: auto;
  scrollbar-width: none; gap: 0; padding: 0 20px;
  /* safe center: centers when items fit, but falls back to start-aligned
     when they overflow so off-screen items stay reachable by scroll/swipe.
     Plain `center` makes overflowed left/right items unclickable. */
  justify-content: safe center;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scroll-snap-type: x proximity;
}
.cat-nav-scroll::-webkit-scrollbar { display: none; }
.cat-link { scroll-snap-align: start; }
.cat-link {
  flex-shrink: 0; padding: 16px 20px 14px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; color: #666; white-space: nowrap;
  border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.cat-link.active { color: #111; font-weight: 600; }
/* underline only on hover — disappears when not hovering */
.cat-link:hover { color: #111; font-weight: 600; border-bottom-color: #111; }
.cat-icon {
  width: 52px; height: 52px; object-fit: contain;
  filter: grayscale(60%) brightness(0.75);
  transition: filter .2s;
}
.cat-link:hover .cat-icon, .cat-link.active .cat-icon {
  filter: grayscale(0%) brightness(1);
}
@media (max-width: 768px) {
  /* hard start-align on mobile (fallback for browsers without `safe` keyword) */
  .cat-nav-scroll { justify-content: flex-start; padding: 0 16px; }
  .cat-icon { width: 40px; height: 40px; }
  .cat-link { padding: 12px 14px 10px; gap: 6px; }
}

/* =============================================
   EDITORIAL V2 (EcoFlow PH style)
============================================= */
.editorial-v2 { padding: 0 0 var(--section-pad); background: #fff; }
.ed2-label {
  font-size: 13.5px; font-weight: 700; letter-spacing: -.022em; color: var(--black);
  padding: clamp(28px, 3.5vw, 48px) 0 14px;
  border-top: 1px solid var(--gray-border);
}
.ed2-banner {
  position: relative; border-radius: 8px; overflow: hidden;
  cursor: pointer;
}
.ed2-banner-img {
  width: 100%; height: clamp(260px, 28vw, 420px);
  object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.ed2-banner:hover .ed2-banner-img { transform: scale(1.02); }
.ed2-banner-content {
  position: absolute; bottom: 0; left: 0; padding: 28px 32px;
  background: linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
  width: 100%;
}
.ed2-banner-title {
  font-size: clamp(16px, 1.8vw, 22px); font-weight: 600; color: #fff;
  line-height: 1.3; margin-bottom: 7px; max-width: 380px;
}
.ed2-banner-sub {
  font-size: 13px; color: rgba(255,255,255,.82);
  margin-bottom: 14px; max-width: 340px;
}
.btn-pill {
  display: inline-block; padding: 7px 20px;
  background: rgba(255,255,255,.92); color: #111;
  font-size: 12.5px; font-weight: 500; border-radius: 20px;
  transition: background .18s; border: none;
}
.btn-pill:hover { background: #fff; }
/* product row below banner */
.ed2-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 170px;
  border: 1px solid var(--gray-border);
  border-top: none; border-radius: 0 0 8px 8px; overflow: hidden;
}
.ed2-card {
  background: #fff; padding: 20px 14px 18px;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--gray-border);
  cursor: pointer; transition: box-shadow .2s;
}
.ed2-card:hover { box-shadow: inset 0 0 0 1px #ccc; }
.ed2-card-img {
  position: relative;
  aspect-ratio: 1; display: flex; align-items: center;
  justify-content: center; overflow: hidden; margin-bottom: 12px;
}
.ed2-card-img img {
  max-width: 82%; max-height: 82%; object-fit: contain;
  transition: transform .3s var(--ease), opacity .35s var(--ease);
}
.ed2-card:hover .ed2-card-img img { transform: scale(1.06); }
/* hover lifestyle photo — crossfades over the white product shot */
.ed2-img-hover {
  position: absolute; inset: 0; margin: auto;
  max-width: 100% !important; max-height: 100% !important;
  width: 100%; height: 100%; object-fit: cover !important;
  opacity: 0;
}
.ed2-card:hover .ed2-img-hover { opacity: 1; transform: none; }
.ed2-card-img:has(.ed2-img-hover):hover img:first-child { opacity: 0; }
.ed2-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: var(--green);
  border-radius: 4px; padding: 3px 8px;
  margin-bottom: 3px; line-height: 1.4;
}
.ed2-name  { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 6px; line-height: 1.3; }
.ed2-spec  { font-size: 11.5px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.45; flex: 1; }
/* rating + sold (illustrative marketplace social proof) */
.ed2-rating {
  display: flex; align-items: center; gap: 5px;
  font-size: 12.5px; color: var(--text-muted); margin-bottom: 14px;
}
.ed2-rating svg { color: #f5a623; flex-shrink: 0; }
.ed2-rating b { color: #111; font-weight: 700; }
.ed2-rating .ed2-dot { color: var(--gray-border); }
/* Shop Now — hidden until hover, then a blue pill (EcoFlow PH style) */
.ed2-cta   {
  align-self: flex-start; margin-top: 2px;
  padding: 7px 18px; border-radius: 999px;
  background: #2b6fd6; color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0;
  opacity: 0; transform: translateY(5px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s;
}
.ed2-card:hover .ed2-cta { opacity: 1; transform: none; }
.ed2-cta:hover { background: #1a5cc0; }
/* see more card */
.ed2-see-more {
  background: #fff; padding: 20px 14px 18px;
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer;
}
.ed2-see-more-stack {
  flex: 1; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.ed2-see-more-stack img { max-width: 90%; max-height: 110px; object-fit: contain; opacity: .55; }
.ed2-see-more-bottom { padding-top: 12px; }
.ed2-see-more-label {
  font-size: 13px; font-weight: 500; color: #333;
  display: flex; align-items: center; gap: 7px; margin-bottom: 10px;
}
.ed2-see-more-label .circle-arrow {
  width: 22px; height: 22px; border: 1px solid #ccc; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ed2-choose {
  font-size: 12px; color: #1a6bc4;
  display: flex; align-items: center; gap: 7px;
}
.ed2-choose .circle-arrow {
  width: 20px; height: 20px; border: 1px solid #1a6bc4; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: #1a6bc4;
}
@media (max-width: 960px) {
  .ed2-products { grid-template-columns: repeat(2, 1fr); }
  .ed2-see-more { display: none; }
}
@media (max-width: 480px) {
  .ed2-products { grid-template-columns: repeat(2, 1fr); }
  .ed2-banner-content { padding: 20px; }
}
.sec-trust { padding: var(--section-pad) 0; background: var(--gray-bg); }
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 40px;
  background: var(--gray-border); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--gray-border);
}
.trust-card {
  background: #fff; padding: 32px 24px 36px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px;
}
.trust-card-visual {
  height: 72px; display: flex; align-items: center; justify-content: center;
}
.trust-card-visual img { max-height: 72px; width: auto; object-fit: contain; }
.trust-card-title { font-size: 14.5px; font-weight: 700; color: var(--black); line-height: 1.25; }
.trust-card-desc  { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; max-width: 220px; }
@media (max-width: 860px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .trust-grid { grid-template-columns: 1fr; } }

/* =============================================
   REVEAL ANIMATIONS
============================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0; transform: translateY(22px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
  }
  .reveal.vis { opacity: 1; transform: translateY(0); }
  .reveal-d1 { transition-delay: .08s; }
  .reveal-d2 { transition-delay: .16s; }
  .reveal-d3 { transition-delay: .24s; }
  .reveal-d4 { transition-delay: .32s; }
}
