/* ============================================================================
   Benchmark Email × Zapier integration page — page-specific styles
   Load this AFTER colors_and_type.css and site.css (it uses their CSS variables).
   ============================================================================ */

/* Cap content width to 1200px so it stays within the nav. */
.be-container, .be-hero__grid, .be-features, .be-footer__grid { max-width:1200px; }

/* Zap templates embed. */
.be-zap-embed { max-width:920px; margin:0 auto; }
.be-zap-embed zapier-workflow { display:block; width:100%; }

/* Legacy/Classic note banner. */
.be-note { max-width:760px; margin:0 auto; background:var(--be-cloud); border-radius:var(--radius-sm); padding:18px 26px; }
.be-note p { font-family:var(--font-body); font-size:15px; line-height:1.65; color:var(--be-night-rider); margin:0; }
.be-note a { color:var(--be-purple); text-decoration:underline; }

/* Hero image. */
.be-hero-img { width:100%; height:auto; display:block; }

/* How it works — alternating full-width rows. */
.be-steps { max-width:1080px; margin:0 auto; display:flex; flex-direction:column; gap:64px; }
.be-step { display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px; align-items:center; }
.be-step--rev { grid-template-columns:1.15fr 0.85fr; }
.be-step--rev .be-step__text { order:2; }
.be-step--rev .be-step__shot { order:1; }
.be-step__num {
  width:44px; height:44px; border-radius:var(--radius-full); background:var(--be-purple);
  color:#fff; font-family:var(--font-display); font-size:20px; font-weight:500;
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.be-step__title { font-family:var(--font-display); font-size:25px; font-weight:500; color:var(--be-night-rider); margin:0 0 10px; }
.be-step__body { font-family:var(--font-body); font-size:16px; line-height:1.75; color:var(--be-rainy-day); margin:0; }
/* Step screenshot — large, readable. */
.be-step__shot {
  width:100%; aspect-ratio:16/9; object-fit:cover; object-position:top;
  border:2px solid var(--be-night-rider); border-radius:var(--radius-md); display:block;
  background:var(--be-soft-purple); box-shadow:0 12px 32px rgba(60,36,127,.14);
}

/* What you can automate — v1 triggers & actions. */
.be-auto { display:grid; grid-template-columns:1fr 1fr; gap:24px; max-width:1180px; margin:0 auto; }
.be-auto__card { background:#fff; border:2px solid var(--be-night-rider); border-radius:var(--radius-sm); padding:30px 28px; }
.be-auto__label {
  display:inline-block; font-family:var(--font-body); font-size:12px; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase; padding:5px 12px; border-radius:var(--radius-pill); margin-bottom:14px;
}
.be-auto__label--trigger { background:var(--be-minty-fresh); color:var(--be-night-rider); }
.be-auto__label--action { background:var(--be-lavendar); color:var(--be-purple); }
.be-auto__title { font-family:var(--font-display); font-size:21px; font-weight:500; line-height:1.3; color:var(--be-night-rider); margin:0 0 18px; }
.be-auto__sub { font-family:var(--font-body); font-size:14px; color:var(--be-rainy-day); margin:0 0 18px; }
.be-auto__list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.be-auto__list li { display:flex; align-items:flex-start; gap:10px; font-family:var(--font-body); font-size:15px; color:var(--be-night-rider); }
.be-auto__list svg { flex:0 0 auto; margin-top:3px; }

@media (max-width:960px) {
  .be-step { grid-template-columns:1fr; gap:24px; }
  .be-step__text, .be-step--rev .be-step__text { order:0; }
  .be-step__shot, .be-step--rev .be-step__shot { order:1; }
  .be-auto { grid-template-columns:1fr; }
}
