/* 14-day body reset program — marketing landing page */
body.page-body-balance-program {
  --bbp-green-dark: #174236;
  --bbp-green: #287560;
  --bbp-green-light: #329678;
  --bbp-gold: var(--gold, #d9b83a);
  --bbp-gold-dark: var(--gold-dark, #c49a18);
  --bbp-gold-light: var(--gold-accent, #f9f0d0);
  --bbp-cream: var(--bg, #fafaf9);
  --bbp-muted: #626e66;
  --bbp-panel-border: rgba(212, 175, 55, 0.62);
  --bbp-panel-border-soft: rgba(212, 175, 55, 0.36);
  --bbp-panel-inset: rgba(244, 235, 201, 0.22);
  position: relative;
  min-height: 100vh;
  background: linear-gradient(
    168deg,
    #0a1411 0%,
    #0f211c 14%,
    #153228 32%,
    #1b3b31 50%,
    #153226 68%,
    #0e1c18 86%,
    #080f0d 100%
  );
}

body.page-body-balance-program::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(212, 175, 55, 0.14) 0%, transparent 52%),
    radial-gradient(ellipse 60% 45% at 85% 100%, rgba(40, 117, 96, 0.24) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(60, 20, 20, 0.12) 0%, transparent 50%);
}

body.page-body-balance-program::after {
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.35) 18%,
    rgba(249, 240, 208, 0.62) 50%,
    rgba(212, 175, 55, 0.35) 82%,
    transparent 100%
  );
}

body.page-body-balance-program #main {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

body.page-body-balance-program .bbp-hero,
body.page-body-balance-program .bbp-hero-band,
body.page-body-balance-program .bbp-stats,
body.page-body-balance-program .bbp-seasons {
  padding: 0;
}

/* Hero + seasons — shared photo background */
.bbp-hero-band {
  position: relative;
  overflow: hidden;
}

body.hero-flush.page-body-balance-program .bbp-hero-band {
  margin-top: calc(-1 * var(--header-offset));
  padding-top: var(--header-offset);
}

.bbp-hero-band__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bbp-hero-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.bbp-hero-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.58) 82%,
    rgba(8, 15, 13, 0.92) 100%
  );
}

/* Hero */
.bbp-hero {
  position: relative;
  z-index: 1;
  min-height: clamp(420px, 58vh, 580px);
  overflow: visible;
  color: #fff;
}

.bbp-hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(4.5rem, 14vh, 8rem);
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.bbp-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.bbp-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  line-height: 1;
}

.bbp-badge--akcija {
  color: #fff;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}

.bbp-badge--season {
  color: var(--bbp-gold-light);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(244, 235, 201, 0.35);
}

.bbp-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.85rem, 4.8vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  max-width: 18ch;
  color: var(--bbp-gold-light);
  text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.35);
}

.bbp-hero__subtitle {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
  margin: 0;
  max-width: 52ch;
  color: rgba(248, 244, 230, 0.92);
}

/* Season selector */
.bbp-seasons {
  position: relative;
  z-index: 1;
  padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.25rem, 4vw, 2.5rem) clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.bbp-seasons__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.bbp-seasons__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.55rem, 1.5vw, 0.85rem);
}

.bbp-seasons__btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 72px;
  padding: 0.85rem 0.75rem 0.8rem;
  font-family: inherit;
  text-align: center;
  cursor: pointer;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.bbp-seasons__btn:focus-visible {
  outline: 3px solid rgba(244, 235, 201, 0.85);
  outline-offset: 3px;
}

.bbp-seasons__btn.is-active {
  transform: translateY(-3px);
}

.bbp-seasons__btn.is-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 20%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.35) 80%,
    transparent 100%
  );
  pointer-events: none;
}

.bbp-seasons__btn.is-active::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  background: linear-gradient(
    168deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.04) 38%,
    transparent 62%
  );
  pointer-events: none;
}

/* Spring — fresh green */
.bbp-seasons__btn--spring {
  border-color: rgba(143, 196, 154, 0.38);
  background: linear-gradient(
    165deg,
    rgba(143, 196, 154, 0.16) 0%,
    rgba(90, 140, 105, 0.1) 100%
  );
  color: rgba(220, 245, 225, 0.92);
}

.bbp-seasons__btn--spring:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 214, 177, 0.55);
  background: linear-gradient(
    165deg,
    rgba(143, 196, 154, 0.24) 0%,
    rgba(90, 140, 105, 0.16) 100%
  );
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.bbp-seasons__btn--spring.is-active {
  border-color: rgba(220, 245, 220, 0.85);
  color: #f8fff9;
  background: linear-gradient(
    165deg,
    #72b082 0%,
    #5a9468 22%,
    #4a7d58 52%,
    #3d6b4a 78%,
    #2f5840 100%
  );
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.36),
    0 0 26px rgba(143, 196, 154, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}

/* Summer — warm gold */
.bbp-seasons__btn--summer {
  border-color: rgba(232, 196, 110, 0.42);
  background: linear-gradient(
    165deg,
    rgba(232, 196, 110, 0.18) 0%,
    rgba(184, 148, 60, 0.1) 100%
  );
  color: rgba(255, 244, 210, 0.94);
}

.bbp-seasons__btn--summer:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 215, 140, 0.58);
  background: linear-gradient(
    165deg,
    rgba(232, 196, 110, 0.26) 0%,
    rgba(184, 148, 60, 0.16) 100%
  );
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.bbp-seasons__btn--summer.is-active {
  border-color: rgba(255, 250, 225, 0.92);
  color: #1a160e;
  background: linear-gradient(
    165deg,
    #fff8dc 0%,
    #f7e8a8 16%,
    #efcf62 38%,
    #e2b840 62%,
    #c99a22 84%,
    #a67c15 100%
  );
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.38),
    0 0 32px rgba(232, 196, 110, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -1px 0 rgba(120, 85, 15, 0.28);
}

.bbp-seasons__btn--summer.is-active .bbp-seasons__btn-months {
  color: rgba(26, 22, 14, 0.68);
}

/* Autumn — amber rust */
.bbp-seasons__btn--autumn {
  border-color: rgba(212, 140, 90, 0.4);
  background: linear-gradient(
    165deg,
    rgba(212, 140, 90, 0.17) 0%,
    rgba(160, 90, 55, 0.1) 100%
  );
  color: rgba(255, 230, 210, 0.92);
}

.bbp-seasons__btn--autumn:hover {
  transform: translateY(-2px);
  border-color: rgba(228, 165, 115, 0.55);
  background: linear-gradient(
    165deg,
    rgba(212, 140, 90, 0.25) 0%,
    rgba(160, 90, 55, 0.16) 100%
  );
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.bbp-seasons__btn--autumn.is-active {
  border-color: rgba(255, 228, 200, 0.85);
  color: #fffaf5;
  background: linear-gradient(
    165deg,
    #dc8450 0%,
    #c47040 24%,
    #a85830 52%,
    #8f4528 78%,
    #753820 100%
  );
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.36),
    0 0 26px rgba(212, 140, 90, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* Winter — cool slate blue */
.bbp-seasons__btn--winter {
  border-color: rgba(140, 180, 210, 0.38);
  background: linear-gradient(
    165deg,
    rgba(140, 180, 210, 0.15) 0%,
    rgba(90, 120, 150, 0.1) 100%
  );
  color: rgba(225, 240, 255, 0.92);
}

.bbp-seasons__btn--winter:hover {
  transform: translateY(-2px);
  border-color: rgba(170, 205, 230, 0.52);
  background: linear-gradient(
    165deg,
    rgba(140, 180, 210, 0.22) 0%,
    rgba(90, 120, 150, 0.15) 100%
  );
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.bbp-seasons__btn--winter.is-active {
  border-color: rgba(228, 242, 255, 0.85);
  color: #f8fcff;
  background: linear-gradient(
    165deg,
    #88aac4 0%,
    #6a8fa8 22%,
    #547888 52%,
    #446678 78%,
    #355262 100%
  );
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.36),
    0 0 26px rgba(140, 180, 210, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}

.bbp-seasons__btn-name {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 600;
  line-height: 1.2;
}

.bbp-seasons__btn-months {
  position: relative;
  z-index: 1;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
}

.bbp-seasons__btn.is-active .bbp-seasons__btn-months {
  opacity: 0.88;
}

/* Season panels */
.bbp-season-panel[hidden] {
  display: none !important;
}

.bbp-season-placeholder {
  max-width: 640px;
  margin: clamp(1.5rem, 4vw, 2.5rem) auto clamp(3rem, 6vw, 4.5rem);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  background: linear-gradient(168deg, #ffffff 0%, #faf7ef 100%);
  border: 1px solid var(--bbp-panel-border);
  border-radius: 20px;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.36),
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px var(--bbp-panel-inset);
}

.bbp-season-placeholder__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--bbp-green-dark);
  margin: 0 0 0.65rem;
}

.bbp-season-placeholder__lead {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--bbp-green);
  margin: 0 0 0.75rem;
}

.bbp-season-placeholder__text {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--bbp-muted);
  margin: 0 0 1.35rem;
}

.bbp-season-placeholder__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.35rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f4ebc9;
  cursor: pointer;
  border: 1px solid rgba(212, 175, 55, 0.65);
  border-radius: 12px;
  background: linear-gradient(180deg, #2f6f5d 0%, #1a4a3e 100%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bbp-season-placeholder__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

/* Stats bar */
.bbp-stats {
  background: linear-gradient(90deg, var(--bbp-green-dark) 0%, var(--bbp-green) 100%);
  border-bottom: 3px solid var(--bbp-gold);
  padding: 0 !important;
  margin-bottom: clamp(2rem, 4.5vw, 3rem);
  box-shadow: 0 8px 28px rgba(23, 66, 54, 0.28);
}

.bbp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1120px;
  margin: 0 auto;
}

.bbp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.35rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.bbp-stat:last-child {
  border-right: none;
}

.bbp-stat__value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--bbp-gold-light);
  line-height: 1.1;
}

.bbp-stat__label {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 235, 201, 0.75);
}

/* Page layout */
body.page-body-balance-program main.bbp-page {
  padding: 0 clamp(1.25rem, 4vw, 2rem) clamp(3.5rem, 7vw, 5rem);
}

.bbp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.bbp-layout__main {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bbp-layout__aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(var(--header-height, 80px) + 1.25rem);
}

/* Panels */
.bbp-panel {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(168deg, #ffffff 0%, #faf7ef 100%);
  border: 1px solid var(--bbp-panel-border);
  border-radius: 20px;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.36),
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px var(--bbp-panel-inset),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.bbp-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1;
  background: linear-gradient(
    90deg,
    var(--bbp-green-dark) 0%,
    var(--bbp-green) 38%,
    var(--bbp-gold) 62%,
    rgba(184, 148, 31, 0.95) 100%
  );
  pointer-events: none;
}

.bbp-layout__main > .bbp-panel:nth-child(even)::before {
  background: linear-gradient(
    90deg,
    rgba(184, 148, 31, 0.95) 0%,
    var(--bbp-gold) 38%,
    var(--bbp-green) 62%,
    var(--bbp-green-dark) 100%
  );
}

.bbp-panel__header {
  padding:
    calc(0.35rem + clamp(1.1rem, 2.5vw, 1.4rem))
    clamp(1.5rem, 4vw, 2.25rem)
    clamp(1.1rem, 2.5vw, 1.35rem);
  background: linear-gradient(
    168deg,
    #e2ebe5 0%,
    #d5e3da 52%,
    #c8dacf 100%
  );
  border-bottom: 1px solid rgba(212, 175, 55, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.bbp-panel__body {
  padding: clamp(1.5rem, 3.5vw, 2rem) clamp(1.5rem, 4vw, 2.25rem) clamp(1.75rem, 4vw, 2.5rem);
  background: linear-gradient(168deg, #ffffff 0%, #faf7ef 100%);
}

.bbp-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bbp-green);
  margin: 0 0 0.65rem;
}

.bbp-panel__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 600;
  color: var(--bbp-green-dark);
  margin: 0;
  line-height: 1.25;
}

.bbp-panel__lead {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--bbp-muted);
  margin: 0;
}

.bbp-panel--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 0;
}

.bbp-panel--split > .bbp-panel__col {
  display: contents;
}

.bbp-panel--split > .bbp-panel__col:nth-child(1) .bbp-panel__header {
  grid-column: 1;
  grid-row: 1;
}

.bbp-panel--split > .bbp-panel__col:nth-child(1) .bbp-panel__body {
  grid-column: 1;
  grid-row: 2;
}

.bbp-panel--split > .bbp-panel__col:nth-child(2) .bbp-panel__header {
  grid-column: 2;
  grid-row: 1;
  border-left: 1px solid var(--bbp-panel-border-soft);
  box-shadow:
    inset 1px 0 0 rgba(255, 255, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.bbp-panel--split > .bbp-panel__col:nth-child(2) .bbp-panel__body {
  grid-column: 2;
  grid-row: 2;
  border-left: 1px solid var(--bbp-panel-border-soft);
}

.bbp-panel--split .bbp-panel__header {
  display: flex;
  align-items: center;
  min-height: 100%;
}

/* Feature cards */
.bbp-card-grid {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bbp-card-grid > .bbp-feature-card {
  list-style: none;
}

.bbp-card-grid--goals {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.15rem;
}

.bbp-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--bbp-green-dark);
  background: linear-gradient(165deg, #fafaf8 0%, #f4f0e4 100%);
  border: 1px solid var(--bbp-panel-border-soft);
  border-radius: 14px;
  padding: 1.25rem;
  position: relative;
  min-height: 100%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.bbp-feature-card::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--bbp-green-light);
}

/* Timeline */
.bbp-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bbp-timeline__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.15rem;
  align-items: start;
}

.bbp-timeline__marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, var(--bbp-green-light) 0%, var(--bbp-green) 100%);
  border: 2px solid var(--bbp-gold);
  box-shadow: 0 4px 14px rgba(23, 66, 54, 0.28);
  margin-top: 0.15rem;
}

.bbp-timeline__card {
  background: linear-gradient(165deg, #fafaf8 0%, #f4f0e4 100%);
  border: 1px solid var(--bbp-panel-border-soft);
  border-left: 3px solid var(--bbp-green-light);
  border-radius: 14px;
  padding: 1.35rem 1.5rem 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.bbp-timeline__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--bbp-green-dark);
  margin: 0 0 0.9rem;
  line-height: 1.4;
}

/* Checklist */
.bbp-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bbp-checklist li {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--bbp-muted);
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
}

.bbp-checklist li::before {
  content: '';
  position: absolute;
  left: 0.15rem;
  top: 0.85rem;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--bbp-green-light);
  border-bottom: 2.5px solid var(--bbp-green-light);
  transform: rotate(-45deg);
}

/* Extras */
.bbp-card-grid--extras {
  grid-template-columns: repeat(2, 1fr);
}

.bbp-extra-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(165deg, rgba(255, 252, 246, 0.98) 0%, rgba(248, 236, 210, 0.95) 100%);
  border: 1px dashed rgba(212, 175, 55, 0.52);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.bbp-extra-card__name {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1rem;
  color: var(--bbp-green-dark);
}

.bbp-extra-card__price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bbp-gold-dark);
}

/* Disclaimer */
.bbp-disclaimer {
  background: linear-gradient(135deg, #fef6e4 0%, #f8eed0 100%);
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-left: 3px solid var(--bbp-gold);
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  margin-bottom: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 4px 18px rgba(0, 0, 0, 0.12);
}

.bbp-disclaimer__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bbp-green-dark);
  margin: 0 0 0.5rem;
}

.bbp-disclaimer p {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--bbp-muted);
  margin: 0;
}

/* Sidebar offer card */
.bbp-offer-card {
  background: linear-gradient(155deg, var(--bbp-green-dark) 0%, var(--bbp-green) 100%);
  color: var(--bbp-gold-light);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 1.85rem);
  border: 1px solid rgba(212, 175, 55, 0.72);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(244, 235, 201, 0.12),
    inset 0 1px 0 rgba(244, 235, 201, 0.18);
}

.bbp-offer-card__kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin: 0 0 0.35rem;
}

.bbp-offer-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 1.1rem;
  line-height: 1.25;
  color: #fff8e7;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.bbp-offer-card__specs {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.bbp-offer-card__specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.95rem;
  opacity: 0.9;
}

.bbp-offer-card__specs strong {
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.bbp-offer-card__price-block {
  text-align: center;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(244, 235, 201, 0.4);
  border-radius: 14px;
  padding: 1.15rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bbp-offer-card__price-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}

.bbp-offer-card__price {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.bbp-offer-card__note {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.9rem;
  margin: 0.65rem 0 0;
  opacity: 0.85;
}

/* Contact card */
.bbp-contact-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(168deg, #ffffff 0%, #faf7ef 100%);
  border: 1px solid var(--bbp-panel-border);
  border-radius: 20px;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.36),
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px var(--bbp-panel-inset),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.bbp-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(184, 148, 31, 0.95) 0%,
    var(--bbp-gold) 50%,
    var(--bbp-green) 100%
  );
  pointer-events: none;
}

.bbp-contact-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bbp-green-dark);
  margin: 0;
}

.bbp-contact-card__body {
  padding: clamp(1.25rem, 3vw, 1.5rem) clamp(1.35rem, 3vw, 1.65rem) clamp(1.35rem, 3vw, 1.65rem);
}

.bbp-contact-card__lead {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--bbp-muted);
  margin: 0 0 1rem;
}

.bbp-contact-card__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.bbp-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bbp-green-dark);
  text-decoration: none;
  padding: 0.7rem 0.85rem;
  background: linear-gradient(165deg, #fafaf8 0%, #f4f0e4 100%);
  border: 1px solid var(--bbp-panel-border-soft);
  border-radius: 10px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.bbp-contact-btn:hover {
  background: #fff;
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.bbp-contact-btn--whatsapp {
  background: linear-gradient(165deg, rgba(37, 94, 80, 0.08) 0%, rgba(37, 94, 80, 0.04) 100%);
  border-color: rgba(37, 94, 80, 0.22);
}

.bbp-contact-btn--whatsapp:hover {
  background: rgba(37, 94, 80, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
}

.bbp-contact-btn svg {
  flex-shrink: 0;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 960px) {
  .bbp-layout {
    grid-template-columns: 1fr;
  }

  .bbp-layout__aside {
    position: static;
    order: -1;
  }

  .bbp-offer-card,
  .bbp-contact-card {
    max-width: 480px;
  }
}

@media (max-width: 720px) {
  .bbp-seasons__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bbp-seasons__btn {
    min-height: 68px;
  }

  .bbp-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bbp-stat:nth-child(2) {
    border-right: none;
  }

  .bbp-stat:nth-child(1),
  .bbp-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .bbp-panel--split {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .bbp-panel--split > .bbp-panel__col {
    display: flex;
    flex-direction: column;
  }

  .bbp-panel--split > .bbp-panel__col:nth-child(1) .bbp-panel__header,
  .bbp-panel--split > .bbp-panel__col:nth-child(1) .bbp-panel__body,
  .bbp-panel--split > .bbp-panel__col:nth-child(2) .bbp-panel__header,
  .bbp-panel--split > .bbp-panel__col:nth-child(2) .bbp-panel__body {
    grid-column: auto;
    grid-row: auto;
    border-left: none;
  }

  .bbp-panel--split > .bbp-panel__col + .bbp-panel__col {
    border-top: 1px solid var(--bbp-panel-border-soft);
  }

  .bbp-panel--split > .bbp-panel__col + .bbp-panel__col .bbp-panel__header {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  }

  .bbp-panel--split .bbp-panel__header {
    display: block;
    min-height: 0;
  }

  .bbp-card-grid--goals,
  .bbp-card-grid--extras {
    grid-template-columns: 1fr;
  }

  .bbp-hero__title {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .bbp-stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .bbp-timeline__item {
    grid-template-columns: 36px 1fr;
    gap: 0.75rem;
  }

  .bbp-timeline__marker {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}
