:root {
  --color-primary: #1C1917;
  --color-secondary: #44403C;
  --color-accent: #A16207;
  --color-accent-dark: #7C4A05;
  --color-accent-soft: #F5EBDA;
  --color-bg: #FAFAF9;
  --color-bg-alt: #E9EEF2;
  --color-surface: #FFFFFF;
  --color-text: #1A1614;
  --color-text-muted: #57534E;
  --color-on-dark: #F5F5F4;
  --color-border: #D6D3D1;
  --color-border-soft: #E7E5E4;
  --color-danger: #C0392B;
  --color-danger-bg: #FDEDEC;
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, .06), 0 2px 8px rgba(28, 25, 23, .05);
  --shadow-md: 0 4px 16px rgba(28, 25, 23, .09);
  --shadow-lg: 0 18px 48px rgba(28, 25, 23, .16);
  --header-h: 66px;
  --space-section: 60px;
}

*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding-top: var(--header-h);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
}

p { margin: 0 0 1em; }
a { color: var(--color-accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
button { font-family: inherit; font-size: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 3px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

main > section {
  position: relative;
  background: var(--color-bg);
  padding: var(--space-section) 0;
  overflow: hidden;
}

.section-alt { background: var(--color-bg-alt); }

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  font-weight: 800;
  max-width: 22ch;
  margin-bottom: .35em;
}

.section-subtitle {
  font-size: 1.03rem;
  color: var(--color-text-muted);
  max-width: 62ch;
  margin-bottom: 2.2rem;
}

.bs-block-title {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-top: 2.2rem;
}

/* ---------------------------------------------------------- buttons */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .97rem;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.btn-primary { background: var(--color-accent); color: #FFFFFF; }
.btn-primary:hover { background: var(--color-accent-dark); color: #FFFFFF; text-decoration: none; transform: translateY(-1px); }

.btn-secondary { background: transparent; color: var(--color-accent-dark); border-color: var(--color-accent); }
.btn-secondary:hover { background: var(--color-accent); color: #FFFFFF; text-decoration: none; }

.btn-ghost { background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn-ghost:hover { background: var(--color-primary); color: #FFFFFF; text-decoration: none; }

.hero .btn-ghost, .bs-newsletter .btn-ghost, .bs-sticky-cta .btn-ghost, .bs-cookie-banner .btn-ghost {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, .65);
}
.hero .btn-ghost:hover, .bs-newsletter .btn-ghost:hover, .bs-sticky-cta .btn-ghost:hover, .bs-cookie-banner .btn-ghost:hover {
  background: #FFFFFF;
  color: var(--color-primary);
}

.btn-sm { padding: 9px 17px; font-size: .875rem; }
.btn-lg { padding: 16px 32px; font-size: 1.03rem; }

.bs-icon { flex: 0 0 auto; color: var(--color-accent); }
.bs-icon-sm { width: 20px; height: 20px; }

/* ---------------------------------------------------------- header */
.bs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 250, 249, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-soft);
  transition: box-shadow .25s ease;
}

.bs-header.header--scrolled { box-shadow: var(--shadow-sm); }

.bs-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bs-header-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: -.03em;
  color: var(--color-primary);
}
.bs-header-logo:hover { text-decoration: none; color: var(--color-accent-dark); }

.bs-header-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 10px 20px 22px;
  display: none;
}
.bs-header-nav.is-open { display: block; }
.bs-header-nav ul { display: flex; flex-direction: column; gap: 2px; }
.bs-header-nav a {
  display: block;
  padding: 11px 4px;
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-border-soft);
}
.bs-header-nav a:hover, .bs-header-nav a.is-active { color: var(--color-accent-dark); text-decoration: none; }

.bs-header-cta { display: none; }

.bs-header-hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
}

/* ---------------------------------------------------------- hero */
.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 48px 0 56px;
  background: var(--color-primary);
  isolation: isolate;
}

.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(28, 25, 23, .90) 0%, rgba(28, 25, 23, .74) 45%, rgba(161, 98, 7, .58) 100%);
}

.bs-trust-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 40px;
  background: var(--color-bg-alt);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 46' preserveAspectRatio='none'%3E%3Cpath d='M0 46V22c180-26 360 22 540 22s360-42 540-30c120 8 240 30 360 34v-2z' fill='%23000'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 46' preserveAspectRatio='none'%3E%3Cpath d='M0 46V22c180-26 360 22 540 22s360-42 540-30c120 8 240 30 360 34v-2z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero-inner { position: relative; z-index: 1; }

.hero-title {
  color: #FFFFFF;
  font-size: clamp(1.85rem, 6vw, 3.1rem);
  font-weight: 800;
  max-width: 17ch;
  margin-bottom: .45em;
}

.hero-subtitle {
  color: rgba(255, 255, 255, .93);
  font-size: clamp(1rem, 2.2vw, 1.16rem);
  max-width: 56ch;
  margin-bottom: 1.5rem;
}

.bs-hero-facts { display: flex; flex-direction: column; gap: 9px; margin-bottom: 1.9rem; }
.bs-hero-facts li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #FFFFFF;
  font-size: .93rem;
  font-weight: 500;
}
.bs-hero-facts .bs-icon { color: #E9C46A; margin-top: 1px; }

.bs-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------------------------------------------------------- trust strip */
.bs-trust-strip {
  position: relative;
  background: var(--color-primary);
  padding: 20px 0 34px;
}
.bs-trust-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
}
.bs-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-on-dark);
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.35;
}
.bs-trust-item .bs-icon { color: #E9C46A; width: 22px; height: 22px; }

/* ---------------------------------------------------------- products */
.bs-products { padding-bottom: calc(var(--space-section) + 10px); }

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.product-card__media {
  background: #F7F7F6;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
}
.product-card__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; padding: 8px; }

.product-card__title {
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: .35em;
}

.product-card__rating {
  color: var(--color-accent-dark);
  font-weight: 700;
  font-size: .93rem;
  margin-bottom: 10px;
}
.product-card__reviews { color: var(--color-text-muted); font-weight: 500; }

.product-card__description {
  color: var(--color-text-muted);
  font-size: .93rem;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__description.is-expanded {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.product-card__more {
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 2px 0;
  margin-bottom: 12px;
  color: var(--color-accent-dark);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: underline;
}
.product-card__more:hover { color: var(--color-primary); }

.product-card__highlights, .product-card-bullets { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.product-card__highlights li, .product-card-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: .88rem;
  color: var(--color-text);
}
.product-card__highlights li::before, .product-card-bullets li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
}

.product-card__cta {
  margin-top: auto;
  display: block;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  text-align: center;
  transition: background-color .2s ease;
}
.product-card__cta:hover { background: var(--color-accent-dark); text-decoration: none; }

.product-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  font-size: .8125rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.product-badge--restock { background: #FDEDEC; color: #97331F; }

.product-card--unavailable .product-card__media img { filter: grayscale(.55); }
.product-card--unavailable .product-card__title { color: var(--color-text-muted); }

.category-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.category-chip {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-primary);
  font-size: .9rem;
  font-weight: 600;
}
.category-chip:hover { background: var(--color-accent); color: #FFFFFF; border-color: var(--color-accent); text-decoration: none; }
.category-chips__all { margin-left: 4px; }

/* ---------------------------------------------------------- benefits */
.bs-benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(28, 25, 23, .16) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .38;
}
.bs-benefits > .container { position: relative; }

.bs-benefit-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }

.bs-benefit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.bs-benefit-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-accent-soft);
  margin-bottom: 14px;
}
.bs-benefit-card-title { font-size: 1.08rem; font-weight: 700; margin-bottom: .4em; }
.bs-benefit-card-text { color: var(--color-text-muted); font-size: .95rem; margin: 0; }

/* ---------------------------------------------------------- how it works */
.bs-steps::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(45deg, rgba(28, 25, 23, .10) 0 1px, transparent 1px 16px);
  opacity: .5;
}
.bs-steps > .container { position: relative; }

.bs-step-list { display: grid; grid-template-columns: 1fr; gap: 20px; counter-reset: step; }

.bs-step {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.bs-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.bs-step-title { font-size: 1.06rem; font-weight: 700; margin-bottom: .35em; }
.bs-step-text { color: var(--color-text-muted); font-size: .94rem; margin: 0; }

/* ---------------------------------------------------------- features */
.bs-feature-stack { display: flex; flex-direction: column; gap: 40px; }

.bs-feature { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: center; }

.bs-feature-media { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.bs-feature-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.bs-feature-title { font-size: clamp(1.2rem, 3vw, 1.55rem); font-weight: 700; }
.bs-feature-text { color: var(--color-text-muted); margin-bottom: 1.1em; }

.bs-feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.4rem; }
.bs-feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; }
.bs-feature-list .bs-icon { margin-top: 2px; }

/* ---------------------------------------------------------- information gain */
.bs-infogain-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }

.bs-infogain-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.bs-infogain-card-number {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-accent-dark);
  letter-spacing: -.02em;
  margin-bottom: .35em;
}
.bs-infogain-card-claim { font-size: .96rem; margin-bottom: .8em; }
.bs-infogain-card-gap { color: var(--color-text-muted); font-size: .88rem; margin-bottom: .9em; }
.bs-infogain-card-proof {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-bg-alt);
  color: var(--color-secondary);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin: 0;
}

/* ---------------------------------------------------------- about */
.bs-about-grid { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: start; }
.bs-about-media { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.bs-about-media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.bs-about-body p { color: var(--color-text-muted); }
.bs-about-body p:first-of-type { color: var(--color-text); font-size: 1.06rem; }

/* ---------------------------------------------------------- reviews */
.bs-review-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }

.bs-review-card {
  margin: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.bs-review-stars { color: var(--color-accent); font-size: 1rem; letter-spacing: .12em; margin-bottom: 12px; }
.bs-review-stars-off { color: var(--color-border); }
.bs-review-text { margin: 0 0 14px; font-size: .95rem; color: var(--color-text); }
.bs-review-meta { font-size: .82rem; color: var(--color-text-muted); font-weight: 600; }

/* ---------------------------------------------------------- comparison */
.bs-comparison::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='40' viewBox='0 0 200 40'%3E%3Cpath d='M0 20c25-14 50 14 75 0s50-14 75 0 50 14 50 0' fill='none' stroke='%231C1917' stroke-width='1.5'/%3E%3C/svg%3E");
  opacity: .05;
}
.bs-comparison > .container { position: relative; }

.bs-cmp-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.bs-cmp-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: .92rem; }
.bs-cmp-table th, .bs-cmp-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border-soft);
  vertical-align: top;
}
.bs-cmp-table thead th {
  background: var(--color-primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  border-bottom: 0;
}
.bs-cmp-table tbody th { font-weight: 700; color: var(--color-primary); width: 24%; }
.bs-cmp-table tbody tr:nth-child(even) { background: #FBFBFA; }
.bs-cmp-brand { background: var(--color-accent-soft) !important; font-weight: 600; color: var(--color-text); }

/* ---------------------------------------------------------- fears */
.bs-fear-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }

.bs-fear-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.bs-fear-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: .45em; }
.bs-fear-card-text { color: var(--color-text-muted); font-size: .95rem; margin-bottom: .8em; }
.bs-fear-card-stat {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  font-size: .82rem;
  font-weight: 700;
  margin: 0;
}

/* ---------------------------------------------------------- timeline */
.bs-timeline { display: flex; flex-direction: column; gap: 0; margin-bottom: 26px; }

.bs-timeline-item {
  position: relative;
  padding: 0 0 26px 30px;
  border-left: 2px solid var(--color-border);
}
.bs-timeline-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.bs-timeline-item::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid var(--color-bg);
}
.bs-timeline-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: .3em;
}
.bs-timeline-text { color: var(--color-text-muted); font-size: .95rem; margin: 0; }

.bs-timeline-cta {
  background: var(--color-accent-soft);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-weight: 600;
  margin: 0;
}

/* ---------------------------------------------------------- faq */
.bs-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='32' viewBox='0 0 160 32'%3E%3Cpath d='M0 16c20-12 40 12 60 0s40-12 60 0 40 12 40 0' fill='none' stroke='%231C1917' stroke-width='1.5'/%3E%3C/svg%3E");
  opacity: .04;
}
.bs-faq > .container { position: relative; }

.bs-faq-list, .bs-faq-more { display: flex; flex-direction: column; gap: 10px; }
.bs-faq-more { margin-top: 10px; }

.bs-faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.bs-faq-item > summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 46px 16px 18px;
  position: relative;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .99rem;
  color: var(--color-primary);
}
.bs-faq-item > summary::-webkit-details-marker { display: none; }
.bs-faq-item > summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.bs-faq-item[open] > summary::after { transform: rotate(-135deg); top: 26px; }
.bs-faq-item[open] > summary { color: var(--color-accent-dark); }

.bs-faq-answer { padding: 0 18px 16px; }
.bs-faq-answer p { color: var(--color-text-muted); font-size: .95rem; margin: 0; }

.bs-faq-toggle {
  display: block;
  width: 100%;
  margin-top: 18px;
  padding: 14px 20px;
  background: transparent;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-sm);
  color: var(--color-accent-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
}
.bs-faq-toggle:hover { background: var(--color-accent); color: #FFFFFF; }

/* ---------------------------------------------------------- gallery */
.bs-gallery-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

.bs-gallery-item { margin: 0; }
.bs-gallery-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.bs-gallery-btn img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}
.bs-gallery-btn:hover img { transform: scale(1.04); }
.bs-gallery-item figcaption {
  margin-top: 8px;
  font-size: .84rem;
  color: var(--color-text-muted);
  text-align: center;
}

.bs-lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 10, 9, .92);
}
.bs-lightbox-figure { margin: 0; max-width: 900px; }
.bs-lightbox-figure img { width: 100%; height: auto; border-radius: var(--radius-md); }
.bs-lightbox-figure figcaption { color: #FFFFFF; text-align: center; margin-top: 12px; font-size: .92rem; }
.bs-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .1);
  color: #FFFFFF;
  font-size: 1.6rem;
  line-height: 1;
}
.bs-lightbox-close:hover { background: rgba(255, 255, 255, .25); }

/* ---------------------------------------------------------- newsletter */
.bs-newsletter {
  background: var(--color-accent) !important;
  color: #FFFFFF;
}
.bs-newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .22) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .22) 0 1px, transparent 1px 5px);
  opacity: .5;
}
.bs-newsletter-inner { position: relative; text-align: center; max-width: 720px; }
.bs-newsletter .section-title { color: #FFFFFF; margin-left: auto; margin-right: auto; }
.bs-newsletter .section-subtitle { color: #FFFFFF; margin-left: auto; margin-right: auto; }

.bs-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 14px;
  text-align: left;
}
.bs-newsletter-form .bs-form-group { margin: 0; }
.bs-newsletter-form label { color: #FFFFFF; }
.bs-newsletter-note { color: #FFFFFF; font-size: .84rem; margin: 0; }

/* ---------------------------------------------------------- forms */
.bs-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.bs-form-group label { font-weight: 600; font-size: .9rem; }
.bs-form-group input, .bs-form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
}
.bs-form-group input:focus, .bs-form-group textarea:focus {
  outline: 3px solid var(--color-accent);
  outline-offset: 1px;
  border-color: var(--color-accent);
}
.bs-form-group textarea { resize: vertical; }
.bs-required { color: var(--color-danger); }

.bs-form-message {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  margin-top: 4px;
}
.bs-form-message--error {
  color: var(--color-danger);
  background: var(--color-danger-bg);
  border: 1px solid var(--color-danger);
}

/* ---------------------------------------------------------- inner pages */
.bs-page { padding: 34px 0 var(--space-section); background: var(--color-bg); }
.bs-back-link { display: inline-block; margin-bottom: 14px; font-weight: 600; font-size: .92rem; }
.bs-page-title { font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 800; }
.bs-page-lead { font-size: 1.06rem; color: var(--color-text-muted); max-width: 62ch; margin-bottom: 2rem; }

.bs-contact-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.bs-contact-form-wrap, .bs-contact-details {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
}
.bs-contact-form-wrap .bs-block-title, .bs-contact-details .bs-block-title { margin-top: 0; }
.bs-contact-form { margin-bottom: 4px; }
.bs-contact-address { font-style: normal; }
.bs-contact-address p { margin-bottom: .9em; }
.bs-contact-hours { color: var(--color-text-muted); font-size: .94rem; }
.bs-contact-note {
  background: var(--color-accent-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .9rem;
  margin: 0;
}

.bs-about-page .bs-about-story, .bs-about-page .bs-values, .bs-about-page .bs-about-stats { padding: 0 0 6px; }
.bs-about-story-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
.bs-about-story-media { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.bs-about-story-media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.bs-about-story-body p { color: var(--color-text-muted); }
.bs-about-story-body p:first-of-type { color: var(--color-text); font-size: 1.05rem; }

.bs-values-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.bs-value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.bs-value-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-accent-soft);
  margin-bottom: 14px;
}
.bs-value-card-title { font-size: 1.06rem; font-weight: 700; margin-bottom: .4em; }
.bs-value-card-text { color: var(--color-text-muted); font-size: .95rem; margin: 0; }

.bs-stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.bs-stat-row li { text-align: center; }
.bs-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent-dark);
}
.bs-stat-label { display: block; font-size: .82rem; color: var(--color-secondary); font-weight: 600; }

.bs-legal-page .bs-legal-body { max-width: 78ch; }
.bs-legal-updated { color: var(--color-text-muted); font-size: .9rem; margin-bottom: 2rem; }
.bs-legal-body p { color: var(--color-text-muted); }
.bs-legal-body .bs-block-title:first-child { margin-top: 0; }

/* ---------------------------------------------------------- footer */
.bs-footer {
  position: relative;
  background: var(--color-primary);
  color: var(--color-on-dark);
  padding: 66px 0 26px;
  margin-top: 0;
}
.bs-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 40px;
  background: var(--color-primary);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0 0c180 30 360-18 540-18s360 40 540 28c120-8 240-24 360-26v56H0z' fill='%23000'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0 0c180 30 360-18 540-18s360 40 540 28c120-8 240-24 360-26v56H0z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  transform: translateY(-100%);
}

.bs-footer-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 30px; }
.bs-footer-col { min-width: 0; }
.bs-footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: .4em;
}
.bs-footer-tagline { color: var(--color-on-dark); font-size: .92rem; }
.bs-footer-address { font-style: normal; color: var(--color-on-dark); font-size: .9rem; line-height: 1.8; margin-bottom: 1em; }
.bs-footer-address a { color: #FFFFFF; }
.bs-footer-hours { color: var(--color-on-dark); font-size: .88rem; margin: 0; }
.bs-footer-heading { font-size: 1rem; font-weight: 700; color: #FFFFFF; margin-bottom: .8em; }
.bs-footer-links { display: flex; flex-direction: column; gap: 9px; }
.bs-footer-links a, .bs-footer-social a { color: var(--color-on-dark); font-size: .92rem; }
.bs-footer-links a:hover, .bs-footer-social a:hover { color: #FFFFFF; }
.bs-footer-social { display: flex; flex-direction: column; gap: 9px; }

.bs-footer-languages { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.bs-footer-languages:empty { display: none; }
.bs-footer-languages a { color: var(--color-on-dark); font-size: .88rem; }

.bs-footer-bottom { border-top: 1px solid rgba(245, 245, 244, .18); padding-top: 18px; }
.bs-footer-copyright { color: var(--color-on-dark); font-size: .88rem; margin-bottom: .6em; }
.bs-footer-bottom p { color: var(--color-on-dark); font-size: .8rem; line-height: 1.6; }

/* ---------------------------------------------------------- cookie + sticky */
.bs-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: rgba(28, 25, 23, .97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 0;
}
.bs-cookie-inner { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.bs-cookie-text { color: var(--color-on-dark); font-size: .88rem; margin: 0; }
.bs-cookie-text a { color: #FFFFFF; text-decoration: underline; }
.bs-cookie-actions { display: flex; gap: 10px; }

.bs-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  background: rgba(28, 25, 23, .93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 11px 0;
  border-top: 1px solid rgba(245, 245, 244, .16);
}
.bs-sticky-inner { display: flex; align-items: center; gap: 12px; }
.bs-sticky-text { color: #FFFFFF; font-size: .88rem; font-weight: 600; margin: 0; flex: 1 1 auto; }
.bs-sticky-btn { flex: 0 0 auto; }
.bs-sticky-close {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: #FFFFFF;
  font-size: 1.15rem;
  line-height: 1;
}
.bs-sticky-close:hover { background: rgba(255, 255, 255, .16); }

/* ---------------------------------------------------------- scroll reveal */
.bs-benefit-card, .bs-step, .bs-feature, .bs-infogain-card, .bs-review-card, .bs-fear-card, .bs-value-card, .bs-gallery-item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
}
.bs-benefit-card.visible, .bs-step.visible, .bs-feature.visible, .bs-infogain-card.visible,
.bs-review-card.visible, .bs-fear-card.visible, .bs-value-card.visible, .bs-gallery-item.visible {
  opacity: 1;
  transform: none;
}

.auto-email { word-break: break-all; }

/* ---------------------------------------------------------- section anchors */
.bs-products, .bs-benefits, .bs-steps, .bs-features, .bs-infogain,
.bs-about, .bs-reviews, .bs-comparison, .bs-fears, .bs-timeline-section,
.bs-faq, .bs-gallery { scroll-margin-top: calc(var(--header-h) + 12px); }

.bs-features .section-title, .bs-infogain .section-title, .bs-fears .section-title { max-width: 24ch; }
.bs-about { padding-bottom: calc(var(--space-section) + 8px); }
.bs-reviews .section-subtitle { max-width: 58ch; }
.bs-gallery .bs-gallery-grid { margin-top: 6px; }
.bs-timeline-section .container { max-width: 1100px; }

.bs-feature-body { min-width: 0; }
.bs-feature--left .bs-feature-media { order: 0; }
.bs-faq-question { display: block; }
.bs-contact-page .bs-page-lead { max-width: 66ch; }

/* ---------------------------------------------------------- responsive */
@media (min-width: 600px) {
  .products-grid, .bs-benefit-grid, .bs-infogain-grid, .bs-review-grid, .bs-fear-grid,
  .bs-values-grid, .bs-gallery-grid, .bs-step-list { grid-template-columns: repeat(2, 1fr); }
  .bs-trust-inner { grid-template-columns: repeat(4, 1fr); }
  .bs-cookie-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .bs-newsletter-form { flex-direction: row; align-items: flex-end; }
  .bs-newsletter-form .bs-form-group { flex: 1 1 auto; }
}

@media (min-width: 768px) {
  :root { --space-section: 80px; --header-h: 74px; }
  .container { padding: 0 40px; }
  .hero { padding: 56px 0 68px; }
  .bs-contact-grid { grid-template-columns: 1.15fr .85fr; }
  .bs-about-story-grid { grid-template-columns: .8fr 1.2fr; }
  .bs-about-grid { grid-template-columns: .85fr 1.15fr; }
  .bs-stat-row { grid-template-columns: repeat(4, 1fr); }
  .bs-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .bs-faq-toggle { width: auto; margin-left: auto; margin-right: auto; padding-left: 40px; padding-right: 40px; }
  .bs-timeline { flex-direction: row; gap: 0; }
  .bs-timeline-item { flex: 1 1 0; padding: 30px 18px 0 0; border-left: 0; border-top: 2px solid var(--color-border); }
  .bs-timeline-item::before { left: 0; top: -9px; }
  .bs-timeline-item:last-child { border-top-color: var(--color-border); }
}

@media (min-width: 1024px) {
  .bs-header-nav {
    position: static;
    display: block;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .bs-header-nav ul { flex-direction: row; gap: 26px; }
  .bs-header-nav a { padding: 6px 0; border-bottom: 2px solid transparent; font-size: .95rem; }
  .bs-header-nav a:hover, .bs-header-nav a.is-active { border-bottom-color: var(--color-accent); }
  .bs-header-cta { display: block; }
  .bs-header-hamburger { display: none; }

  .products-grid, .bs-benefit-grid, .bs-infogain-grid, .bs-review-grid { grid-template-columns: repeat(3, 1fr); }
  .bs-step-list { grid-template-columns: repeat(4, 1fr); }
  .bs-gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .bs-fear-grid, .bs-values-grid { grid-template-columns: repeat(2, 1fr); }
  .bs-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }

  .bs-feature { grid-template-columns: repeat(2, 1fr); gap: 46px; }
  .bs-feature--right .bs-feature-media { order: 2; }
  .bs-feature-stack { gap: 64px; }

  .bs-sticky-inner { justify-content: center; }
  .bs-sticky-text { flex: 0 1 auto; }
}

@media (min-width: 1200px) {
  .bs-fear-grid { grid-template-columns: repeat(3, 1fr); }
  .section-title { max-width: 26ch; }
}

@media (min-width: 1600px) {
  .container { max-width: 1320px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .bs-benefit-card, .bs-step, .bs-feature, .bs-infogain-card, .bs-review-card, .bs-fear-card, .bs-value-card, .bs-gallery-item {
    opacity: 1;
    transform: none;
  }
}
