/** Shopify CDN: Minification failed

Line 379:0 All "@import" rules must come first

**/
/* ============================================
   BREATH OF LIFE - SHOPIFY THEME CSS
   Prodough-inspired minimal design
   ============================================ */

/* ============================================
   BRAND VARIABLES
   Based on Elizabeth Jeffrey's guidelines
   ============================================ */
:root {
  /* Primary - Blues & Green (Logo) - matches bol-product */
  --bol-bear-lake-blue: #2A7FA5;
  --bol-sky-blue: #6DB8D6;
  --bol-baby-blue: #B8DFF0;
  --bol-lime-green: #7DC242;
  
  /* Secondary - Oranges (CTA) */
  --bol-orange: #F47C20;
  --bol-snow-college-orange: #fb6220;
  
  /* Neutrals */
  --bol-white: #fefefe;
  --bol-cream: #FAF6EE;
  --bol-gray: #6c6c6c;
  --bol-black: #000000;
  --bol-dark: #1A2E3B;
  
  /* Typography */
  --bol-font-display: 'Nunito', sans-serif;
  --bol-font-body: 'Playfair Display', Georgia, serif;
  --bol-font-whimsy: 'Pacifico', cursive;

  /* Spacing (used by sections) */
  --bol-space-sm: 20px;
  --bol-space-md: 30px;
  --bol-space-lg: 40px;
  --bol-space-xl: 60px;

  /* Grays (for placeholders) */
  --bol-medium-gray: #9a9a9a;
  --bol-dark-gray: #4a4a4a;
  --bol-light-gray: #f5f5f5;
}

/* ============================================
   BOL DESIGN SYSTEM - Shared across sections
   Use these classes in bol-product, bol-video-demo, cart, etc.
   ============================================ */
.bol-section {
  background: var(--bol-cream);
  font-family: var(--bol-font-body);
  color: var(--bol-dark);
  min-height: 60vh;
}

/* Split layout: media left, content right (like bol-product) */
.bol-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

@media (max-width: 768px) {
  .bol-split-grid {
    grid-template-columns: 1fr;
  }
}

.bol-media-panel {
  position: relative;
  overflow: hidden;
  background: #d6edd9;
  min-height: 400px;
}

.bol-media-panel img,
.bol-media-panel video,
.bol-media-panel iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bol-content-panel {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bol-cream);
  position: relative;
}

@media (max-width: 768px) {
  .bol-content-panel {
    padding: 40px 24px;
  }
}

/* Typography */
.bol-eyebrow {
  font-family: var(--bol-font-whimsy);
  color: var(--bol-lime-green);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.bol-headline {
  font-family: var(--bol-font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  color: var(--bol-dark);
  margin-bottom: 16px;
}

.bol-headline span {
  color: var(--bol-bear-lake-blue);
}

.bol-subheadline {
  font-family: var(--bol-font-body);
  font-style: italic;
  font-size: 16px;
  color: #6a8597;
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 440px;
}

/* Perks / feature list with green checkmark dots */
.bol-perks {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bol-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--bol-font-display);
  font-size: 15px;
  color: var(--bol-dark);
  font-weight: 600;
}

.bol-perk-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bol-lime-green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bol-perk-dot svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Primary button (Pre-Order style) */
.btn-bol-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  min-height: 52px;
  background: var(--bol-bear-lake-blue);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--bol-font-display);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(42, 127, 165, 0.35);
  transition: transform 0.18s, box-shadow 0.18s;
}

.btn-bol-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(42, 127, 165, 0.45);
}

/* Secondary outline button */
.btn-bol-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  min-height: 48px;
  background: transparent;
  color: var(--bol-bear-lake-blue);
  border: 2px solid var(--bol-sky-blue);
  border-radius: 50px;
  font-family: var(--bol-font-display);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.btn-bol-secondary:hover {
  background: var(--bol-baby-blue);
  color: var(--bol-dark);
}

/* Badge (Pre-Order, New, etc.) */
.bol-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--bol-lime-green);
  color: #fff;
  font-family: var(--bol-font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(125, 194, 66, 0.4);
}

/* Urgency strip (orange bar) */
.bol-urgency-strip {
  background: var(--bol-orange);
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-family: var(--bol-font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.bol-urgency-strip span {
  opacity: 0.85;
  font-weight: 400;
  margin-left: 8px;
  font-style: italic;
  font-family: var(--bol-font-body);
}

/* Video placeholder with play button */
.bol-video-placeholder {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--bol-baby-blue), var(--bol-bear-lake-blue));
  color: #fff;
}

.bol-video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--bol-bear-lake-blue);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.18s;
}

.bol-video-play-btn:hover {
  transform: scale(1.05);
}

.bol-video-play-btn svg {
  width: 36px;
  height: 36px;
  margin-left: 4px;
}

/* ============================================
   LAYOUT - Override critical.css grid that caused right shift
   The theme's critical.css applies a 3-column grid to .shopify-section
   which can create asymmetric margins. BOL uses full-width sections
   with .page-width for centered content instead.
   ============================================ */
.shopify-section {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.shopify-section > * {
  grid-column: unset !important;
}

/* ============================================
   LAYOUT UTILITIES (used by BOL sections)
   ============================================ */
.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 749px) {
  .page-width {
    padding: 0 16px;
  }
}

.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header__label {
  font-family: var(--bol-font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bol-bear-lake-blue);
  margin: 0 0 10px;
}

.section-header__title {
  font-family: var(--bol-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--bol-black);
  margin: 0 0 15px;
  line-height: 1.2;
}

.section-header__description {
  font-family: var(--bol-font-body);
  font-size: 1rem;
  color: var(--bol-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Pacifico&display=swap');

/* ============================================
   BASE
   ============================================ */
body {
  font-family: var(--bol-font-body);
  color: var(--bol-black);
  background: var(--bol-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bol-font-display);
  font-weight: 700;
  color: var(--bol-black);
}

a {
  transition: color 0.2s ease;
}

/* ============================================
   HEADER - Prodough Extended Style
   ============================================ */
.bol-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bol-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bol-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (min-width: 750px) {
  .bol-header__inner {
    padding: 0 20px;
  }
}

.bol-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.bol-header__logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--bol-bear-lake-blue), var(--bol-lime-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bol-header__logo-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--bol-white);
}

.bol-header__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.bol-header__logo-text {
  font-family: var(--bol-font-display);
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  font-weight: 800;
  color: var(--bol-bear-lake-blue);
}

.bol-header__logo-accent {
  color: var(--bol-lime-green);
}

.bol-header__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (max-width: 899px) {
  .bol-header__menu-btn {
    display: flex;
  }
}

@media (min-width: 900px) {
  .bol-header__menu-btn {
    display: none;
  }
}

.bol-header__menu-icon {
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--bol-black);
}

.bol-header__menu-icon::before,
.bol-header__menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--bol-black);
  transition: transform 0.2s;
}

.bol-header__menu-icon::before {
  top: -7px;
}

.bol-header__menu-icon::after {
  top: 7px;
}

.bol-header__menu-btn[aria-expanded="true"] .bol-header__menu-icon {
  background: transparent;
}

.bol-header__menu-btn[aria-expanded="true"] .bol-header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.bol-header__menu-btn[aria-expanded="true"] .bol-header__menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile menu drawer */
.bol-mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--bol-white);
  padding: 24px 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(-100%);
  transition: transform 0.3s ease, visibility 0.3s;
  visibility: hidden;
}

.bol-mobile-menu[aria-hidden="false"] {
  transform: translateX(0);
  visibility: visible;
}

.bol-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.bol-mobile-menu__link {
  display: block;
  padding: 16px 0;
  font-family: var(--bol-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bol-black);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.bol-mobile-menu__link:last-child {
  border-bottom: none;
}

.bol-mobile-menu__icons {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 24px;
}

.bol-mobile-menu__icon {
  display: block;
  padding: 16px 0;
  min-height: 44px;
  font-family: var(--bol-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bol-black);
  text-decoration: none;
}

.bol-header__nav {
  display: none;
  gap: 35px;
}

@media (min-width: 900px) {
  .bol-header__nav {
    display: flex;
  }
}

.bol-header__nav-link {
  font-family: var(--bol-font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bol-black);
  text-decoration: none;
  transition: color 0.2s;
}

.bol-header__nav-link:hover {
  color: var(--bol-bear-lake-blue);
}

.bol-header__icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bol-header__icon {
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bol-black);
  transition: background 0.2s;
  border-radius: 50%;
}

.bol-header__icon:hover {
  background: var(--bol-cream);
}

.bol-header__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.bol-header__icon--cart {
  position: relative;
}

.bol-header__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  background: var(--bol-orange);
  color: var(--bol-white);
  font-family: var(--bol-font-display);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fallback for old header class */
.header {
  background: var(--bol-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__heading-link {
  font-family: var(--bol-font-display);
  font-weight: 800;
  color: var(--bol-bear-lake-blue);
}

.header__menu-item {
  font-family: var(--bol-font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bol-black);
}

.header__menu-item:hover {
  color: var(--bol-bear-lake-blue);
}

/* Cart badge */
.cart-count-bubble {
  background-color: var(--bol-orange) !important;
}

/* ============================================
   BUTTONS - Minimal Style
   ============================================ */
.button,
.shopify-payment-button__button {
  font-family: var(--bol-font-display);
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.button--primary {
  background: var(--bol-bear-lake-blue) !important;
  border: none !important;
  color: var(--bol-white) !important;
}

.button--primary:hover {
  background: var(--bol-sky-blue) !important;
}

.button--secondary {
  background: transparent !important;
  border: 2px solid var(--bol-bear-lake-blue) !important;
  color: var(--bol-bear-lake-blue) !important;
}

.button--secondary:hover {
  background: var(--bol-bear-lake-blue) !important;
  color: var(--bol-white) !important;
}

/* CTA Button (Orange) */
.button--cta {
  background: var(--bol-orange) !important;
  color: var(--bol-white) !important;
}

.button--cta:hover {
  background: var(--bol-snow-college-orange) !important;
}

/* ============================================
   FOOTER - Prodough Extended Style
   ============================================ */
.bol-footer {
  background: var(--bol-white);
  padding: 40px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.bol-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bol-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .bol-footer__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.bol-footer__title {
  font-family: var(--bol-font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--bol-black);
  margin-bottom: 15px;
}

.bol-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bol-footer__links li {
  margin-bottom: 8px;
}

.bol-footer__links a {
  font-family: var(--bol-font-body);
  font-size: 0.9rem;
  color: var(--bol-gray);
  text-decoration: none;
  transition: color 0.2s;
}

.bol-footer__links a:hover {
  color: var(--bol-bear-lake-blue);
}

.bol-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.bol-footer__copyright {
  font-family: var(--bol-font-body);
  font-size: 0.85rem;
  color: var(--bol-gray);
}

.bol-footer__payment {
  display: flex;
  gap: 8px;
}

.bol-footer__payment-icon {
  width: 38px;
  height: 24px;
}

/* Fallback for old footer */
.footer {
  background: var(--bol-white);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer h2 {
  font-family: var(--bol-font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--bol-black);
  text-transform: none;
}

.footer a {
  font-family: var(--bol-font-body);
  color: var(--bol-gray);
}

.footer a:hover {
  color: var(--bol-bear-lake-blue);
}

.footer__copyright {
  font-family: var(--bol-font-body);
  font-size: 0.85rem;
  color: var(--bol-gray);
}

/* Payment icons */
.payment-icons {
  opacity: 0.6;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.card-wrapper {
  border-radius: 12px;
  overflow: hidden;
}

.card__heading {
  font-family: var(--bol-font-display);
  font-weight: 700;
}

.price {
  font-family: var(--bol-font-display);
  font-weight: 700;
  color: var(--bol-black);
}

/* ============================================
   FORMS
   ============================================ */
input[type="email"],
input[type="text"],
input[type="tel"],
textarea,
select {
  font-family: var(--bol-font-body);
  border: 1px solid #ddd;
  border-radius: 6px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--bol-bear-lake-blue);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.bg-cream {
  background: var(--bol-cream) !important;
}

.bg-blue {
  background: var(--bol-bear-lake-blue) !important;
}

.text-blue {
  color: var(--bol-bear-lake-blue) !important;
}

.text-green {
  color: var(--bol-lime-green) !important;
}

.text-orange {
  color: var(--bol-orange) !important;
}

/* ============================================
   BOL SECTIONS - Video Demo, Comparison, Testimonials, Pre-Order CTA
   ============================================ */
.video-demo__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 750px) {
  .video-demo__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
  }
}

.video-demo__media {
  aspect-ratio: 16/9;
  background: var(--bol-cream);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.video-demo__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--bol-gray);
}

.video-demo__play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bol-bear-lake-blue);
  color: var(--bol-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-demo__play-btn svg {
  width: 36px;
  height: 36px;
  margin-left: 4px;
}

.video-demo__content h2 {
  margin: 0 0 15px;
}

.video-demo__content p {
  margin: 0 0 20px;
  color: var(--bol-gray);
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.feature-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: var(--bol-font-body);
  color: var(--bol-black);
}

.feature-list__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--bol-lime-green);
}

/* Comparison - BOL design system colors */
.comparison-section--blue {
  background: linear-gradient(135deg, var(--bol-bear-lake-blue), var(--bol-sky-blue));
  color: var(--bol-white);
}

.comparison-section--blue .section-header__label {
  color: var(--bol-baby-blue);
}

.comparison-section--blue .section-header__title {
  color: var(--bol-white);
}

.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 749px) {
  .comparison__grid {
    grid-template-columns: 1fr;
  }
}

.comparison-card {
  background: var(--bol-white);
  border: 1px solid rgba(42, 127, 165, 0.2);
  border-radius: 12px;
  overflow: hidden;
}

/* Blue comparison section: translucent left card, white featured right card */
.comparison-section--blue .comparison__grid .comparison-card:first-child {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.comparison-section--blue .comparison__grid .comparison-card:first-child .comparison-card__header {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.comparison-section--blue .comparison__grid .comparison-card:first-child .comparison-card__title,
.comparison-section--blue .comparison__grid .comparison-card:first-child .comparison-card__item {
  color: var(--bol-white);
}

.comparison-section--blue .comparison__grid .comparison-card:first-child .comparison-card__icon--x {
  color: rgba(255, 255, 255, 0.9);
}

.comparison-card--featured {
  border-color: var(--bol-bear-lake-blue);
  box-shadow: 0 4px 24px rgba(42, 127, 165, 0.25);
}

.comparison-card__header {
  padding: 20px;
  background: var(--bol-cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.comparison-card--featured .comparison-card__header {
  background: var(--bol-bear-lake-blue);
  color: var(--bol-white);
}

.comparison-card__title {
  font-family: var(--bol-font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
}

.comparison-card__badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--bol-orange);
  color: var(--bol-white);
  letter-spacing: 0.5px;
}

.comparison-card__list {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.comparison-card__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-family: var(--bol-font-body);
  color: var(--bol-dark);
}

.comparison-card__item:last-child {
  margin-bottom: 0;
}

.comparison-card__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-card__icon--check {
  color: var(--bol-lime-green);
}

.comparison-card__icon--x {
  color: var(--bol-orange);
}

/* Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 750px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--bol-white);
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 15px;
}

.testimonial-card__star {
  width: 18px;
  height: 18px;
  color: var(--bol-orange);
}

.testimonial-card__quote {
  font-family: var(--bol-font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--bol-black);
  margin: 0 0 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__avatar--placeholder {
  background: var(--bol-cream);
}

.testimonial-card__name {
  font-family: var(--bol-font-display);
  font-weight: 700;
  margin: 0 0 2px;
}

.testimonial-card__role {
  font-size: 0.85rem;
  color: var(--bol-gray);
  margin: 0;
}

/* Value prop cards - BOL design system */
.bol-value-props {
  background: var(--bol-cream);
}

.value-prop-card {
  text-align: center;
  padding: 28px 24px;
  background: var(--bol-white);
  border: 1px solid rgba(42, 127, 165, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(42, 127, 165, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.value-prop-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(42, 127, 165, 0.12);
}

.value-prop-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  color: var(--bol-bear-lake-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-prop-card__icon svg {
  width: 100%;
  height: 100%;
}

.value-prop-card__title {
  font-family: var(--bol-font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bol-dark);
  margin: 0 0 10px;
}

.value-prop-card__text {
  font-family: var(--bol-font-body);
  font-size: 0.95rem;
  color: #6a8597;
  line-height: 1.6;
  margin: 0;
}

/* Use cases */
.use-case-card {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.use-case-card__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.use-case-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--bol-white);
}

.use-case-card__title {
  font-family: var(--bol-font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 5px;
}

.use-case-card__link {
  font-size: 0.85rem;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Pre-Order CTA */
.preorder-cta-section {
  background: linear-gradient(135deg, var(--bol-bear-lake-blue), var(--bol-sky-blue));
  padding: 60px 20px;
  text-align: center;
}

.preorder-cta__title {
  color: var(--bol-white);
  margin: 0 0 15px;
}

.preorder-cta__text {
  color: rgba(255,255,255,0.9);
  margin: 0 0 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.preorder-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.button--white {
  background: var(--bol-white) !important;
  color: var(--bol-bear-lake-blue) !important;
}

.button--white:hover {
  background: var(--bol-cream) !important;
}

.preorder-cta__note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 20px 0 0;
}

/* ============================================
   MOBILE & TOUCH OPTIMIZATION
   ============================================ */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 749px) {
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

/* Touch-friendly minimum sizes (44px per WCAG) */
button,
a.button,
.bol-header__icon,
.bol-header__menu-btn,
.bol-grid__item,
.use-case-card,
.testimonial-card,
.video-demo__play-btn,
input[type="submit"],
input[type="button"],
.bol-newsletter__button {
  min-height: 44px;
}

@media (max-width: 749px) {
  .button,
  .button--primary,
  .button--white {
    min-height: 44px;
    padding: 14px 24px !important;
  }

  .video-demo__play-btn {
    min-width: 64px;
    min-height: 64px;
  }

  .preorder-cta-section {
    padding: 40px 16px !important;
  }

  .preorder-cta__content {
    padding: 0;
  }

  .section-header {
    margin-bottom: 30px;
    padding: 0 4px;
  }

  .bol-footer {
    padding: 30px 16px;
  }

  .bol-footer__grid {
    gap: 24px;
  }

  .bol-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .value-prop-card {
    padding: 20px 16px;
  }

  .bol-value-props__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .use-cases__grid {
    gap: 16px;
  }

  .use-case-card__overlay {
    padding: 16px;
  }

  .bol-newsletter__input,
  .bol-newsletter__button {
    min-height: 44px;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  .comparison-card__header,
  .comparison-card__list {
    padding: 16px;
  }

  .testimonial-card {
    padding: 20px;
  }
}

/* Prevent horizontal overflow */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}


/* ============================================
   ACCESSIBILITY
   ============================================ */
:focus-visible {
  outline: 2px solid var(--bol-bear-lake-blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
