/* ==========================================================================
   SMTP Manager by ByteCore Stack — Landing Page CSS
   Scoped to bpl- prefix to avoid conflicts with theme styles.
   ========================================================================== */

/* ── Outer wrapper — cancel .bpt-main padding + pull under transparent header */
.bpt-main:has(.bpl-wrap) { padding-block: 0; }
.bpl-wrap {
  margin-top:    calc(-1 * var(--bpt-header-h));
  margin-bottom: 0;
}

/* ── Shared section spacing ───────────────────────────────────────────────── */
.bpl-hero,
.bpl-stats,
.bpl-features,
.bpl-how,
.bpl-faq,
.bpl-cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

/* ── Section header ───────────────────────────────────────────────────────── */
.bpl-section-head {
  text-align:    center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.bpl-section-head h2 {
  font-size:   clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  color:       var(--bpt-text);
  line-height: 1.2;
  margin:      .75rem 0 .85rem;
}
.bpl-section-head p {
  color:     var(--bpt-text-2);
  font-size: 1.05rem;
}
.bpl-section-head--left { text-align: left; }
.bpl-section-head--left h2 { margin-bottom: 0; }

/* ── Badge pill ───────────────────────────────────────────────────────────── */
.bpl-badge {
  display:        inline-flex;
  width:          fit-content;
  align-items:    center;
  gap:            .4rem;
  padding:        .3rem .8rem;
  font-size:      .78rem;
  font-weight:    600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color:          var(--bpt-accent-h);
  background:     var(--bpt-accent-dim);
  border:         1px solid rgba(99, 102, 241, .3);
  border-radius:  999px;
}

/* ── Gradient text ────────────────────────────────────────────────────────── */
.bpl-gradient-text {
  background:              linear-gradient(135deg, #818cf8 0%, #a78bfa 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip:         text;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.bpl-btn {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  gap:             .5rem;
  padding:         .65rem 1.4rem;
  font-size:       .9rem;
  font-weight:     600;
  border-radius:   var(--bpt-radius);
  text-decoration: none;
  white-space:     nowrap;
  cursor:          pointer;
  border:          none;
  transition:      background var(--bpt-t), color var(--bpt-t),
                   box-shadow var(--bpt-t), opacity var(--bpt-t);
}
.bpl-btn--primary {
  background: var(--bpt-accent);
  color:      #fff;
  box-shadow: 0 0 0 0 var(--bpt-accent-glow);
}
.bpl-btn--primary:hover {
  background: #4f52d1;
  box-shadow: 0 4px 20px var(--bpt-accent-glow);
  color:      #fff;
}
.bpl-btn--ghost {
  background: transparent;
  color:      var(--bpt-text-2);
  border:     1px solid var(--bpt-border-light);
}
.bpl-btn--ghost:hover {
  color:        var(--bpt-text);
  border-color: var(--bpt-border-light);
  background:   var(--bpt-surface-2);
}
.bpl-btn--lg {
  padding:   .8rem 2rem;
  font-size: 1rem;
}

/* ════════════════════════════════════════════════════════════════════════════
   1. HERO
   ════════════════════════════════════════════════════════════════════════════ */
.bpl-hero {
  position:   relative;
  overflow:   hidden;
  padding:    calc(var(--bpt-header-h) + clamp(4rem, 9vw, 8rem)) 0 clamp(3rem, 7vw, 6rem);
  background: var(--bpt-bg);
}

.bpl-hero__glow {
  position:       absolute;
  top:            -20%;
  left:           50%;
  transform:      translateX(-50%);
  width:          clamp(500px, 80vw, 900px);
  height:         clamp(400px, 60vw, 700px);
  background:     radial-gradient(ellipse at center,
                    rgba(99, 102, 241, .18) 0%,
                    rgba(99, 102, 241, .07) 40%,
                    transparent 70%);
  pointer-events: none;
  z-index:        0;
}

.bpl-hero__grid {
  position:           absolute;
  inset:              0;
  background-image:   radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size:    28px 28px;
  pointer-events:     none;
  z-index:            0;
  mask-image:         radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
}

.bpl-hero__inner {
  position:              relative;
  z-index:               1;
  display:               grid;
  grid-template-columns: 1fr 1fr;
  align-items:           center;
  gap:                   clamp(2.5rem, 5vw, 5rem);
}

.bpl-hero__copy { display: flex; flex-direction: column; gap: 1.5rem; }

.bpl-hero__title {
  font-size:      clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight:    800;
  line-height:    1.1;
  color:          var(--bpt-text);
  letter-spacing: -.02em;
}

.bpl-hero__desc {
  font-size:  1.05rem;
  line-height:1.7;
  color:      var(--bpt-text-2);
  max-width:  480px;
}
.bpl-hero__desc code,
.bpl-step__desc code {
  font-family:   var(--bpt-mono);
  font-size:     .83em;
  color:         var(--bpt-accent-h);
  background:    var(--bpt-accent-dim);
  padding:       .15em .45em;
  border-radius: var(--bpt-radius-sm);
}

.bpl-hero__actions {
  display:     flex;
  flex-wrap:   wrap;
  gap:         .75rem;
  align-items: center;
}

.bpl-hero__proof {
  display:     flex;
  align-items: center;
  flex-wrap:   wrap;
  gap:         .5rem;
  font-size:   .83rem;
  color:       var(--bpt-text-2);
}
.bpl-proof-sep { color: var(--bpt-text-3); }

/* ── Plugin dashboard mockup ─────────────────────────────────────────────── */
.bpl-hero__visual {
  display:         flex;
  justify-content: center;
  align-items:     center;
}
.bpl-mockup {
  width:         100%;
  max-width:     520px;
  background:    var(--bpt-surface);
  border:        1px solid var(--bpt-border-light);
  border-radius: var(--bpt-radius-lg);
  box-shadow:    0 24px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(99,102,241,.1);
  overflow:      hidden;
  font-size:     .72rem;
  font-family:   var(--bpt-mono);
}
.bpl-mockup__chrome {
  display:       flex;
  align-items:   center;
  gap:           .4rem;
  padding:       .55rem .85rem;
  background:    var(--bpt-surface-2);
  border-bottom: 1px solid var(--bpt-border);
}
.bpl-chrome__dot {
  width:        10px;
  height:       10px;
  border-radius:50%;
  flex-shrink:  0;
}
.bpl-chrome__dot--red    { background: #f43f5e; }
.bpl-chrome__dot--yellow { background: #f59e0b; }
.bpl-chrome__dot--green  { background: #10b981; }
.bpl-chrome__url {
  margin-left: .5rem;
  color:       var(--bpt-text-3);
  font-size:   .7rem;
  font-family: var(--bpt-font);
}
.bpl-mockup__body {
  display:    flex;
  min-height: 320px;
}
.bpl-mock-sidebar {
  width:         140px;
  flex-shrink:   0;
  background:    var(--bpt-surface-3);
  border-right:  1px solid var(--bpt-border);
  padding:       .85rem .6rem;
  display:       flex;
  flex-direction:column;
  gap:           1rem;
}
.bpl-mock-logo {
  display:     flex;
  align-items: center;
  gap:         .4rem;
  font-family: var(--bpt-font);
  font-weight: 700;
  font-size:   .75rem;
  color:       var(--bpt-text);
  padding:     0 .3rem .5rem;
  border-bottom: 1px solid var(--bpt-border);
}
.bpl-mock-nav {
  list-style:     none;
  padding:        0;
  margin:         0;
  display:        flex;
  flex-direction: column;
  gap:            2px;
}
.bpl-mock-nav__item {
  display:      flex;
  align-items:  center;
  gap:          .4rem;
  padding:      .45rem .55rem;
  border-radius:var(--bpt-radius-sm);
  color:        var(--bpt-text-3);
  font-family:  var(--bpt-font);
  font-size:    .72rem;
  cursor:       default;
  transition:   background var(--bpt-t), color var(--bpt-t);
}
.bpl-mock-nav__item--active {
  background: var(--bpt-accent-dim);
  color:      var(--bpt-accent-h);
}
.bpl-mock-main {
  flex:           1;
  padding:        .85rem .9rem;
  display:        flex;
  flex-direction: column;
  gap:            .75rem;
  overflow:       hidden;
}
.bpl-mock-topbar {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             .5rem;
}
.bpl-mock-pagetitle {
  font-family: var(--bpt-font);
  font-weight: 700;
  font-size:   .82rem;
  color:       var(--bpt-text);
}
.bpl-status-pill {
  display:      flex;
  align-items:  center;
  gap:          .3rem;
  font-family:  var(--bpt-font);
  font-size:    .68rem;
  color:        var(--bpt-success);
  background:   var(--bpt-success-dim);
  padding:      .2rem .55rem;
  border-radius:999px;
  font-weight:  600;
}
.bpl-status-dot {
  width:        6px;
  height:       6px;
  border-radius:50%;
  background:   var(--bpt-success);
  flex-shrink:  0;
  animation:    bpl-pulse 2s ease-in-out infinite;
}
.bpl-mock-stats {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   .5rem;
}
.bpl-mstat {
  display:        flex;
  flex-direction: column;
  gap:            2px;
  background:     var(--bpt-surface-2);
  border:         1px solid var(--bpt-border);
  border-radius:  var(--bpt-radius-sm);
  padding:        .5rem .6rem;
}
.bpl-mstat__val {
  font-family: var(--bpt-font);
  font-weight: 700;
  font-size:   .88rem;
  color:       var(--bpt-text);
}
.bpl-mstat__val--ok  { color: var(--bpt-success); }
.bpl-mstat__val--err { color: #f43f5e; }
.bpl-mstat__lbl {
  font-family: var(--bpt-font);
  font-size:   .63rem;
  color:       var(--bpt-text-3);
}
.bpl-mock-section-title {
  font-family:    var(--bpt-font);
  font-size:      .68rem;
  font-weight:    600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color:          var(--bpt-text-3);
}
.bpl-mock-logs {
  list-style:     none;
  padding:        0;
  margin:         0;
  display:        flex;
  flex-direction: column;
  gap:            1px;
}
.bpl-log {
  display:       flex;
  align-items:   center;
  gap:           .45rem;
  padding:       .4rem .3rem;
  border-radius: var(--bpt-radius-sm);
  font-family:   var(--bpt-font);
  background:    var(--bpt-surface-2);
  border:        1px solid var(--bpt-border);
}
.bpl-log__dot {
  width:        6px;
  height:       6px;
  border-radius:50%;
  background:   var(--bpt-success);
  flex-shrink:  0;
}
.bpl-log__to {
  font-size:     .65rem;
  color:         var(--bpt-text-2);
  min-width:     0;
  overflow:      hidden;
  text-overflow: ellipsis;
  white-space:   nowrap;
  flex:          1;
}
.bpl-log__sub {
  font-size:     .65rem;
  color:         var(--bpt-text-3);
  flex:          1.5;
  overflow:      hidden;
  text-overflow: ellipsis;
  white-space:   nowrap;
}
.bpl-log__time {
  font-size:  .6rem;
  color:      var(--bpt-text-3);
  flex-shrink:0;
}
.bpl-log__dot--ok  { background: var(--bpt-success); }
.bpl-log__dot--err { background: #f43f5e; }
.bpl-log__badge {
  flex-shrink:   0;
  font-size:     .6rem;
  font-weight:   600;
  font-family:   var(--bpt-font);
  padding:       .15em .5em;
  border-radius: 999px;
}
.bpl-log__badge--ok  { color: var(--bpt-success); background: var(--bpt-success-dim); }
.bpl-log__badge--err { color: #f43f5e;            background: rgba(244,63,94,.12); }

/* ════════════════════════════════════════════════════════════════════════════
   2. STATS STRIP
   ════════════════════════════════════════════════════════════════════════════ */
.bpl-stats {
  padding:       clamp(1.75rem, 3vw, 2.5rem) 0;
  background:    var(--bpt-surface);
  border-top:    1px solid var(--bpt-border);
  border-bottom: 1px solid var(--bpt-border);
}
.bpl-stats__inner {
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-wrap:       wrap;
  gap:             clamp(1.5rem, 4vw, 3rem);
}
.bpl-stat {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            .25rem;
}
.bpl-stat__num {
  font-size:      clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight:    800;
  color:          var(--bpt-text);
  letter-spacing: -.02em;
}
.bpl-stat__lbl {
  font-size:  .82rem;
  color:      var(--bpt-text-2);
  white-space:nowrap;
}
.bpl-stat__div {
  width:      1px;
  height:     2.5rem;
  background: var(--bpt-border-light);
  flex-shrink:0;
}

/* ════════════════════════════════════════════════════════════════════════════
   3. FEATURES
   ════════════════════════════════════════════════════════════════════════════ */
.bpl-features {
  background: var(--bpt-bg);
  position:   relative;
  overflow:   hidden;
}
.bpl-features::before {
  content:          '';
  position:         absolute;
  inset:            0;
  background-image: radial-gradient(circle, rgba(99,102,241,.1) 1px, transparent 1px);
  background-size:  28px 28px;
  pointer-events:   none;
  z-index:          0;
}
.bpl-features .bpt-container { position: relative; z-index: 1; }

.bpl-feat-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1.25rem;
}
.bpl-feat-card {
  display:        flex;
  flex-direction: column;
  gap:            .85rem;
  padding:        1.75rem 1.5rem;
  background:     var(--bpt-surface);
  border:         1px solid var(--bpt-border);
  border-radius:  var(--bpt-radius-lg);
  transition:     border-color var(--bpt-t), box-shadow var(--bpt-t);
}
.bpl-feat-card:hover {
  border-color: var(--bpt-border-light);
  box-shadow:   var(--bpt-shadow);
}
.bpl-feat-card__icon {
  width:           44px;
  height:          44px;
  border-radius:   var(--bpt-radius);
  background:      var(--bpt-accent-dim);
  border:          1px solid rgba(99, 102, 241, .2);
  display:         flex;
  align-items:     center;
  justify-content: center;
  color:           var(--bpt-accent-h);
  flex-shrink:     0;
}
.bpl-feat-card h3 {
  font-size:   1rem;
  font-weight: 700;
  color:       var(--bpt-text);
}
.bpl-feat-card p {
  font-size:   .875rem;
  color:       var(--bpt-text-2);
  line-height: 1.65;
  margin:      0;
}

/* ════════════════════════════════════════════════════════════════════════════
   4. HOW IT WORKS
   ════════════════════════════════════════════════════════════════════════════ */
.bpl-how {
  background:    var(--bpt-surface);
  border-top:    1px solid var(--bpt-border);
  border-bottom: 1px solid var(--bpt-border);
  position:      relative;
  overflow:      hidden;
}
.bpl-how::before {
  content:          '';
  position:         absolute;
  inset:            0;
  background-image: linear-gradient(rgba(99,102,241,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(99,102,241,.05) 1px, transparent 1px);
  background-size:  40px 40px;
  pointer-events:   none;
  z-index:          0;
}
.bpl-how > .bpt-container { position: relative; z-index: 1; }
.bpl-steps {
  display:         flex;
  align-items:     flex-start;
  justify-content: center;
  gap:             0;
}
.bpl-step {
  flex:           1;
  max-width:      280px;
  text-align:     center;
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            1rem;
}
.bpl-step__num {
  font-family:    var(--bpt-mono);
  font-size:      .7rem;
  font-weight:    600;
  color:          var(--bpt-accent);
  letter-spacing: .12em;
}
.bpl-step__icon {
  width:           64px;
  height:          64px;
  border-radius:   var(--bpt-radius-lg);
  background:      var(--bpt-surface-2);
  border:          1px solid var(--bpt-border-light);
  display:         flex;
  align-items:     center;
  justify-content: center;
  color:           var(--bpt-accent-h);
  box-shadow:      0 4px 16px rgba(99,102,241,.12);
}
.bpl-step__title {
  font-size:   1.05rem;
  font-weight: 700;
  color:       var(--bpt-text);
  margin:      0;
}
.bpl-step__desc {
  font-size:   .875rem;
  color:       var(--bpt-text-2);
  line-height: 1.65;
  margin:      0;
}
.bpl-step__connector {
  flex-shrink: 0;
  align-self:  center;
  margin-top:  -2rem;
  color:       var(--bpt-text-3);
  padding:     0 .5rem;
}

/* ════════════════════════════════════════════════════════════════════════════
   5. FAQ
   ════════════════════════════════════════════════════════════════════════════ */
.bpl-faq {
  background:    var(--bpt-bg);
  border-top:    1px solid var(--bpt-border);
  border-bottom: 1px solid var(--bpt-border);
  position:      relative;
  overflow:      hidden;
}
.bpl-faq::before {
  content:    '';
  position:   absolute;
  inset:      0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(99,102,241,.04) 18px,
    rgba(99,102,241,.04) 19px
  );
  pointer-events: none;
  z-index:        0;
}
.bpl-faq__inner { position: relative; z-index: 1; }
.bpl-faq__inner {
  display:               grid;
  grid-template-columns: 280px 1fr;
  gap:                   clamp(2rem, 5vw, 5rem);
  align-items:           start;
}
.bpl-section-head--left .bpl-badge { margin-bottom: .75rem; }

.bpl-faq__list { display: flex; flex-direction: column; }

.bpl-faq__item { border-bottom: 1px solid var(--bpt-border); }
.bpl-faq__item:first-child { border-top: 1px solid var(--bpt-border); }

.bpl-faq__q {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             1rem;
  padding:         1.1rem 0;
  font-size:       .95rem;
  font-weight:     600;
  color:           var(--bpt-text);
  cursor:          pointer;
  list-style:      none;
  user-select:     none;
}
.bpl-faq__q::-webkit-details-marker { display: none; }
.bpl-faq__q:hover { color: var(--bpt-accent-h); }

.bpl-faq__chevron {
  flex-shrink: 0;
  color:       var(--bpt-text-3);
  transition:  transform var(--bpt-t), color var(--bpt-t);
}
details[open] .bpl-faq__chevron { transform: rotate(180deg); color: var(--bpt-accent); }
details[open] > .bpl-faq__q { color: var(--bpt-accent-h); }

/* ── Smooth open / close animation ──────────────────────────────────────────
   JS manages [open] + [data-closing] so CSS can animate both directions.
   grid-template-rows: 0fr ↔ 1fr is the only reliable way to animate
   an element with unknown height without JavaScript measuring.           */
.bpl-faq__item[open] > .bpl-faq__a,
.bpl-faq__item[data-closing] > .bpl-faq__a {
  display:               grid;
  grid-template-rows:    1fr;
  animation:             bpl-faq-open .28s cubic-bezier(.4, 0, .2, 1) forwards;
  overflow:              hidden;
}
.bpl-faq__item[data-closing] > .bpl-faq__a {
  grid-template-rows:    0fr;
  animation:             bpl-faq-close .28s cubic-bezier(.4, 0, .2, 1) forwards;
}

/* Inner wrapper — needed for the grid-row trick */
.bpl-faq__a > * { min-height: 0; overflow: hidden; }

@keyframes bpl-faq-open {
  from { grid-template-rows: 0fr; opacity: 0; }
  to   { grid-template-rows: 1fr; opacity: 1; }
}
@keyframes bpl-faq-close {
  from { grid-template-rows: 1fr; opacity: 1; }
  to   { grid-template-rows: 0fr; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .bpl-faq__item[open] > .bpl-faq__a,
  .bpl-faq__item[data-closing] > .bpl-faq__a { animation: none; }
}

.bpl-faq__a { padding-bottom: 1.1rem; }
.bpl-faq__a p {
  font-size:   .9rem;
  color:       var(--bpt-text-2);
  line-height: 1.7;
  margin:      0;
}
.bpl-faq__a code {
  font-family:   var(--bpt-mono);
  font-size:     .83em;
  color:         var(--bpt-accent-h);
  background:    var(--bpt-accent-dim);
  padding:       .15em .45em;
  border-radius: var(--bpt-radius-sm);
}

/* ════════════════════════════════════════════════════════════════════════════
   6. FINAL CTA
   ════════════════════════════════════════════════════════════════════════════ */
.bpl-cta {
  position:   relative;
  overflow:   hidden;
  text-align: center;
  background: var(--bpt-bg);
}
.bpl-cta__glow {
  position:       absolute;
  bottom:         -30%;
  left:           50%;
  transform:      translateX(-50%);
  width:          clamp(400px, 70vw, 800px);
  height:         clamp(300px, 50vw, 600px);
  background:     radial-gradient(ellipse at center,
                    rgba(99, 102, 241, .2) 0%,
                    rgba(99, 102, 241, .06) 50%,
                    transparent 70%);
  pointer-events: none;
  z-index:        0;
}
.bpl-cta__inner {
  position:        relative;
  z-index:         1;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  gap:             1.25rem;
}
.bpl-cta__title {
  font-size:      clamp(2rem, 5vw, 3.2rem);
  font-weight:    800;
  color:          var(--bpt-text);
  line-height:    1.15;
  letter-spacing: -.02em;
}
.bpl-cta__desc {
  font-size:   1.05rem;
  color:       var(--bpt-text-2);
  line-height: 1.65;
}
.bpl-cta__actions {
  display:         flex;
  flex-wrap:       wrap;
  gap:             .75rem;
  align-items:     center;
  justify-content: center;
  margin-top:      .5rem;
}

/* ── Keyframe ─────────────────────────────────────────────────────────────── */
@keyframes bpl-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Tablet ≤ 1024px ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bpl-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .bpl-hero__copy   { align-items: center; }
  .bpl-hero__desc   { max-width: 600px; }
  .bpl-hero__actions { justify-content: center; }
  .bpl-hero__proof  { justify-content: center; }
  .bpl-hero__visual { margin-top: 1rem; }
  .bpl-mockup       { max-width: 500px; }

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

  .bpl-steps {
    flex-direction: column;
    align-items:    center;
    gap:            1.5rem;
  }
  .bpl-step         { max-width: 400px; }
  .bpl-step__connector { margin-top: 0; transform: rotate(90deg); }

  .bpl-faq__inner {
    grid-template-columns: 1fr;
    gap:                   2rem;
  }
  .bpl-section-head--left { text-align: center; }
  .bpl-section-head--left .bpl-badge { margin: 0 auto .75rem; }
}

/* ── Mobile ≤ 640px ──────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .bpl-feat-grid    { grid-template-columns: 1fr; }
  .bpl-stat__div    { display: none; }
  .bpl-stats__inner { gap: 1.25rem 2.5rem; }

  .bpl-mockup       { font-size: .65rem; }
  .bpl-mock-sidebar { width: 110px; }

  .bpl-cta__actions .bpl-btn { width: 100%; max-width: 320px; }
}

/* ── Small mobile ≤ 400px ────────────────────────────────────────────────── */
@media (max-width: 400px) {
  .bpl-mock-sidebar { display: none; }
  .bpl-mockup__body { display: block; }
}
