:root {
  /* Color Scheme - COLORFUL theme variables inspired by Bonivita */
  --bo-page: #0b0c15; 
  --bo-panel: #161a2b; 
  --bo-ink-primary: #f8fafc;
  --bo-ink-secondary: #94a3b8;
  --bo-vivid-gradient: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #3b82f6 100%);
  --bo-btn-gradient: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
  --bo-btn-hover: linear-gradient(135deg, #e11d48 0%, #d946ef 100%);
  --bo-accent-glow: #ec4899;
  --bo-badge-bg: rgba(236, 72, 153, 0.15);
  
  /* Preset Typography Configuration */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Styling settings */
  --bo-radius: 16px; /* soft */
  --bo-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 50px rgba(236, 72, 153, 0.15); /* deep shadow */
  --bo-max-width: 1180px; /* random container-width */
}

/* Base resets */
body {
  background-color: var(--bo-page);
  color: var(--bo-ink-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* Custom non-bootstrap, non-banned class naming to strictly avoid any footprints */
.bo-main-stage {
  max-width: var(--bo-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
}

/* Header customization */
.bo-header-dock {
  background-color: rgba(22, 26, 43, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  backdrop-filter: blur(12px);
}
.bo-header-inside {
  max-width: var(--bo-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bo-logo-spot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.bo-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  background: var(--bo-vivid-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
}

/* Preset A: Split Sticky Structural Arrangement */
.bo-split-frame {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .bo-split-frame {
    flex-direction: row;
    align-items: flex-start;
  }
  .bo-split-left {
    width: 42%;
    position: sticky;
    top: 6rem;
    align-self: flex-start;
  }
  .bo-split-right {
    width: 58%;
  }
}

/* Image container */
.bo-image-holder {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--bo-radius);
  padding: 3rem;
  box-shadow: var(--bo-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bo-image-holder img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

/* Right Content typography and layout */
.bo-label-main {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  background: var(--bo-vivid-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}
.bo-sub-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bo-accent-glow);
  line-height: 1.5;
  margin-bottom: 2rem;
}

/* Detail container card (avoiding keyword "card") */
.bo-description-capsule {
  background-color: var(--bo-panel);
  border-radius: var(--bo-radius);
  padding: 2rem;
  box-shadow: var(--bo-shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 2rem;
}

/* Feature bullets */
.bo-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.bo-bullet-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.bo-bullet-svg {
  background: var(--bo-badge-bg);
  color: var(--bo-accent-glow);
  border-radius: 50%;
  padding: 0.35rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bo-bullet-desc {
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--bo-ink-primary);
}

/* Guarantee Badge block */
.bo-guarantee-left-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--bo-radius);
  padding: 1.25rem;
  margin-bottom: 2.5rem;
}
.bo-guarantee-icon {
  color: #10b981;
  flex-shrink: 0;
}

/* Price badge representation and button */
.bo-action-hub {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--bo-panel);
  border-radius: var(--bo-radius);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--bo-shadow);
}
@media (min-width: 640px) {
  .bo-action-hub {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.bo-price-badge-wrap {
  display: flex;
  flex-direction: column;
}
.bo-price-label {
  font-size: 0.8rem;
  color: var(--bo-ink-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.bo-price-value-badge {
  background: var(--bo-vivid-gradient);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  padding: 0.5rem 1.5rem;
  border-radius: calc(var(--bo-radius) / 1.5);
  display: inline-block;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
  text-align: center;
}
.bo-trigger-button {
  background: var(--bo-btn-gradient);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  border-radius: var(--bo-radius);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(244, 63, 94, 0.3);
  cursor: pointer;
  display: inline-block;
}
.bo-trigger-button:hover {
  background: var(--bo-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(244, 63, 94, 0.5);
}

/* Features list horizontal strips */
.bo-features-tier {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.bo-feature-horizontal-strip {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--bo-panel);
  border-radius: var(--bo-radius);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--bo-shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
@media (min-width: 768px) {
  .bo-feature-horizontal-strip {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
}
.bo-feature-horizontal-strip:hover {
  transform: scale(1.01);
  border-color: rgba(255, 255, 255, 0.12);
}
.bo-feature-circle-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  background: var(--bo-vivid-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
  color: white;
}
.bo-feature-circle-icon svg {
  width: 32px;
  height: 32px;
}
.bo-feature-mini-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.bo-feature-snippet {
  color: var(--bo-ink-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Testimonials Layout */
.bo-testimonials-block {
  margin-bottom: 6rem;
}
.bo-feedback-layout {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}
@media (min-width: 768px) {
  .bo-feedback-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .bo-feedback-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.bo-feedback-slate {
  background-color: var(--bo-panel);
  border-top: 4px solid var(--bo-accent-glow);
  border-radius: var(--bo-radius);
  padding: 2.25rem;
  box-shadow: var(--bo-shadow);
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}
.bo-feedback-slate:hover {
  transform: translateY(-5px);
}
.bo-feedback-user-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.bo-avatar-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bo-vivid-gradient);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.bo-stars-tray {
  display: flex;
  gap: 0.2rem;
  color: #fbbf24; 
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.bo-feedback-quote {
  color: var(--bo-ink-primary);
  font-style: italic;
  line-height: 1.6;
  font-size: 1rem;
  opacity: 0.95;
}

/* Footer structure */
.bo-footer-anchor {
  background-color: #08090d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 2rem;
  margin-top: auto;
}
.bo-footer-inside {
  max-width: var(--bo-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .bo-footer-inside {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.bo-footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .bo-footer-links-group {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }
}
.bo-footer-link {
  color: var(--bo-ink-secondary);
  transition: color 0.2s ease;
  font-size: 0.95rem;
}
.bo-footer-link:hover {
  color: var(--bo-accent-glow);
}