@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --bb-green: #00715f;
  --bb-green-dark: #005846;
  --bb-green-deep: #004f40;
  --bb-lime: #bddb1f;
  --bb-lime-soft: #d6ec57;
  --bb-cream: #f5f6f2;
  --bb-white: #ffffff;
  --bb-ink: #10211d;
  --bb-muted: #60716c;
  --bb-line: rgba(0, 88, 70, 0.14);
  --bb-shadow: 0 26px 70px rgba(0, 88, 70, 0.14);
  --bb-shadow-strong: 0 34px 90px rgba(0, 88, 70, 0.2);
  --bb-radius: 26px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

.bb-pop-page,
.bb-pop-page * {
  box-sizing: border-box;
}

.bb-pop-page {
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(189, 219, 31, 0.18), transparent 26%),
    radial-gradient(circle at 92% 10%, rgba(0, 113, 95, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f5f6f2 52%, #ffffff 100%);
  color: var(--bb-ink);
  font-family: "Source Sans 3", "Source Sans Pro", Arial, sans-serif;
}

/* Fixed top bar */
.bb-pop-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: var(--bb-lime-soft);
  z-index: 99999;
  pointer-events: none;
}

.bb-pop-page a {
  color: inherit;
  text-decoration: none;
}

.bb-pop-page img {
  display: block;
  max-width: 100%;
}

.bb-pop-wrap {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

/* GLAVA */

.bb-pop-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 88, 70, 0.08);
  transition: box-shadow 0.35s ease, background 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}

.bb-pop-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 45px rgba(0, 88, 70, 0.12);
}

.bb-pop-header__inner {
  width: min(1240px, calc(100% - 44px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px 1fr auto auto;
  align-items: center;
  gap: 26px;
}

.bb-pop-logo {
  width: 174px;
  display: inline-flex;
  align-items: center;
}

.bb-pop-logo img {
  width: 100%;
  height: auto;
}

.bb-pop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
}

.bb-pop-nav a {
  position: relative;
  color: var(--bb-green-dark);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 12px 0;
}

.bb-pop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--bb-lime);
  transition: width 0.28s ease;
}

.bb-pop-nav a:hover::after {
  width: 100%;
}

.bb-pop-menu {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(0, 113, 95, 0.08);
  cursor: pointer;
}

.bb-pop-menu span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--bb-green-dark);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.bb-pop-menu.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bb-pop-menu.is-open span:nth-child(2) {
  opacity: 0;
}

.bb-pop-menu.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.bb-pop-mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto 18px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--bb-shadow);
}

.bb-pop-mobile-nav a {
  display: block;
  padding: 13px 14px;
  color: var(--bb-green-dark);
  font-weight: 800;
  border-bottom: 1px solid rgba(0, 88, 70, 0.09);
}

.bb-pop-mobile-nav a:last-child {
  border-bottom: 0;
  color: var(--bb-white);
  background: var(--bb-green);
  border-radius: 13px;
  margin-top: 8px;
}

/* GUMBI */

.bb-pop-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 26px;
  border: 2px solid var(--bb-green);
  border-radius: 17px;
  background: linear-gradient(135deg, var(--bb-green-dark), var(--bb-green));
  color: var(--bb-white);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(0, 88, 70, 0.24);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.bb-pop-btn::before {
  content: "";
  position: absolute;
  inset: -60% -30%;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.34) 48%, transparent 64%);
  transform: translateX(-80%) rotate(12deg);
  transition: transform 0.75s ease;
}

.bb-pop-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(0, 88, 70, 0.3);
}

.bb-pop-btn:hover::before {
  transform: translateX(80%) rotate(12deg);
}

.bb-pop-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.bb-pop-btn:hover svg {
  transform: translateX(4px);
}

.bb-pop-btn--small {
  min-height: 46px;
  padding: 0 18px;
  font-size: 15px;
  border-radius: 15px;
}

.bb-pop-btn--small svg {
  width: 20px;
  height: 20px;
}

.bb-pop-btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--bb-green-dark);
  border-color: rgba(0, 88, 70, 0.35);
  box-shadow: 0 16px 34px rgba(0, 88, 70, 0.08);
}

.bb-pop-btn--ghost:hover {
  border-color: var(--bb-green);
}

.bb-pop-btn--dark {
  background: linear-gradient(135deg, var(--bb-green-deep), var(--bb-green-dark));
  border-color: var(--bb-green-deep);
  color: var(--bb-white);
}

/* HERO */

.bb-pop-hero {
  position: relative;
  min-height: 760px;
  padding: 86px 0 52px;
  background-image: url('image/banner-popup.png');
  background-size: cover;
  background-position: center calc(50% + var(--bb-hero-y, 0px));
  background-repeat: no-repeat;
}

.bb-pop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 34%, rgba(255,255,255,0.86) 48%, rgba(255,255,255,0.28) 64%, rgba(255,255,255,0) 78%),
    linear-gradient(115deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.62) 44%, rgba(255,255,255,0.08) 58%, transparent 74%),
    linear-gradient(180deg, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}

.bb-pop-hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.75;
  animation: bbFloat 7s ease-in-out infinite;
  pointer-events: none;
}

.bb-pop-hero__glow--one {
  top: 130px;
  left: 7%;
  width: 160px;
  height: 160px;
  background: rgba(189, 219, 31, 0.28);
}

.bb-pop-hero__glow--two {
  right: 8%;
  bottom: 92px;
  width: 220px;
  height: 220px;
  background: rgba(0, 113, 95, 0.13);
  animation-delay: -2.5s;
}

.bb-pop-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
}

.bb-pop-hero__content {
  position: relative;
  z-index: 0;
  isolation: isolate;
}

.bb-pop-hero__content::before {
  content: "";
  position: absolute;
  inset: -28px -30px -28px -42px;
  z-index: -1;
  border-radius: 30px;
  background: radial-gradient(ellipse at 40% 50%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.72) 46%, rgba(255,255,255,0) 76%);
  filter: blur(2px);
  pointer-events: none;
}

.bb-pop-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: var(--bb-green-dark);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bb-pop-kicker span {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: var(--bb-lime);
  box-shadow: 0 0 0 8px rgba(189, 219, 31, 0.12);
}

.bb-pop-kicker--dark {
  color: var(--bb-green-deep);
}

.bb-pop-hero h1 {
  margin: 0;
  color: #071711;
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.bb-pop-hero h1 strong {
  color: var(--bb-green);
  font-weight: 950;
}

.bb-pop-lead {
  margin: 28px 0 0;
  color: #13251f;
  font-size: 21px;
  line-height: 1.32;
  font-weight: 850;
}

.bb-pop-copy {
  max-width: 660px;
  margin: 18px 0 0;
  color: #243932;
  font-size: 18px;
  line-height: 1.58;
  font-weight: 550;
}

.bb-pop-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

/* HERO: ensure buttons inside hero area have white text */
.bb-pop-hero .bb-pop-btn {
  color: var(--bb-white);
}

/* Site-wide: ensure all elements using bb-pop-btn variants show white text */
a[class*="bb-pop-btn"],
button[class*="bb-pop-btn"],
[class*="bb-pop-btn"] {
  color: var(--bb-white) !important;
}

/* TOP PRODUKTI */

.bb-pop-products-strip {
  position: relative;
  z-index: 3;
  margin-top: -18px;
  padding: 0 0 70px;
}

.bb-pop-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.bb-pop-mini-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  min-height: 220px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0, 88, 70, 0.12);
  box-shadow: 0 20px 48px rgba(0, 88, 70, 0.11);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.bb-pop-mini-card:hover {
  transform: translateY(-8px);
  border-color: rgba(189, 219, 31, 0.9);
  box-shadow: 0 28px 62px rgba(0, 88, 70, 0.18);
}

.bb-pop-mini-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

.bb-pop-mini-card:hover img {
  transform: scale(1.06);
}

.bb-pop-mini-card span {
  align-self: end;
  padding: 16px 48px 8px 4px;
  color: var(--bb-ink);
  font-size: 18px;
  font-weight: 900;
}

.bb-pop-mini-card i,
.bb-pop-product-card i {
  position: absolute;
  right: 15px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bb-lime);
  color: var(--bb-green-deep);
  box-shadow: 0 10px 20px rgba(189, 219, 31, 0.34);
  transition: transform 0.26s ease, background 0.26s ease;
}

.bb-pop-mini-card:hover i,
.bb-pop-product-card:hover i {
  transform: translateX(4px) rotate(-8deg);
  background: var(--bb-lime-soft);
}

.bb-pop-mini-card svg,
.bb-pop-product-card svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* SECTION HEAD */

.bb-pop-section-head {
  text-align: center;
  margin-bottom: 46px;
}

.bb-pop-section-head h2 {
  margin: 0;
  color: #071711;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.bb-pop-section-head p {
  margin: 13px 0 0;
  color: var(--bb-muted);
  font-size: 20px;
  font-weight: 750;
}

/* KORAKI */

.bb-pop-process {
  position: relative;
  padding: 48px 0 72px;
}

.bb-pop-process::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 225px;
  width: min(860px, calc(100% - 80px));
  height: 2px;
  transform: translateX(-50%);
  background-image: linear-gradient(90deg, rgba(0,113,95,0.08), rgba(0,113,95,0.4) 50%, rgba(0,113,95,0.08));
}

.bb-pop-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bb-pop-step {
  position: relative;
  min-height: 315px;
  padding: 58px 26px 30px;
  text-align: center;
  border-radius: 28px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,88,70,0.1);
  box-shadow: 0 22px 58px rgba(0,88,70,0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.bb-pop-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 72px rgba(0,88,70,0.16);
}

.bb-pop-step__icon {
  position: absolute;
  left: 50%;
  top: -38px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--bb-lime);
  color: var(--bb-green-deep);
  box-shadow: 0 16px 32px rgba(189,219,31,0.35);
}

.bb-pop-step__icon svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bb-pop-step__number {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--bb-green);
  color: var(--bb-lime);
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 0 0 8px rgba(0,113,95,0.08);
}

.bb-pop-step h3 {
  margin: 0 0 12px;
  color: var(--bb-green-dark);
  font-size: 22px;
  font-weight: 950;
}

.bb-pop-step p {
  margin: 0;
  color: #263b34;
  font-size: 16.8px;
  line-height: 1.46;
  font-weight: 550;
}

/* PRODUCT GRID */

.bb-pop-product-grid-section {
  padding: 36px 0 82px;
}

.bb-pop-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bb-pop-product-card {
  position: relative;
  min-height: 355px;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 88, 70, 0.11);
  box-shadow: 0 24px 62px rgba(0, 88, 70, 0.11);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bb-pop-product-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 34px 84px rgba(0, 88, 70, 0.17);
}

.bb-pop-product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.bb-pop-product-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.04);
}

.bb-pop-product-card div {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px 62px 18px 22px;
  background: linear-gradient(180deg, #fff, #fbfcf8);
}

.bb-pop-product-card span {
  color: var(--bb-ink);
  font-size: 22px;
  font-weight: 950;
}

/* WHY */

.bb-pop-why {
  position: relative;
  padding: 68px 0 100px;
  background:
    radial-gradient(circle at 12% 18%, rgba(189,219,31,0.15), transparent 24%),
    linear-gradient(180deg, #ffffff, #f5f6f2);
}

.bb-pop-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bb-pop-why-card {
  position: relative;
  min-height: 300px;
  padding: 36px 34px;
  border-radius: 28px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,88,70,0.11);
  box-shadow: 0 24px 64px rgba(0,88,70,0.1);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.bb-pop-why-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(189,219,31,0.18);
  transition: transform 0.45s ease;
}

.bb-pop-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 84px rgba(0,88,70,0.16);
}

.bb-pop-why-card:hover::before {
  transform: scale(1.25);
}

.bb-pop-why-card__icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: rgba(189,219,31,0.18);
  color: var(--bb-green);
}

.bb-pop-why-card__icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bb-pop-why-card h3 {
  margin: 0 0 13px;
  color: var(--bb-green-dark);
  font-size: 25px;
  line-height: 1.06;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.bb-pop-why-card p {
  margin: 0;
  color: #253a33;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 550;
}

/* CTA */

.bb-pop-final-cta {
  position: relative;
  padding: 78px 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(255,255,255,0.3), transparent 28%),
    linear-gradient(135deg, var(--bb-lime) 0%, #cce72f 52%, #afcf17 100%);
  overflow: hidden;
}

.bb-pop-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16) 0 12%, transparent 12% 26%, rgba(255,255,255,0.1) 26% 34%, transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(0,88,70,0.16), transparent 30%);
  pointer-events: none;
}

.bb-pop-final-cta__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 54px;
}

.bb-pop-final-cta h2 {
  margin: 0;
  color: var(--bb-green-deep);
  font-size: clamp(42px, 4.7vw, 70px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.bb-pop-final-cta p {
  margin: 18px 0 30px;
  color: var(--bb-green-deep);
  font-size: 24px;
  font-weight: 850;
}

.bb-pop-final-cta__visual {
  position: relative;
  min-height: 330px;
}

.bb-pop-final-cta__visual img {
  position: absolute;
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(0,88,70,0.2);
  object-fit: cover;
}

.bb-pop-final-cta__visual img:nth-child(1) {
  right: 18px;
  bottom: 20px;
  width: 48%;
  height: 250px;
  transform: rotate(3deg);
  animation: bbFloat 6s ease-in-out infinite;
}

.bb-pop-final-cta__visual img:nth-child(2) {
  left: 40px;
  bottom: 42px;
  width: 42%;
  height: 230px;
  transform: rotate(-5deg);
  animation: bbFloat 7s ease-in-out infinite reverse;
}

.bb-pop-final-cta__visual img:nth-child(3) {
  left: 34%;
  top: 0;
  width: 36%;
  height: 300px;
  transform: rotate(2deg);
  animation: bbProductFloat 6.8s ease-in-out infinite;
}

/* FOOTER */

.bb-pop-footer {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 20% 15%, rgba(189,219,31,0.09), transparent 22%),
    linear-gradient(135deg, #006d5a 0%, #005846 58%, #004739 100%);
}

.bb-pop-footer__grid {
  display: grid;
  grid-template-columns: 1.45fr 1.1fr 1fr 1.05fr 0.92fr 1fr;
  gap: 34px;
  padding: 72px 0 58px;
}

.bb-pop-footer__brand img {
  width: 210px;
  margin-bottom: 34px;
  filter: brightness(0) invert(1);
}

.bb-pop-footer h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.bb-pop-footer__sub {
  margin-top: 34px !important;
}

.bb-pop-footer a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 0 9px;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  font-weight: 400;
  transition: color 0.22s ease, transform 0.22s ease;
}

.bb-pop-footer a:hover {
  color: var(--bb-lime);
  transform: translateX(4px);
}

.bb-pop-footer__certs div {
  display: grid;
  grid-template-columns: repeat(2, 72px);
  gap: 14px;
  align-items: center;
}

.bb-pop-footer__certs img {
  max-width: 74px;
  max-height: 84px;
  padding: 7px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
}

.bb-pop-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
}

.bb-pop-footer__bottom .bb-pop-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 400;
}

/* ANIMACIJE */

.bb-pop-page:not(.is-loaded) .bb-pop-header {
  opacity: 0;
  transform: translateY(-18px);
}

.bb-pop-page:not(.is-loaded) .bb-pop-hero {
  opacity: 0;
  transform: scale(1.018);
  filter: saturate(0.86) brightness(1.06) blur(10px);
}

.bb-reveal {
  --bb-reveal-y: 64px;
  --bb-reveal-scale: 0.94;
  --bb-reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, var(--bb-reveal-y), 0) scale(var(--bb-reveal-scale));
  filter: blur(14px);
  will-change: opacity, transform, filter;
}

.bb-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.bb-pop-hero__content.bb-reveal {
  --bb-reveal-y: 42px;
  --bb-reveal-scale: 1;
}

.bb-pop-section-head.bb-reveal {
  --bb-reveal-y: 52px;
  --bb-reveal-scale: 1;
}

.bb-pop-mini-card.bb-reveal,
.bb-pop-step.bb-reveal,
.bb-pop-product-card.bb-reveal,
.bb-pop-why-card.bb-reveal {
  --bb-reveal-y: 72px;
  --bb-reveal-scale: 0.92;
}

.bb-pop-final-cta__visual.bb-reveal {
  --bb-reveal-y: 54px;
  --bb-reveal-scale: 0.9;
}

[data-bb-tilt] {
  will-change: transform;
}

@keyframes bbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes bbProductFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1.2deg); }
}

/* RESPONSIVE */

@media (max-width: 1120px) {
  .bb-pop-header__inner {
    grid-template-columns: 170px 1fr auto;
  }

  .bb-pop-nav {
    display: none;
  }

  .bb-pop-menu {
    display: block;
  }

  .bb-pop-mobile-nav.is-open {
    display: block;
  }

  .bb-pop-hero__grid {
    grid-template-columns: 1fr;
  }

  .bb-pop-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bb-pop-steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 66px;
  }

  .bb-pop-process::before {
    display: none;
  }

  .bb-pop-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .bb-pop-wrap,
  .bb-pop-header__inner,
  .bb-pop-mobile-nav {
    width: min(100% - 28px, 1180px);
  }

  .bb-pop-header__inner {
    min-height: 72px;
    grid-template-columns: 145px 1fr auto;
    gap: 12px;
  }

  .bb-pop-header__inner > .bb-pop-btn {
    display: none;
  }

  .bb-pop-logo {
    width: 145px;
  }

  .bb-pop-hero {
    padding: 52px 0 42px;
  }

  .bb-pop-hero::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.82)),
      linear-gradient(180deg, rgba(245,246,242,0.6), rgba(255,255,255,0.2));
  }

  .bb-pop-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .bb-pop-copy {
    font-size: 17px;
  }

  .bb-pop-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bb-pop-btn {
    width: 100%;
  }

  .bb-pop-strip-grid,
  .bb-pop-product-grid,
  .bb-pop-why-grid {
    grid-template-columns: 1fr;
  }

  .bb-pop-mini-card {
    grid-template-rows: auto auto;
  }

  .bb-pop-mini-card img {
    height: auto;
  }

  .bb-pop-steps {
    grid-template-columns: 1fr;
  }

  .bb-pop-product-card {
    min-height: auto;
  }

  .bb-pop-final-cta__grid {
    grid-template-columns: 1fr;
  }

  .bb-pop-final-cta__visual {
    min-height: 360px;
  }

  .bb-pop-footer__grid {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .bb-pop-footer__brand img {
    width: 185px;
  }

  .bb-pop-footer__bottom .bb-pop-wrap {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bb-pop-page *,
  .bb-pop-page *::before,
  .bb-pop-page *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .bb-reveal {
    opacity: 1;
    transform: none;
  }
}
