/* TravelCraft Store — sales homepage */

:root {
  --bps-ink: #0c1a17;
  --bps-ink-soft: #1a2e29;
  --bps-teal: #0f4c46;
  --bps-teal-mid: #17665d;
  --bps-sand: #e6d3b3;
  --bps-coral: #a84416;
  --bps-coral-hot: #c24e1a;
  --bps-cream: #f3ebe0;
  --bps-muted: #5c6f69;
  --bps-line: rgba(15, 76, 70, 0.14);
  --bps-radius: 12px;
  --bps-font: "Figtree", system-ui, sans-serif;
  --bps-display: "Fraunces", Georgia, serif;
  --bps-max: 1120px;
  --bps-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: auto; overflow-x: clip; }

html.lenis {
  height: auto;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

html.lenis.lenis-stopped {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html.lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  max-width: 100%;
  font-family: var(--bps-font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--bps-ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(230, 211, 179, 0.35), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(23, 102, 93, 0.12), transparent 50%),
    var(--bps-cream);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--bps-teal-mid); }
a:hover { color: var(--bps-coral); }

.bps-skip {
  position: absolute; left: -9999px; top: 0;
  background: #fff; padding: .5rem 1rem; z-index: 1000;
}
.bps-skip:focus { left: 1rem; top: 1rem; }

section[id],
.bps-hero[id],
.bps-demo-pick[id],
.bps-modular[id],
.bps-cta-band[id] {
  scroll-margin-top: 5.5rem;
}

/* Demo chooser */
.bps-demo-pick--grid {
  padding: 2.75rem 0 2.25rem;
  background: #fff;
  border-bottom: 1px solid var(--bps-line);
  text-align: center;
}
.bps-demo-pick__eyebrow {
  margin: 0 0 .35rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bps-teal-mid);
}
.bps-demo-pick__title,
.bps-demo-pick--grid h2 {
  font-family: var(--bps-display);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.2;
  margin: 0 0 .5rem;
  color: var(--bps-teal);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.bps-demo-pick__lead {
  margin: 0 0 1.5rem;
  color: var(--bps-muted);
}
.bps-demo-pick__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
}
.bps-demo-card { margin: 0; }
.bps-demo-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--bps-radius);
  overflow: hidden;
  background: var(--bps-cream);
  border: 1px solid var(--bps-line);
  transition: transform .3s var(--bps-ease), box-shadow .3s var(--bps-ease);
}
.bps-demo-card__link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(12, 26, 23, 0.14);
  color: inherit;
}
.bps-demo-card__frame {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bps-teal);
}
.bps-demo-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--bps-ease);
}
.bps-demo-card__link:hover .bps-demo-card__frame img { transform: scale(1.04); }
.bps-demo-card__name {
  display: block;
  padding: .85rem 1rem 0.2rem;
  font-family: var(--bps-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--bps-teal);
  text-align: center;
}
.bps-demo-card__cta {
  display: block;
  padding: 0 1rem 1rem;
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--bps-teal-mid);
}

/* Homepage demo scroll showcase */
.bps-demo-pick--showcase {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: calc(var(--bps-demo-steps, 3) * 100vh);
  background:
    radial-gradient(900px 480px at 15% 20%, rgba(23, 102, 93, 0.1), transparent 55%),
    radial-gradient(800px 420px at 85% 80%, rgba(230, 211, 179, 0.28), transparent 50%),
    #fff;
  border-block: 1px solid var(--bps-line);
  overflow: clip;
}
.bps-demo-pick__stage {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  width: 100%;
  max-width: 100%;
  height: 100vh;
  min-height: 640px;
  padding: clamp(1rem, 3vw, 2rem);
  overflow: hidden;
  box-sizing: border-box;
}
.bps-demo-pick__col {
  position: relative;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.bps-demo-pick__track {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.5rem 0.5rem;
  will-change: transform;
  max-width: 100%;
}
.bps-demo-pick__track--right {
  padding-top: 1.5rem;
}
.bps-demo-pick__thumb {
  margin: 0;
  border-radius: calc(var(--bps-radius) + 2px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  border: 1px solid var(--bps-line);
  box-shadow: 0 16px 36px rgba(12, 26, 23, 0.12);
  background: var(--bps-teal);
}
.bps-demo-pick__img,
.bps-demo-pick__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bps-demo-pick__center {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bps-demo-pick__card {
  width: min(100%, 380px);
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--bps-line);
  border-radius: calc(var(--bps-radius) + 8px);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow:
    0 24px 60px rgba(12, 26, 23, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
  backdrop-filter: blur(8px);
}
.bps-demo-pick--showcase .bps-demo-pick__title {
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  text-transform: none;
  max-width: 22ch;
  margin-inline: auto;
}
.bps-demo-pick--showcase .bps-demo-pick__lead {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
}
.bps-demo-pick__active-name {
  margin: 0 0 1.15rem;
  font-family: var(--bps-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: var(--bps-teal);
  line-height: 1.25;
  transition: opacity 0.25s var(--bps-ease);
}
.bps-demo-pick__active-name.is-changing { opacity: 0.45; }
.bps-demo-pick__active-link { width: 100%; max-width: 16rem; margin-inline: auto; }

@media (max-width: 900px) {
  .bps-demo-pick__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
  .bps-demo-pick--showcase {
    min-height: auto;
  }
  .bps-demo-pick__stage {
    position: relative;
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 2rem 1rem 2.5rem;
  }
  .bps-demo-pick__col { display: none; }
  .bps-demo-pick__card { width: 100%; max-width: 420px; }
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.bps-container {
  width: min(100% - 2rem, var(--bps-max));
  margin-inline: auto;
}

/* Header */
.bps-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243, 235, 224, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bps-line);
}
.bps-header__inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 4.25rem;
}
.bps-brand__name {
  font-family: var(--bps-display);
  font-weight: 700; font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  color: var(--bps-teal); text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 22rem;
  display: inline-block;
}
.bps-header__buy { flex-shrink: 0; }
.bps-brand-mark {
  font-family: var(--bps-display);
  font-size: clamp(1.15rem, 3.2vw, 1.85rem);
  font-weight: 700; margin: 0 0 .5rem;
  letter-spacing: -0.02em; color: var(--bps-sand);
  line-height: 1.25;
  max-width: 28ch;
}
.bps-nav { margin-left: auto; }
.bps-nav-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .35rem 1rem; align-items: center;
}
.bps-nav-list a {
  text-decoration: none; color: var(--bps-ink-soft);
  font-weight: 600; font-size: .92rem;
}
.bps-nav-toggle {
  display: none; margin-left: auto;
  background: transparent; border: 0; cursor: pointer; padding: .4rem;
}
.bps-nav-toggle span {
  display: block; width: 1.4rem; height: 2px;
  background: var(--bps-ink); margin: 5px 0;
}

/* Buttons */
.bps-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem; font-weight: 700; text-decoration: none;
  border-radius: 999px; border: 2px solid transparent;
  padding: .7rem 1.25rem; font-size: .95rem;
  transition: transform .2s var(--bps-ease), background .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.bps-btn--sm { padding: .45rem .9rem; font-size: .85rem; }
.bps-btn--lg { padding: .95rem 1.6rem; font-size: 1.05rem; }
.bps-btn--buy {
  background: var(--bps-coral);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(212, 101, 47, 0.28);
}
.bps-btn--buy:hover {
  background: var(--bps-coral-hot);
  transform: translateY(-2px);
  color: #fff !important;
}
.bps-btn--ghost {
  background: transparent;
  border-color: #ffffff;
  color: #fff !important;
}
.bps-btn--ghost:hover {
  background: var(--bps-teal);
  color: #fff !important;
}
.bps-btn--outline {
  background: transparent;
  border-color: var(--bps-teal);
  color: var(--bps-teal) !important;
}
.bps-btn--outline:hover {
  background: var(--bps-teal);
  border-color: var(--bps-teal);
  color: #fff !important;
  transform: translateY(-2px);
}

/* Hero */
.bps-hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: flex; align-items: flex-end;
  padding: 5rem 0 4rem;
  color: #f7f3ec;
  overflow: hidden;
}
.bps-hero__bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.bps-hero__photo {
  width: 100%; height: 100%; object-fit: cover;
}
.bps-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(12, 26, 23, 0.88) 0%, rgba(15, 76, 70, 0.72) 48%, rgba(12, 26, 23, 0.55) 100%);
}
@keyframes bpsHeroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1.5%, -1%, 0); }
}
.bps-hero__inner { position: relative; z-index: 1; max-width: 42rem; }
.bps-hero .bps-brand-mark {
  font-family: var(--bps-display);
  font-size: clamp(1.15rem, 3vw, 1.75rem);
  font-weight: 700; margin: 0 0 .5rem;
  letter-spacing: -0.02em; color: var(--bps-sand);
  line-height: 1.25;
  max-width: 28ch;
}
.bps-hero h1 {
  font-family: var(--bps-display);
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  line-height: 1.2; margin: 0 0 .85rem;
  font-weight: 500;
  max-width: 22ch;
}
.bps-hero__lead {
  margin: 0 0 1.35rem; color: rgba(247, 243, 236, 0.88);
  font-size: 1.08rem;
}
.bps-hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1rem; }
.bps-hero__proof { margin: 0; font-size: .88rem; color: rgba(247, 243, 236, 0.65); }

/* Sections */
.bps-section { padding: 4.25rem 0; }
.bps-section--alt {
  background: rgba(255, 255, 255, 0.45);
  border-block: 1px solid var(--bps-line);
}
.bps-section h2 {
  font-family: var(--bps-display);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  line-height: 1.2; margin: 0 0 .85rem;
  color: var(--bps-teal);
  letter-spacing: -0.02em;
}
.bps-section h3 {
  font-size: 1.1rem; margin: 0 0 .4rem; color: var(--bps-ink);
}
.bps-lead { color: var(--bps-muted); max-width: 54ch; margin-top: 0; }
.bps-prose p { max-width: 68ch; color: var(--bps-ink-soft); }
.bps-prose .bps-btn { margin-top: .5rem; }

.bps-trust { padding: 1.25rem 0; background: var(--bps-teal); color: var(--bps-sand); }
.bps-trust__row {
  display: flex; flex-wrap: wrap; gap: .75rem 1.75rem;
  justify-content: center; font-size: .9rem; font-weight: 600;
}

.bps-grid-3 {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.5rem;
}
.bps-who-grid article {
  min-height: 100%;
  transition: transform .25s var(--bps-ease), box-shadow .25s var(--bps-ease);
}
.bps-who-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 26, 23, 0.1);
}
.bps-dash-grid article {
  min-height: 100%;
  transition: transform .25s var(--bps-ease), box-shadow .25s var(--bps-ease);
}
.bps-dash-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 26, 23, 0.1);
}
.bps-dash-grid h3 {
  color: var(--bps-teal);
}
.bps-grid-3 article,
.bps-quote {
  background: #fff;
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius);
  padding: 1.15rem 1.2rem;
}
.bps-grid-3 p { margin: 0; color: var(--bps-muted); font-size: .95rem; }

.bps-feature-list {
  columns: 2; gap: 2rem;
  margin: 1.25rem 0 1.5rem; padding-left: 1.2rem;
  color: var(--bps-ink-soft);
}
.bps-feature-list li { break-inside: avoid; margin-bottom: .45rem; }

.bps-split {
  display: grid; gap: 1.75rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}
.bps-split--rev { direction: rtl; }
.bps-split--rev > * { direction: ltr; }
.bps-panel {
  min-height: 180px;
  border-radius: var(--bps-radius);
  background:
    linear-gradient(145deg, var(--bps-teal), #1a5c6e);
  color: var(--bps-sand);
  display: grid; place-items: center;
  padding: 1.5rem; text-align: center; font-weight: 600;
}

.bps-media {
  margin: 0;
  border-radius: var(--bps-radius);
  overflow: hidden;
  border: 1px solid var(--bps-line);
  background: #fff;
  box-shadow: 0 14px 36px rgba(12, 26, 23, 0.1);
}
.bps-media .bps-img,
.bps-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  max-height: 440px;
  object-fit: cover;
  display: block;
}
.bps-media--caption { position: relative; }
.bps-media--caption figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: .75rem 1rem;
  background: linear-gradient(transparent, rgba(12, 26, 23, 0.85));
  color: var(--bps-sand);
  font-size: .88rem; font-weight: 600;
}

.bps-card-media {
  overflow: hidden;
  padding: 0 !important;
}
.bps-card-media__img,
.bps-card-media .bps-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}
.bps-card-media h3,
.bps-card-media p {
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}
.bps-card-media h3 { margin-top: .9rem; }
.bps-card-media p { padding-bottom: 1.1rem; }

.bps-pill-list {
  list-style: none; margin: 1rem 0 1.5rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.bps-pill-list li {
  background: #fff; border: 1px solid var(--bps-line);
  border-radius: 999px; padding: .4rem .85rem;
  font-size: .9rem; font-weight: 600; color: var(--bps-teal);
}

/* Staff Web Panel showcase */
.bps-section__eyebrow {
  margin: 0 0 .35rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bps-teal-mid);
}
.bps-staff-hero { margin-top: 1.5rem; }
.bps-media--panel {
  box-shadow: 0 18px 44px rgba(12, 26, 23, 0.14);
}
.bps-panel-mockup {
  width: 100%;
  height: auto;
  display: block;
}
.bps-check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.bps-check-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: .55rem;
  color: var(--bps-ink-soft);
}
.bps-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bps-coral);
}
.bps-check-list--compact li {
  font-size: .92rem;
  margin-bottom: .4rem;
}
.bps-staff-url {
  margin-top: 1.25rem;
  padding: .85rem 1rem;
  background: #fff;
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius);
  font-size: .92rem;
}
.bps-staff-url code {
  display: inline-block;
  margin-left: .35rem;
  padding: .15rem .45rem;
  background: var(--bps-cream);
  border-radius: 6px;
  font-size: .88rem;
}
.bps-staff-roles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.bps-staff-role-card {
  background: #fff;
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius);
  padding: 1.1rem 1.15rem;
  transition: transform .25s var(--bps-ease), box-shadow .25s var(--bps-ease);
}
.bps-staff-role-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 26, 23, 0.1);
}
.bps-staff-role-card h3 {
  margin: 0 0 .5rem;
  font-family: var(--bps-display);
  color: var(--bps-teal);
  font-size: 1.05rem;
}
.bps-staff-role-card p {
  margin: 0 0 .35rem;
  font-size: .88rem;
  color: var(--bps-muted);
  line-height: 1.45;
}
.bps-staff-showcase {
  display: grid;
  gap: 2rem;
  margin-top: 1.75rem;
}
.bps-staff-panel-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.75rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--bps-line);
  border-radius: calc(var(--bps-radius) + 2px);
  padding: 1.25rem;
  box-shadow: 0 10px 28px rgba(12, 26, 23, 0.06);
}
.bps-staff-panel-card--reverse .bps-media { order: 2; }
.bps-staff-panel-card--reverse .bps-staff-panel-card__body { order: 1; }
.bps-staff-panel-card__body h3 {
  margin: 0 0 .5rem;
  font-family: var(--bps-display);
  font-size: 1.35rem;
  color: var(--bps-teal);
}
.bps-staff-panel-card__body > p {
  margin: 0 0 .75rem;
  color: var(--bps-muted);
  font-size: .96rem;
  line-height: 1.55;
}

.bps-shots {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1.25rem;
}
.bps-shot {
  margin: 0;
  border-radius: var(--bps-radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--bps-line);
  transition: transform .35s var(--bps-ease);
}
.bps-shot:hover { transform: translateY(-4px); }
.bps-shot .bps-img,
.bps-shot img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.bps-shot figcaption {
  padding: .65rem .75rem;
  font-weight: 600;
  font-size: .88rem;
  color: var(--bps-teal);
  text-align: center;
}

.bps-cta-band {
  padding: 2.5rem 0;
  background: linear-gradient(90deg, var(--bps-ink), var(--bps-teal));
  color: #fff;
}
.bps-cta-band__inner {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
}
.bps-cta-band p { margin: 0; font-size: 1.2rem; font-weight: 600; max-width: 28ch; }

.bps-product-cta .bps-cta-band__inner {
  align-items: center;
  gap: 1.5rem;
}

.bps-product-cta__copy h2 {
  font-family: var(--bps-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.2;
  margin: 0 0 .5rem;
  color: var(--bps-sand);
  max-width: 36ch;
}

.bps-product-cta__copy p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(247, 243, 236, 0.88);
  max-width: 52ch;
}

.bps-btn--ghost-light {
  border-color: rgba(247, 243, 236, 0.75);
  color: #fff !important;
  flex-shrink: 0;
}

.bps-btn--ghost-light:hover {
  background: rgba(247, 243, 236, 0.12);
  border-color: #fff;
  color: #fff !important;
}

.bps-table-wrap { overflow-x: auto; margin: 1.25rem 0; }
.bps-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border-radius: var(--bps-radius); overflow: hidden;
  font-size: .92rem;
}
.bps-table th, .bps-table td {
  border: 1px solid var(--bps-line);
  padding: .7rem .8rem; text-align: left; vertical-align: top;
}
.bps-table thead th { background: var(--bps-teal); color: var(--bps-sand); }
.bps-table tbody th { width: 32%; background: rgba(15, 76, 70, 0.06); }

.bps-pricing { text-align: center; }
.bps-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 920px;
  margin-inline: auto;
  text-align: left;
}
.bps-price-card {
  text-align: left;
  background: #fff; border: 2px solid var(--bps-teal);
  border-radius: 16px; padding: 1.75rem;
  box-shadow: 0 18px 40px rgba(15, 76, 70, 0.12);
}
.bps-price-card--featured {
  border-color: var(--bps-coral);
  box-shadow: 0 18px 40px rgba(212, 101, 47, 0.15);
}
.bps-price-card__name {
  margin: 0; font-weight: 700; color: var(--bps-teal);
  text-transform: none; letter-spacing: 0; font-size: 1.05rem;
  line-height: 1.35;
}
.bps-price-card__sites {
  margin: .35rem 0 0; font-weight: 600; color: var(--bps-muted); font-size: .9rem;
}
.bps-price-card__amount {
  font-family: var(--bps-display);
  font-size: 3rem; margin: .35rem 0 1rem; color: var(--bps-ink);
}
.bps-price-card ul { padding-left: 1.1rem; margin: 0 0 1.25rem; color: var(--bps-muted); }
.bps-price-card__note { margin: 1.25rem 0 0; font-size: .85rem; color: var(--bps-muted); }

.bps-quote { margin: 0; }
.bps-quote p { margin: 0 0 .75rem; font-style: italic; color: var(--bps-ink-soft); }
.bps-quote cite { font-style: normal; font-weight: 700; color: var(--bps-teal); font-size: .9rem; }

ol.bps-steps { max-width: 52ch; color: var(--bps-ink-soft); }

.bps-faq details {
  background: #fff; border: 1px solid var(--bps-line);
  border-radius: 10px; padding: .85rem 1rem; margin-bottom: .65rem;
}
.bps-faq summary {
  font-weight: 700; cursor: pointer; color: var(--bps-teal);
}
.bps-faq p { margin: .65rem 0 0; color: var(--bps-muted); }

.bps-dl { margin: 1rem 0 0; }
.bps-dl > div {
  padding: .85rem 0; border-bottom: 1px dashed var(--bps-line);
}
.bps-dl dt { font-weight: 700; color: var(--bps-teal); margin-bottom: .25rem; }
.bps-dl dd { margin: 0; color: var(--bps-muted); max-width: 70ch; }

.bps-final {
  position: relative;
  overflow: hidden;
  color: #f7f3ec; text-align: center;
}
.bps-final__bg {
  position: absolute; inset: 0;
}
.bps-final__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.bps-final__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12, 26, 23, 0.92), rgba(15, 76, 70, 0.88));
}
.bps-final h2 { color: var(--bps-sand); }
.bps-final p { color: rgba(247, 243, 236, 0.85); max-width: 42ch; margin-inline: auto; }
.bps-final__inner { position: relative; z-index: 1; padding: 1rem 0; }

.bps-cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }

.bps-use-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .65rem;
  margin: 1.25rem 0 1.5rem;
}
.bps-use-strip .bps-img,
.bps-use-strip img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Sticky buy */
.bps-sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; gap: .75rem; align-items: center; justify-content: center;
  flex-wrap: wrap;
  padding: .7rem 1rem;
  background: rgba(12, 26, 23, 0.96);
  color: var(--bps-sand);
  font-size: .9rem; font-weight: 600;
  transform: translateY(110%);
  transition: transform .35s var(--bps-ease);
}
.bps-sticky-buy.is-visible { transform: translateY(0); }
.bps-sticky-buy span {
  max-width: min(72vw, 38rem);
  line-height: 1.3;
  font-size: .8rem;
  text-align: center;
}

/* Floating support (homepage) */
.bps-float-support {
  position: fixed;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 55;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 999px;
  background: var(--bps-teal);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(12, 26, 23, 0.28);
  transition: transform .25s var(--bps-ease), background .2s ease, box-shadow .25s ease;
}
.bps-float-support:hover,
.bps-float-support:focus-visible {
  transform: translateY(-50%) scale(1.06);
  background: var(--bps-ink);
  color: #fff;
  box-shadow: 0 14px 32px rgba(12, 26, 23, 0.35);
  outline: none;
}
.bps-float-support__icon { display: block; }
.bps-float-support__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@media (max-width: 560px) {
  .bps-float-support {
    right: .75rem;
    width: 3.25rem;
    height: 3.25rem;
  }
}

/* Footer */
.bps-footer {
  background: var(--bps-ink);
  color: rgba(247, 243, 236, 0.82);
  padding: 3rem 0 5.5rem;
}
.bps-footer__grid {
  display: grid; gap: 1.75rem;
  grid-template-columns: 1.4fr 1fr 1fr;
}
.bps-footer__brand {
  font-family: var(--bps-display);
  font-size: 1.05rem; color: var(--bps-sand); margin: 0 0 .5rem;
  line-height: 1.3;
}
.bps-footer__tag { margin: 0 0 1rem; max-width: 34ch; font-size: .92rem; }
.bps-footer__h {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--bps-sand); margin: 0 0 .75rem;
}
.bps-footer__links { list-style: none; margin: 0; padding: 0; }
.bps-footer__links a { color: inherit; text-decoration: none; }
.bps-footer__links a:hover { color: var(--bps-coral-hot); }
.bps-footer__links li { margin-bottom: .35rem; font-size: .92rem; }
.bps-footer__bar {
  margin-top: 2rem; padding-top: 1rem;
  border-top: 1px solid rgba(230, 211, 179, 0.15);
  font-size: .85rem;
}

/* Inner / product page */
.bps-page {
  padding: 3rem 0 4rem;
}
.bps-page__title {
  font-family: var(--bps-display);
  color: var(--bps-teal); margin: 0 0 1rem;
}

.bps-product-page .bps-demo-pick {
  border-top: 1px solid var(--bps-line);
  border-bottom: 1px solid var(--bps-line);
}

.bps-product-hero {
  padding: 3.5rem 0 3rem;
}

.bps-product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: center;
}

.bps-product-hero__media {
  margin: 0;
  border-radius: calc(var(--bps-radius) + 4px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--bps-line);
  box-shadow: 0 16px 40px rgba(12, 26, 23, 0.08);
}

.bps-product-hero__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bps-product-hero__eyebrow {
  margin: 0 0 .5rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bps-teal-mid);
}

.bps-product-hero__title {
  font-family: var(--bps-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  line-height: 1.15;
  color: var(--bps-teal);
  margin: 0 0 1rem;
}

.bps-product-hero__excerpt {
  margin: 0 0 1.25rem;
  color: var(--bps-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.bps-product-hero__excerpt p {
  margin: 0 0 .75rem;
}

.bps-product-hero__excerpt p:last-child {
  margin-bottom: 0;
}

.bps-product-hero__price {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  color: var(--bps-ink);
  margin: 0 0 1.35rem;
}

.bps-product-hero__price .woocommerce-Price-currencySymbol {
  font-size: .85em;
}

.bps-product-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.bps-product-description {
  background: #fff;
}

.bps-product-description .bps-section__title {
  font-family: var(--bps-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--bps-teal);
  margin: 0 0 1.25rem;
}

.bps-product-description__content {
  max-width: 48rem;
  color: var(--bps-ink-soft);
}

.bps-product-description__content h2,
.bps-product-description__content h3,
.bps-product-description__content h4 {
  font-family: var(--bps-display);
  color: var(--bps-teal);
  margin: 1.75rem 0 .75rem;
}

.bps-product-description__content ul,
.bps-product-description__content ol {
  padding-left: 1.25rem;
}

.bps-product-min {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--bps-line);
  border-radius: 16px;
  padding: 1.25rem 1.5rem 2rem;
  overflow: hidden;
}
.bps-product-min__img {
  width: calc(100% + 3rem);
  max-width: none;
  margin: -1.25rem -1.5rem 0;
  height: 200px;
  object-fit: cover;
}
.bps-product-min h1 {
  font-family: var(--bps-display);
  font-size: 1.8rem; color: var(--bps-teal); margin: 0 0 .5rem;
}
.bps-product-min .price {
  font-size: 2rem; font-weight: 700; margin: .75rem 0 1.25rem;
}

/* —— Pages / blog —— */
.bps-page { padding: 5rem 0 4rem; }
.bps-page__title {
  font-family: var(--bps-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bps-teal);
  margin: 0 0 .75rem;
  line-height: 1.15;
}
.bps-page-hero { margin-bottom: 2.5rem; max-width: 40rem; }
.bps-page-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .75rem;
  font-weight: 600;
  color: var(--bps-muted);
  margin: 0 0 .5rem;
}
.bps-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.bps-section-head h2 { margin: 0 0 .35rem; }
.bps-section-head .bps-lead { margin: 0; max-width: 36rem; }

.bps-blog-grid { align-items: stretch; }
.bps-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bps-cream);
  border: 1px solid var(--bps-line);
  overflow: hidden;
  height: 100%;
}
.bps-section--alt .bps-blog-card { background: #fff; }
.bps-blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bps-line);
}
.bps-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.bps-blog-card:hover .bps-blog-card__media img { transform: scale(1.04); }
.bps-blog-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .4rem;
}
.bps-blog-card__meta {
  margin: 0;
  font-size: .8rem;
  color: var(--bps-muted);
}
.bps-blog-card__title {
  font-family: var(--bps-display);
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.3;
}
.bps-blog-card__title a {
  color: var(--bps-ink);
  text-decoration: none;
}
.bps-blog-card__title a:hover { color: var(--bps-teal); }
.bps-blog-card__excerpt {
  margin: 0;
  font-size: .95rem;
  color: var(--bps-muted);
  flex: 1;
}
.bps-blog-card__more {
  font-size: .9rem;
  font-weight: 600;
  color: var(--bps-teal);
  text-decoration: none;
  margin-top: .35rem;
}
.bps-blog-card--placeholder { opacity: .92; }
.bps-pagination { margin-top: 2.5rem; }
.bps-pagination .nav-links {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}
.bps-pagination a, .bps-pagination span {
  text-decoration: none;
  font-size: .9rem;
}

.bps-support-cards article {
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--bps-line);
  background: #fff;
}
.bps-support-cards h2 {
  font-family: var(--bps-display);
  font-size: 1.25rem;
  margin: 0 0 .5rem;
  color: var(--bps-teal);
}
.bps-support-cards p { margin: 0 0 1rem; color: var(--bps-muted); font-size: .95rem; }
.bps-support-block { margin-top: 3rem; max-width: 42rem; }
.bps-support-block h2 {
  font-family: var(--bps-display);
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--bps-teal);
}
.bps-steps {
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.7;
}
.bps-steps li { margin-bottom: .55rem; }
.bps-support-cta { margin-top: 3rem; }
.bps-single-post__thumb {
  margin: 0 0 1.75rem;
  overflow: hidden;
}
.bps-single-post__thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.bps-prose .entry-content {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 42rem;
}
.bps-prose .entry-content > *:first-child { margin-top: 0; }

/* Modular design system section */
.bps-modular {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--bps-line);
}
.bps-modular::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 0% 0%, rgba(23, 102, 93, 0.08), transparent 55%),
    radial-gradient(600px 320px at 100% 100%, rgba(230, 211, 179, 0.22), transparent 50%);
  pointer-events: none;
}
.bps-modular > .bps-container {
  position: relative;
  z-index: 1;
}
.bps-modular__head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.5rem;
}
.bps-modular__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bps-teal-mid);
  margin-bottom: 0.75rem;
}
.bps-modular__title {
  font-family: var(--bps-display);
  font-size: clamp(1.65rem, 3.6vw, 2.5rem);
  line-height: 1.15;
  color: var(--bps-teal);
  margin: 0 auto 1rem;
  letter-spacing: -0.02em;
}
.bps-modular__lead {
  font-size: 1.05rem;
  color: var(--bps-muted);
  max-width: 58ch;
  margin: 0 auto;
  line-height: 1.65;
}
.bps-modular__lead strong {
  color: var(--bps-ink-soft);
  font-weight: 600;
}
.bps-modular__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: start;
}
.bps-stack {
  background: #fff;
  border: 1px solid var(--bps-line);
  border-radius: calc(var(--bps-radius) + 4px);
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(12, 26, 23, 0.08);
}
.bps-stack__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bps-muted);
  margin: 0 0 1rem;
}
.bps-stack__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--bps-radius);
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px dashed transparent;
  transition: transform 0.2s var(--bps-ease), box-shadow 0.2s var(--bps-ease);
}
.bps-stack__block:hover {
  transform: translateX(4px);
}
.bps-stack__block--header {
  background: #e8f4f2;
  color: var(--bps-teal);
  border-color: rgba(15, 76, 70, 0.2);
}
.bps-stack__block--hero {
  background: #fdf0e8;
  color: var(--bps-coral);
  border-color: rgba(168, 68, 22, 0.2);
}
.bps-stack__block--section {
  background: #f5f0ea;
  color: var(--bps-ink-soft);
  border-color: rgba(26, 46, 41, 0.12);
}
.bps-stack__block--footer {
  background: var(--bps-ink-soft);
  color: #fff;
  margin-bottom: 0;
  border-color: transparent;
}
.bps-stack__pick {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}
.bps-stack__block--footer .bps-stack__pick {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.bps-stack__arrow {
  text-align: center;
  color: var(--bps-muted);
  font-size: 1.25rem;
  margin: 0.75rem 0;
}
.bps-stack__result {
  text-align: center;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--bps-teal), var(--bps-teal-mid));
  color: #fff;
  border-radius: var(--bps-radius);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(15, 76, 70, 0.22);
}
.bps-combos {
  background: #fff;
  border: 1px solid var(--bps-line);
  border-radius: calc(var(--bps-radius) + 4px);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 14px 36px rgba(12, 26, 23, 0.06);
}
.bps-combos h3 {
  font-family: var(--bps-display);
  font-size: 1.35rem;
  color: var(--bps-teal);
  margin: 0 0 1rem;
}
.bps-combos ul { list-style: none; margin: 0; padding: 0; }
.bps-combos li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--bps-line);
  font-size: 0.92rem;
}
.bps-combos li:last-child { border-bottom: none; }
.bps-combos__more {
  color: var(--bps-muted);
  font-style: italic;
  border-bottom: none !important;
  padding-top: 0.5rem;
}
.bps-tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
}
.bps-tag--h { background: #e8f4f2; color: var(--bps-teal); }
.bps-tag--s { background: #fdf0e8; color: var(--bps-coral); }
.bps-tag--a { background: #f0ebe3; color: var(--bps-ink-soft); }
.bps-combos .bps-plus { color: var(--bps-muted); font-weight: 400; }
.bps-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.bps-stat {
  background: #fff;
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius);
  padding: 1.35rem 1.25rem;
  text-align: center;
  transition: transform 0.25s var(--bps-ease), box-shadow 0.25s var(--bps-ease);
}
.bps-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(12, 26, 23, 0.08);
}
.bps-stat strong {
  display: block;
  font-family: var(--bps-display);
  font-size: 2rem;
  color: var(--bps-coral);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.bps-stat span { font-size: 0.88rem; color: var(--bps-muted); line-height: 1.45; }

.bps-modular-flow {
  margin-top: 3rem;
  padding: 2.5rem;
  border: 1px solid var(--bps-line);
  border-radius: calc(var(--bps-radius) + 6px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(12, 26, 23, 0.06);
}
.bps-modular-flow__title {
  font-family: var(--bps-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  color: var(--bps-teal);
  margin: 0 0 1.75rem;
  text-align: center;
}
.bps-modular-flow__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.bps-modular-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--bps-line);
  border-radius: var(--bps-radius);
  padding: 1.35rem 1rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s var(--bps-ease), transform 0.2s var(--bps-ease), box-shadow 0.2s var(--bps-ease);
}
.bps-modular-flow__step:hover {
  border-color: rgba(15, 76, 70, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(12, 26, 23, 0.07);
}
.bps-modular-flow__num {
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 0 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bps-teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.bps-modular-flow__step h4 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: var(--bps-ink);
  line-height: 1.3;
}
.bps-modular-flow__step p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--bps-muted);
  line-height: 1.55;
  max-width: 18ch;
}
.bps-modular-flow__cta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bps-line);
  text-align: center;
}
.bps-modular-flow__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}
.bps-modular-flow__actions .bps-btn {
  min-width: 11.5rem;
}
.bps-modular-flow__note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--bps-muted);
}

@media (max-width: 900px) {
  .bps-grid-3, .bps-shots, .bps-footer__grid, .bps-split, .bps-use-strip {
    grid-template-columns: 1fr 1fr;
  }
  .bps-split { grid-template-columns: 1fr; }
  .bps-feature-list { columns: 1; }
  .bps-split--rev { direction: ltr; }
  .bps-nav-toggle { display: block; }
  .bps-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--bps-cream); border-bottom: 1px solid var(--bps-line);
    padding: 1rem;
  }
  .bps-nav.is-open { display: block; }
  .bps-nav-list { flex-direction: column; align-items: flex-start; }
  .bps-pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .bps-hero { min-height: auto; padding-top: 4rem; }
  .bps-staff-roles { grid-template-columns: 1fr 1fr; }
  .bps-staff-panel-card { grid-template-columns: 1fr; }
  .bps-staff-panel-card--reverse .bps-media,
  .bps-staff-panel-card--reverse .bps-staff-panel-card__body { order: unset; }
  .bps-product-hero__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .bps-modular__grid { grid-template-columns: 1fr; }
  .bps-stats { grid-template-columns: 1fr; }
  .bps-modular-flow__grid { grid-template-columns: 1fr 1fr; }
  .bps-modular-flow { padding: 1.75rem 1.25rem; }
  .bps-product-cta .bps-cta-band__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .bps-shots, .bps-use-strip, .bps-grid-3, .bps-staff-roles { grid-template-columns: 1fr; }
  .bps-modular-flow__grid { grid-template-columns: 1fr; }
  .bps-modular-flow__actions { flex-direction: column; align-items: stretch; }
  .bps-modular-flow__actions .bps-btn { width: 100%; min-width: 0; }
}
