/* ===================================
   Seattle Offline — custom overlay
   Palette: #23262d (ink), #fec107 (signal), #ffffff
====================================== */

:root {
  --ink: #23262d;
  --ink-2: #1a1c22;
  --ink-3: #2e323b;
  --signal: #fec107;
  --signal-soft: rgba(254, 193, 7, 0.18);
  --line: rgba(255, 255, 255, 0.08);
  --text-dim: rgba(255, 255, 255, 0.7);
}

/* --- Banner eyebrow + CTA row --- */
.banner-section .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--signal-soft);
  color: var(--signal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.banner-section .hero-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.banner-section .hero-cta .btn {
  margin: 0;
}

.banner-section .ghost-btn {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.banner-section .ghost-btn:hover {
  background: #fff !important;
  color: var(--ink) !important;
}

/* ===================================
   3-Act hero replacing the carousel
====================================== */

.story-section {
  background: var(--ink);
  color: #fff;
  padding: 0;
  overflow: hidden;
}

.story-act {
  padding: 90px 0;
  border-top: 1px solid var(--line);
  position: relative;
}

.story-act:first-child {
  border-top: 0;
}

.story-act .act-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 12px;
}

.story-act .act-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.15;
}

.story-act .act-lede {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.6;
}

.story-act .act-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Act 1 — Seattle map ---- */

.seattle-map {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}

.seattle-map .land {
  fill: var(--ink-3);
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
}

.seattle-map .water {
  fill: var(--ink-2);
}

.seattle-map .route-line {
  fill: none;
  stroke: var(--signal);
  stroke-width: 2;
  stroke-dasharray: 6 6;
  stroke-dashoffset: 0;
  opacity: 0.65;
  animation: routeWalk 4s linear infinite;
}

@keyframes routeWalk {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -120; }
}

.seattle-map .pin-dot {
  fill: var(--signal);
  cursor: pointer;
}

.seattle-map .pin-ring {
  fill: none;
  stroke: var(--signal);
  stroke-width: 2;
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: pinPulse 2.2s ease-out infinite;
}

.seattle-map .pin:nth-child(2) .pin-ring { animation-delay: 0.4s; }
.seattle-map .pin:nth-child(3) .pin-ring { animation-delay: 0.8s; }
.seattle-map .pin:nth-child(4) .pin-ring { animation-delay: 1.2s; }
.seattle-map .pin:nth-child(5) .pin-ring { animation-delay: 1.6s; }

@keyframes pinPulse {
  0%   { r: 8;  opacity: 0.9; }
  100% { r: 26; opacity: 0; }
}

.seattle-map .pin-label {
  fill: #fff;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  pointer-events: none;
  opacity: 0.85;
}

.seattle-map .pin:hover .pin-dot,
.seattle-map .pin.active .pin-dot {
  r: 10;
}

.map-legend {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.map-legend .legend-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.map-legend .legend-item:hover,
.map-legend .legend-item.active {
  background: rgba(254, 193, 7, 0.06);
  border-color: var(--signal);
  transform: translateY(-1px);
}

.map-legend .legend-dot {
  width: 10px;
  height: 10px;
  background: var(--signal);
  border-radius: 50%;
  margin-top: 6px;
  flex: 0 0 10px;
}

.map-legend .legend-name {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
}

.map-legend .legend-note {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.45;
}

/* ---- Act 2 — postcard handoff ---- */

.handoff-stage {
  position: relative;
  width: 100%;
  height: 420px;
  max-width: 560px;
  margin: 0 auto;
}

.handoff-stage .postcard {
  position: absolute;
  width: 190px;
  height: 115px;
  left: 50%;
  top: 30%;
  margin-left: -95px;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  padding: 14px;
  display: flex;
  gap: 10px;
  transform-origin: bottom center;
  animation: cardFan 6s ease-in-out infinite;
}

.handoff-stage .postcard .pc-qr {
  width: 44px;
  height: 44px;
  background:
    linear-gradient(var(--ink) 50%, transparent 50%) 0 0 / 6px 6px,
    linear-gradient(90deg, var(--ink) 50%, transparent 50%) 0 0 / 6px 6px,
    #fff;
  border: 3px solid var(--ink);
  border-radius: 4px;
  flex: 0 0 44px;
}

.handoff-stage .postcard .pc-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.handoff-stage .postcard .pc-headline {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
}

.handoff-stage .postcard .pc-sub {
  font-size: 10px;
  color: #555;
  line-height: 1.3;
}

.handoff-stage .postcard.pc-1 { animation-delay: 0s;   z-index: 1; }
.handoff-stage .postcard.pc-2 { animation-delay: 0.3s; z-index: 2; }
.handoff-stage .postcard.pc-3 { animation-delay: 0.6s; z-index: 3; }

@keyframes cardFan {
  0%   { transform: translateY(0) rotate(0);    opacity: 0.9; }
  20%  { transform: translateY(-10px) rotate(-8deg); opacity: 1; }
  40%  { transform: translateY(-10px) rotate(-8deg); opacity: 1; }
  55%  { transform: translate(90px, -20px) rotate(6deg) scale(1.04); opacity: 1; }
  75%  { transform: translate(90px, -20px) rotate(6deg) scale(1.04); opacity: 0.6; }
  100% { transform: translateY(0) rotate(0);    opacity: 0.9; }
}

.handoff-stage .postcard.pc-2 { animation-name: cardFan2; }
.handoff-stage .postcard.pc-3 { animation-name: cardFan3; }

@keyframes cardFan2 {
  0%   { transform: translateY(0) rotate(0); }
  20%  { transform: translateY(-6px) rotate(0); }
  100% { transform: translateY(-6px) rotate(0); }
}

@keyframes cardFan3 {
  0%   { transform: translateY(0) rotate(0); }
  20%  { transform: translateY(-2px) rotate(8deg); }
  100% { transform: translateY(-2px) rotate(8deg); }
}

.handoff-stage .phone {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 150px;
  height: 280px;
  border: 6px solid #fff;
  border-radius: 26px;
  background: var(--ink-2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.handoff-stage .phone::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 6px;
  background: var(--ink);
  border-radius: 4px;
}

.handoff-stage .phone .phone-screen {
  position: absolute;
  inset: 22px 8px 8px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  color: var(--ink);
  padding: 12px;
  animation: phoneFlow 6s ease-in-out infinite;
}

.handoff-stage .phone .scan-frame {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--ink) 50%, transparent 50%) 0 0 / 6px 6px,
    #fff;
  opacity: 0.35;
  animation: scanWipe 6s ease-in-out infinite;
}

@keyframes phoneFlow {
  0%, 40%  { background: #fff; }
  55%, 100% { background: #f7f7f9; }
}

@keyframes scanWipe {
  0%, 45%  { transform: translateY(0);    opacity: 0.35; }
  50%      { transform: translateY(0);    opacity: 0.6; }
  60%      { transform: translateY(-100%); opacity: 0; }
  100%     { transform: translateY(-100%); opacity: 0; }
}

.handoff-stage .phone .landing {
  position: absolute;
  inset: 22px 8px 8px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 12px;
  opacity: 0;
  transform: translateY(18px);
  animation: landingSlide 6s ease-in-out infinite;
  color: var(--ink);
}

@keyframes landingSlide {
  0%, 55%  { opacity: 0; transform: translateY(18px); }
  62%      { opacity: 1; transform: translateY(0); }
  95%      { opacity: 1; transform: translateY(0); }
  100%     { opacity: 0; transform: translateY(18px); }
}

.handoff-stage .landing .lp-title {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.handoff-stage .landing .lp-sub {
  font-size: 10px;
  color: #666;
  margin-bottom: 10px;
}

.handoff-stage .landing .lp-btn {
  display: inline-block;
  padding: 6px 10px;
  background: var(--signal);
  color: var(--ink);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.handoff-stage .handoff-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---- Act 3 — live ops dashboard ---- */

.ops-console {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.ops-console .console-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.ops-console .console-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin: 0;
}

.ops-console .console-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.ops-console .live-dot {
  width: 8px;
  height: 8px;
  background: #49d17c;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(73, 209, 124, 0.65);
  animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(73, 209, 124, 0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(73, 209, 124, 0); }
  100% { box-shadow: 0 0 0 0 rgba(73, 209, 124, 0); }
}

.ops-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.ops-tile {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
}

.ops-tile .tile-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.ops-tile .tile-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--signal);
  line-height: 1;
}

.ops-tile .tile-note {
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-dim);
}

.ops-bars {
  display: grid;
  gap: 10px;
}

.ops-bars .bars-title {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.bar-row {
  display: grid;
  grid-template-columns: 180px 1fr 50px;
  gap: 12px;
  align-items: center;
}

.bar-row .bar-name {
  font-size: 13px;
  color: #fff;
}

.bar-row .bar-name small {
  display: block;
  font-size: 10px;
  color: var(--text-dim);
  font-weight: 400;
}

.bar-row .bar-track {
  height: 10px;
  background: var(--ink);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.bar-row .bar-fill {
  height: 100%;
  background: var(--signal);
  border-radius: 999px;
  width: 0;
  transition: width 1.2s cubic-bezier(.2,.7,.2,1);
}

.bar-row .bar-fill.gray {
  background: #6a6f7a;
}

.bar-row .bar-value {
  font-size: 12px;
  color: var(--text-dim);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ===================================
   Values strip (replaces testimonials)
====================================== */

.values-section {
  background: #fff;
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}

.values-section .values-head {
  text-align: center;
  margin-bottom: 46px;
}

.values-section .values-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}

.values-section .values-head p {
  color: #555;
  max-width: 560px;
  margin: 0 auto;
}

.value-tile {
  text-align: center;
  padding: 24px 18px;
  border-radius: 12px;
  background: #faf9f5;
  border: 1px solid #f0ecdd;
  height: 100%;
}

.value-tile .value-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--signal);
  color: var(--ink);
  border-radius: 50%;
  font-weight: 800;
  margin-bottom: 14px;
}

.value-tile h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
}

.value-tile p {
  color: #555;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* ===================================
   Who it's for — fits / misfits
====================================== */

.fits-section {
  background: #fafafa;
  padding: 90px 0;
}

.fits-section .section-head {
  text-align: center;
  margin-bottom: 46px;
}

.fits-section .section-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}

.fits-section .section-head p {
  color: #555;
  max-width: 680px;
  margin: 0 auto;
}

.fits-col {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  border: 1px solid #ececec;
  box-shadow: 0 8px 24px rgba(35, 38, 45, 0.05);
}

.fits-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fits-col.good h4::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #2ea66c;
  border-radius: 50%;
}

.fits-col.bad h4::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #d64545;
  border-radius: 50%;
}

.fits-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fits-col li {
  padding: 10px 0;
  border-top: 1px solid #f2f2f2;
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

.fits-col li:first-child {
  border-top: 0;
}

/* ===================================
   How it works — 4 steps
====================================== */

.how-section {
  background: #fff;
  padding: 90px 0;
}

.how-section .section-head {
  text-align: center;
  margin-bottom: 46px;
}

.how-section .section-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}

.how-section .section-head p {
  color: #555;
  max-width: 680px;
  margin: 0 auto;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.how-step {
  position: relative;
  background: #faf9f5;
  border: 1px solid #f0ecdd;
  border-radius: 14px;
  padding: 28px 22px;
  counter-increment: step;
}

.how-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -16px;
  left: 22px;
  background: var(--ink);
  color: var(--signal);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.how-step h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--ink);
  margin: 16px 0 8px;
}

.how-step p {
  color: #555;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* ===================================
   Reporting + channel comparison cards
====================================== */

.reporting-section {
  background: var(--ink);
  color: #fff;
  padding: 90px 0;
}

.reporting-section .section-head {
  text-align: center;
  margin-bottom: 46px;
}

.reporting-section .section-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.reporting-section .section-head p {
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 auto;
}

.report-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  height: 100%;
}

.report-card .report-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--signal-soft);
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.report-card h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.report-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.channel-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.channel-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  font-size: 13px;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.channel-card h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin: 0;
}

.channel-card .strength {
  color: var(--text-dim);
}

.channel-card .win {
  color: #fff;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}

.channel-card .win em {
  color: var(--signal);
  font-style: normal;
  font-weight: 600;
}

/* ===================================
   FAQ accordion
====================================== */

.faq-section {
  background: #fff;
  padding: 90px 0;
}

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

.faq-section .section-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}

.faq-section .section-head p {
  color: #555;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: 1px solid #eee;
}

.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 17px;
  text-align: left;
  cursor: pointer;
}

.faq-q .faq-toggle {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-q .faq-toggle {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.open .faq-a {
  max-height: 260px;
  padding: 0 0 22px;
}

/* ===================================
   Request-a-brief CTA block (blog section repurposed)
====================================== */

.brief-card {
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 48px 38px;
  box-shadow: 0 24px 60px rgba(35, 38, 45, 0.18);
}

.brief-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
}

.brief-card p.lede {
  color: var(--text-dim);
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.6;
}

.brief-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 8px;
}

.brief-card ul li {
  padding-left: 22px;
  position: relative;
  color: var(--text-dim);
  font-size: 14px;
}

.brief-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--signal);
  font-weight: 700;
}

/* ===================================
   Section labels (eyebrows) for 2nd-tier sections
====================================== */

.section-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(35, 38, 45, 0.06);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.reporting-section .section-eyebrow,
.story-section .section-eyebrow {
  background: var(--signal-soft);
  color: var(--signal);
}

/* ===================================
   Services section content overrides
====================================== */

.services-section .service-col i.fas,
.services-section .service-col i.far {
  color: var(--signal);
}

.services-section .center-pitch {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.services-section .center-pitch .qr-illo {
  width: 180px;
  height: 180px;
  margin: 0 auto 18px;
}

.services-section .center-pitch h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.services-section .center-pitch p {
  color: #555;
  font-size: 14px;
  line-height: 1.55;
  max-width: 260px;
  margin: 0 auto;
}

/* ===================================
   Counter section tweaks
====================================== */

.counter-section .counter p.text {
  max-width: 220px;
  margin: 8px auto 0;
}

/* ===================================
   Responsive
====================================== */

@media (max-width: 991px) {
  .story-act { padding: 60px 0; }
  .story-act .act-title { font-size: 30px; }
  .story-act .act-visual { min-height: auto; margin-top: 32px; }

  .ops-tiles { grid-template-columns: repeat(2, 1fr); }
  .bar-row { grid-template-columns: 130px 1fr 46px; }

  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .channel-grid { grid-template-columns: repeat(2, 1fr); }

  .handoff-stage { height: 380px; }
  .handoff-stage .phone { width: 130px; height: 240px; }
}

@media (max-width: 575px) {
  .banner-section .hero-cta { justify-content: center; }
  .story-act .act-title { font-size: 26px; }
  .ops-tiles { grid-template-columns: 1fr 1fr; }
  .bar-row { grid-template-columns: 110px 1fr 40px; font-size: 12px; }
  .how-steps { grid-template-columns: 1fr; }
  .channel-grid { grid-template-columns: 1fr; }
  .brief-card { padding: 32px 22px; }
  .brief-card h2 { font-size: 24px; }
  .handoff-stage { height: 340px; max-width: 100%; }
  .handoff-stage .phone { width: 110px; height: 210px; }
}
