/*
 * flowright.css — FlowRight Plumbing Solutions
 *
 * Design philosophy: Bold, industrial, confident. A real emergency-service
 * company — not a template. Key moves:
 *   • Dark navy hero (rare among plumbing sites — immediate differentiation)
 *   • Orange as a second accent for all emergency / call actions
 *   • Left-border service cards instead of the top-stripe template pattern
 *   • Dark terminal-style dispatch board (the most unique element — lean in)
 *   • Pulsing location pin on the service-area map block
 *   • Dark navy footer to bookend the bold hero
 */

/* ── Custom properties ──────────────────────────────────────────────── */
.flowright-theme {
  --fr-body:              "Manrope", "Archivo", system-ui, sans-serif;
  --fr-heading:           "Archivo", "Manrope", system-ui, sans-serif;
  --fr-navy:              #061523;
  --fr-ink:               #0d2238;
  --fr-muted:             #4f6477;
  --fr-blue:              #0aa7d7;
  --fr-blue-deep:         #0c7faa;
  --fr-blue-light:        #4fc8e8;
  --fr-sky:               #e6f6fc;
  --fr-orange:            #f26419;
  --fr-orange-deep:       #d45510;
  --fr-line:              rgba(9, 31, 52, 0.14);
  --fr-panel-shadow:      0 18px 48px rgba(9, 31, 52, 0.12);
  --fr-panel-shadow-lg:   0 28px 64px rgba(9, 31, 52, 0.18);
  --site-bg:              #f5f8fb;
  --site-band:            #eaf2f7;
  --site-panel:           #ffffff;
  --site-paper:           #ffffff;
  --site-ink:             var(--fr-ink);
  --site-muted:           var(--fr-muted);
  --site-accent:          var(--fr-blue);
  --site-accent-ink:      #ffffff;
  --site-radius:          28px;
  --site-card-radius:     24px;
  --site-sans:            var(--fr-body);
  --site-serif:           var(--fr-heading);
  font-family: var(--fr-body);
  text-rendering: optimizeLegibility;
}

/* ── Global helpers ─────────────────────────────────────────────────── */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

/* ── Skip link ──────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--fr-orange);
  color: #fff;
  font: 800 0.9rem/1 "Archivo", system-ui, sans-serif;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 0; }

/* ── Focus ring ─────────────────────────────────────────────────────── */
.flowright-theme *:focus-visible {
  outline: 3px solid var(--fr-blue);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ── Heading line-heights ───────────────────────────────────────────── */
.flowright-theme h1,
.flowright-theme h2,
.flowright-theme h3 {
  font-family: var(--fr-heading);
  font-weight: 900;
  text-wrap: balance;
}

.flowright-theme h1 { line-height: 1.0; }
.flowright-theme h2 { line-height: 1.08; }
.flowright-theme h3 {
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: none;
}

/* ════════════════════════════════════════════════════════════════════
   NAV BAR
   ════════════════════════════════════════════════════════════════════ */

.flowright-theme .showcase-topbar {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--fr-line);
  box-shadow: 0 8px 24px rgba(9, 31, 52, 0.08);
}

.flowright-theme .showcase-nav {
  min-height: 74px;
  position: relative;
}

.flowright-theme .showcase-brand {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fr-ink);
}

.flowright-nav-mark {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(9, 31, 52, 0.18);
  box-shadow: 0 6px 18px rgba(9, 31, 52, 0.1);
}

.flowright-nav-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.23);
  transform-origin: 42% 48%;
}

.flowright-theme .showcase-links {
  gap: 1.1rem;
  font-weight: 800;
  color: var(--fr-muted);
}

/* Underline slide on hover */
.flowright-theme .showcase-links a:not(.showcase-cta) {
  position: relative;
  padding-bottom: 0.2rem;
}
.flowright-theme .showcase-links a:not(.showcase-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -0.1rem;
  height: 2px;
  background: var(--fr-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.flowright-theme .showcase-links a:not(.showcase-cta):hover::after,
.flowright-theme .showcase-links a:not(.showcase-cta):focus-visible::after {
  transform: scaleX(1);
}

/* ── Orange "Call" CTA ── used on nav + hero ──────────────────────── */
.flowright-cta-orange {
  background: linear-gradient(135deg, var(--fr-orange), var(--fr-orange-deep)) !important;
  border-color: var(--fr-orange) !important;
  color: #fff !important;
  box-shadow: 0 10px 26px rgba(242, 100, 25, 0.36) !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.flowright-cta-orange:hover,
.flowright-cta-orange:focus-visible {
  background: linear-gradient(135deg, #ff7b30, var(--fr-orange)) !important;
  border-color: #ff7b30 !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(242, 100, 25, 0.44) !important;
}

.flowright-theme .showcase-cta {
  border-radius: 999px;
}

.flowright-theme .showcase-panel {
  border-radius: 24px;
}

/* ════════════════════════════════════════════════════════════════════
   HERO — dark navy, confident, industrial
   ════════════════════════════════════════════════════════════════════ */

.flowright-theme .showcase-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 72% 62% at 72% 22%, rgba(10, 167, 215, 0.2) 0%, transparent 56%),
    radial-gradient(ellipse 48% 42% at 18% 84%, rgba(242, 100, 25, 0.15) 0%, transparent 58%),
    linear-gradient(145deg, #04111f 0%, #092034 48%, #071726 100%);
  border-bottom: 1px solid rgba(10, 167, 215, 0.18);
  padding-top: clamp(2rem, 3.6vw, 4.25rem);
  padding-bottom: clamp(2.6rem, 4.4vw, 4.8rem);
}

.flowright-theme .showcase-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.42;
  background:
    linear-gradient(rgba(79, 200, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 200, 232, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.18));
}

.flowright-theme .showcase-hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: 9%;
  z-index: -1;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  border: 34px solid rgba(10, 167, 215, 0.1);
  border-left-color: rgba(242, 100, 25, 0.18);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.flowright-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: center;
}

.flowright-hero-copy {
  display: grid;
  align-content: center;
}

.flowright-hero-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  width: fit-content;
  margin-bottom: 1.1rem;
  padding: 0.55rem 0.85rem 0.55rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.flowright-hero-mark img {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #fff;
  object-fit: contain;
  padding: 0.18rem;
}

.flowright-hero-mark span {
  display: grid;
  gap: 0.08rem;
}

.flowright-hero-mark strong {
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flowright-hero-mark em {
  color: var(--fr-blue-light);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* All text inside hero goes light */
.flowright-theme .showcase-hero h1 {
  color: #ffffff;
  max-width: 13ch;
  font-family: var(--fr-heading);
  font-size: clamp(3.2rem, 5.8vw, 5.9rem);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  word-spacing: 0.04em;
}

.flowright-theme .showcase-hero .showcase-kicker {
  color: var(--fr-blue-light);
  letter-spacing: 0.16em;
  margin-bottom: 0.7rem;
}

.flowright-theme .showcase-hero .showcase-lead {
  color: rgba(180, 215, 235, 0.88);
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
}

/* Pills — translucent white on dark */
.flowright-theme .showcase-hero .showcase-actions {
  margin-top: 1.45rem;
}

.flowright-theme .showcase-hero .showcase-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* Primary CTA on dark hero */
.flowright-theme .showcase-hero .showcase-actions .showcase-cta:not(.flowright-cta-orange) {
  background: linear-gradient(135deg, var(--fr-blue), var(--fr-blue-deep));
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(10, 167, 215, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.flowright-theme .showcase-hero .showcase-actions .showcase-cta:not(.flowright-cta-orange):hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(10, 167, 215, 0.48);
}

/* Logo art — floating card on dark bg */
.flowright-hero-route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  backdrop-filter: blur(14px);
}

.flowright-hero-route div {
  position: relative;
  min-height: 126px;
  padding: 1rem 1rem 1.05rem;
}

.flowright-hero-route div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.flowright-hero-route span,
.flowright-hero-route strong,
.flowright-hero-route small {
  display: block;
}

.flowright-hero-route span {
  color: var(--fr-orange);
  font: 900 0.72rem/1 "Archivo", system-ui, sans-serif;
  letter-spacing: 0.12em;
}

.flowright-hero-route strong {
  margin-top: 0.7rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.flowright-hero-route small {
  margin-top: 0.4rem;
  color: rgba(180, 215, 235, 0.68);
  font-size: 0.78rem;
  line-height: 1.35;
}

.flowright-theme .flowright-brand-art {
  width: min(100%, 300px);
  background: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  margin-bottom: 1.05rem;
  object-fit: contain;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 28px 56px rgba(0, 0, 0, 0.35);
}

/* Hero media — dark vignette blends left edge into navy bg */
.flowright-hero-command {
  position: relative;
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(79, 200, 232, 0.24);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(8, 28, 48, 0.94), rgba(4, 17, 31, 0.98));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 34px 80px rgba(0, 0, 0, 0.34);
}

.flowright-hero-command::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 0;
  border-radius: 24px;
  background:
    linear-gradient(rgba(79, 200, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 200, 232, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.flowright-command-topline,
.flowright-hero-media,
.flowright-command-panel {
  position: relative;
  z-index: 1;
}

.flowright-command-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.15rem 0.2rem 0.8rem;
  color: rgba(180, 215, 235, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.flowright-command-topline strong {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: #fff;
}

.flowright-command-topline strong::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--fr-orange);
  box-shadow: 0 0 14px rgba(242, 100, 25, 0.8);
  animation: fr-blink 1.2s step-end infinite;
}

.flowright-theme .flowright-hero-media {
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  clip-path: polygon(0 0, calc(100% - 58px) 0, 100% 58px, 100% 100%, 0 100%);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.flowright-theme .flowright-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    225deg,
    rgba(6, 21, 35, 0.05) 0%,
    rgba(6, 21, 35, 0.34) 52%,
    rgba(6, 21, 35, 0.8) 100%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.flowright-theme .flowright-hero-media img {
  min-height: 430px;
  filter: saturate(0.95) contrast(1.08);
  transform: scale(1.03);
}

.flowright-waterline {
  position: absolute;
  right: -8%;
  bottom: 16%;
  z-index: 2;
  width: 58%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--fr-blue-light), var(--fr-orange));
  box-shadow: 0 0 22px rgba(79, 200, 232, 0.7);
  transform: rotate(-10deg);
}

.flowright-waterline::before,
.flowright-waterline::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--fr-orange);
  box-shadow: 0 0 18px rgba(242, 100, 25, 0.82);
  transform: translateY(-50%);
}

.flowright-waterline::after {
  right: -18px;
  opacity: 0.4;
}

.flowright-theme .showcase-badge {
  z-index: 2;
  border-radius: 14px;
  border: 1px solid rgba(9, 31, 52, 0.14);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.flowright-theme .flowright-hero-badge {
  left: auto;
  right: 1rem;
  bottom: 1rem;
  max-width: min(350px, calc(100% - 2rem));
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.92);
}

.flowright-command-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.flowright-command-panel div {
  padding: 0.8rem 0.85rem;
  border: 1px solid rgba(79, 200, 232, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.flowright-command-panel span,
.flowright-command-panel strong {
  display: block;
}

.flowright-command-panel span {
  color: rgba(180, 215, 235, 0.68);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flowright-command-panel strong {
  margin-top: 0.28rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

/* Layout rebuild: asymmetrical dispatch stage, not a two-column hero */
.flowright-hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.72fr) minmax(290px, 360px);
  grid-template-areas:
    "identity status triage"
    "headline headline triage"
    "media media triage"
    "route route route";
  gap: clamp(0.95rem, 2vw, 1.45rem);
  align-items: stretch;
}

.flowright-hero-identity {
  grid-area: identity;
  align-self: center;
  display: grid;
  gap: 0.75rem;
  max-width: min(100%, 460px);
}

.flowright-theme .flowright-hero-logo-card {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: min(100%, 460px);
  height: clamp(9rem, 14vw, 11.5rem);
  min-height: 0;
  padding: clamp(0.65rem, 1.15vw, 0.95rem);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 253, 0.98) 68%, rgba(211, 241, 250, 0.96));
  box-shadow:
    0 0 0 1px rgba(79, 200, 232, 0.18),
    0 26px 68px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(79, 200, 232, 0.16);
}

.flowright-theme .flowright-hero-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(118deg, transparent 0 38%, rgba(10, 167, 215, 0.12) 44%, transparent 52% 100%),
    radial-gradient(circle at 10% 100%, rgba(242, 100, 25, 0.12), transparent 32%);
  opacity: 0.8;
}

.flowright-theme .flowright-hero-logo-card > img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  min-height: 0;
  object-fit: contain;
}

.flowright-hero-logo-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  align-items: center;
}

.flowright-hero-logo-caption span,
.flowright-hero-logo-caption strong {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.flowright-hero-logo-caption span {
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(79, 200, 232, 0.2);
  background: rgba(79, 200, 232, 0.12);
  color: var(--fr-blue-light);
}

.flowright-hero-logo-caption strong {
  padding: 0.5rem 0.78rem;
  border: 1px solid rgba(242, 100, 25, 0.24);
  background: rgba(242, 100, 25, 0.12);
  color: #fff;
}

.flowright-hero-status {
  grid-area: status;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
  align-self: center;
}

.flowright-hero-status span {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.55rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(180, 215, 235, 0.82);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.flowright-hero-headline {
  grid-area: headline;
  align-self: end;
  max-width: 880px;
  padding-top: clamp(0.6rem, 1.5vw, 1.25rem);
}

.flowright-hero-headline .showcase-actions {
  margin-top: 1.25rem;
}

.flowright-hero-triage {
  grid-area: triage;
  position: relative;
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 100%;
  padding: clamp(1.15rem, 2.1vw, 1.55rem);
  border: 1px solid rgba(79, 200, 232, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(242, 100, 25, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(8, 28, 48, 0.96), rgba(4, 17, 31, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 34px 80px rgba(0, 0, 0, 0.33);
  overflow: hidden;
}

.flowright-hero-triage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.44;
  background:
    linear-gradient(rgba(79, 200, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 200, 232, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.flowright-hero-triage > * {
  position: relative;
  z-index: 1;
}

.flowright-triage-header,
.flowright-triage-foot {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.flowright-triage-header span,
.flowright-triage-foot span {
  color: rgba(180, 215, 235, 0.66);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.flowright-triage-header strong {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.flowright-triage-header strong::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--fr-orange);
  box-shadow: 0 0 14px rgba(242, 100, 25, 0.85);
  animation: fr-blink 1.2s step-end infinite;
}

.flowright-triage-call {
  margin: 0;
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.flowright-triage-call span,
.flowright-triage-call a {
  display: block;
}

.flowright-triage-call span {
  color: rgba(180, 215, 235, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flowright-triage-call a {
  margin-top: 0.45rem;
  color: #fff;
  font-family: var(--fr-heading);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.025em;
  text-decoration: none;
}

.flowright-triage-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: triage;
}

.flowright-triage-list li {
  position: relative;
  padding-left: 2.25rem;
  color: rgba(180, 215, 235, 0.7);
}

.flowright-triage-list li::before {
  counter-increment: triage;
  content: counter(triage);
  position: absolute;
  left: 0;
  top: 0.1rem;
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: var(--fr-orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
}

.flowright-triage-list strong,
.flowright-triage-list span {
  display: block;
}

.flowright-triage-list strong {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flowright-triage-list span {
  margin-top: 0.18rem;
  font-size: 0.83rem;
  line-height: 1.45;
}

.flowright-triage-foot {
  margin-top: 0.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.flowright-triage-foot strong {
  color: var(--fr-blue-light);
  font-size: 0.85rem;
  font-weight: 900;
  text-align: right;
}

.flowright-hero-stage .flowright-hero-media {
  grid-area: media;
  min-height: 300px;
  border-radius: 30px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 78px) 100%, 0 100%);
}

.flowright-hero-stage .flowright-hero-media img {
  min-height: 300px;
}

.flowright-hero-stage .flowright-hero-badge {
  left: 1rem;
  right: auto;
  bottom: 1rem;
}

.flowright-hero-stage .flowright-hero-route {
  grid-area: route;
  margin-top: 0;
}

/* ── Emergency strip — on dark hero ──────────────────────────────── */
.flowright-emergency-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.flowright-emergency-item {
  border-radius: 12px;
  padding: 1rem 1.1rem 1.05rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--fr-blue);
  backdrop-filter: blur(8px);
}

/* First item (24/7) — orange accent, most urgent */
.flowright-emergency-item:first-child {
  border-left-color: var(--fr-orange);
}

.flowright-emergency-item strong,
.flowright-emergency-item span {
  display: block;
}

.flowright-emergency-item strong {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.88rem;
}

.flowright-emergency-item span {
  margin-top: 0.3rem;
  color: rgba(180, 215, 235, 0.75);
  font-size: 0.86rem;
  line-height: 1.45;
}

.flowright-emergency-strip .flowright-emergency-item span {
  margin-top: 0;
  color: var(--fr-blue-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flowright-emergency-strip .flowright-emergency-item strong {
  margin-top: 0.3rem;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.flowright-theme .showcase-section {
  position: relative;
  overflow: hidden;
}

.flowright-theme .showcase-head {
  margin-bottom: clamp(1.8rem, 3vw, 2.7rem);
}

.flowright-theme .showcase-head h2,
.flowright-quote-copy h2,
.flowright-review-column h2,
.flowright-map-column h2 {
  max-width: 19ch;
  font-family: var(--fr-heading);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.flowright-theme .showcase-head p:not(.showcase-kicker),
.flowright-review-column > p:not(.showcase-kicker),
.flowright-map-column > p:not(.showcase-kicker) {
  max-width: 48ch;
  color: var(--fr-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════════
   STATS STRIP
   ════════════════════════════════════════════════════════════════════ */

.flowright-stats-strip {
  background:
    linear-gradient(rgba(79, 200, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 200, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, #061523, #102a42);
  background-size: 28px 28px, 28px 28px, 100% 100%;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(10, 167, 215, 0.18);
}

.flowright-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: left;
}

.flowright-stat {
  padding: 1rem clamp(1rem, 2vw, 1.35rem);
}

.flowright-stat + .flowright-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.flowright-stat strong {
  display: block;
  font: 900 clamp(1.45rem, 2vw, 2rem)/1 var(--fr-heading);
  color: var(--fr-blue-light);
}

.flowright-stat span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(180, 215, 235, 0.65);
}

/* ════════════════════════════════════════════════════════════════════
   SERVICE CARDS — left accent border, not the top-stripe template look
   ════════════════════════════════════════════════════════════════════ */

.flowright-service-board {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: stretch;
}

.flowright-services-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(10, 167, 215, 0.12), transparent 32%),
    linear-gradient(180deg, #edf5f9 0%, #f8fbfd 100%);
}

.flowright-services-section::before {
  content: "";
  position: absolute;
  left: max(-18vw, -260px);
  bottom: -210px;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border: 42px solid rgba(10, 167, 215, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.flowright-service-stack {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.flowright-promise-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(1rem, 2vw, 1.35rem);
  overflow: hidden;
  border: 1px solid rgba(9, 31, 52, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(10, 167, 215, 0.08), rgba(242, 100, 25, 0.08)),
    #fff;
  box-shadow: 0 18px 44px rgba(9, 31, 52, 0.08);
}

.flowright-promise-bar div {
  padding: 1.05rem clamp(1rem, 2vw, 1.35rem);
}

.flowright-promise-bar div + div {
  border-left: 1px solid rgba(9, 31, 52, 0.1);
}

.flowright-promise-bar strong,
.flowright-promise-bar span {
  display: block;
}

.flowright-promise-bar strong {
  color: var(--fr-ink);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flowright-promise-bar span {
  margin-top: 0.28rem;
  color: var(--fr-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.flowright-service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  border: 1px solid rgba(9, 31, 52, 0.1);
  border-left: 4px solid var(--fr-blue);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: var(--fr-panel-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-left-color 0.22s ease;
}

.flowright-service-featured {
  min-height: 100%;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border-left-width: 0;
  border-top: 6px solid var(--fr-orange);
  background:
    radial-gradient(circle at right top, rgba(242, 100, 25, 0.12), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.flowright-service-featured h3 {
  font-size: clamp(1.9rem, 3.2vw, 3.15rem);
  letter-spacing: -0.04em;
}

.flowright-service-featured p {
  max-width: 58ch;
  font-size: 1.05rem;
}

.flowright-service-card:hover,
.flowright-service-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--fr-panel-shadow-lg);
  border-left-color: var(--fr-orange);
}

.flowright-service-label {
  display: inline-flex;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
  background: var(--fr-sky);
  color: var(--fr-blue-deep);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.flowright-service-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #e8f8fe, #d5f1fb);
  color: var(--fr-blue-deep);
  margin-bottom: 1rem;
  border: 1px solid rgba(10, 167, 215, 0.28);
}

.flowright-service-featured .flowright-service-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--fr-orange), var(--fr-orange-deep));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 34px rgba(242, 100, 25, 0.28);
}

.flowright-service-icon svg {
  width: 27px;
  height: 27px;
}

.flowright-service-card .showcase-list {
  margin-top: 1rem;
}

.flowright-service-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--fr-ink);
  border-color: var(--fr-ink);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.flowright-service-cta:hover,
.flowright-service-cta:focus-visible {
  background: var(--fr-orange);
  border-color: var(--fr-orange);
  transform: none;
}

/* ════════════════════════════════════════════════════════════════════
   DISPATCH BOARD — dark terminal, the most unique element on the page
   ════════════════════════════════════════════════════════════════════ */

.flowright-dispatch-board {
  margin-top: 1.2rem;
  background: linear-gradient(180deg, #071a2e, #0c2440) !important;
  border: 1px solid rgba(10, 167, 215, 0.22) !important;
  box-shadow: 0 0 0 1px rgba(10, 167, 215, 0.08), var(--fr-panel-shadow) !important;
  border-radius: 14px;
  overflow: hidden;
}

/* Terminal header bar */
.flowright-dispatch-board::before {
  content: "LIVE DISPATCH - Nashville Metro";
  display: block;
  padding: 0.55rem 1rem;
  background: rgba(10, 167, 215, 0.12);
  border-bottom: 1px solid rgba(10, 167, 215, 0.18);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fr-blue-light);
}

.flowright-dispatch-board .quote-line {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(10, 167, 215, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.87rem;
}

.flowright-dispatch-board .quote-line:last-child {
  border-bottom: none;
}

.flowright-dispatch-board .quote-line span:first-child {
  color: rgba(180, 215, 235, 0.72);
  font-size: 0.85rem;
}

/* Status badges */
.flowright-status-urgent {
  color: var(--fr-orange);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}

.flowright-status-urgent::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--fr-orange);
  box-shadow: 0 0 6px var(--fr-orange);
  animation: fr-blink 1.2s step-end infinite;
}

.flowright-status-scheduled {
  color: var(--fr-blue-light);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.flowright-status-quoted {
  color: #48bb78;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes fr-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.15; }
}

.flowright-quote-section {
  background:
    radial-gradient(circle at 18% 28%, rgba(10, 167, 215, 0.16), transparent 34%),
    radial-gradient(circle at 88% 72%, rgba(242, 100, 25, 0.12), transparent 34%),
    linear-gradient(145deg, #061523 0%, #0b2034 58%, #071827 100%);
  color: #fff;
}

.flowright-quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    linear-gradient(rgba(79, 200, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 200, 232, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.flowright-quote-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: center;
}

.flowright-quote-copy .showcase-kicker {
  color: var(--fr-blue-light);
}

.flowright-quote-copy h2 {
  color: #fff;
}

.flowright-quote-copy .showcase-lead {
  color: rgba(180, 215, 235, 0.82);
}

.flowright-quote-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.flowright-quote-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 2.35rem;
  padding: 0.54rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flowright-quote-chips span::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--fr-orange);
  box-shadow: 0 0 12px rgba(242, 100, 25, 0.68);
}

.flowright-quote-copy .flowright-dispatch-board {
  margin-top: 1.6rem;
}

.flowright-theme .flowright-intake-form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 253, 0.98));
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.flowright-theme .flowright-intake-form::before {
  content: "Priority intake";
  display: block;
  margin: -0.2rem -0.2rem 1rem;
  padding: 0.85rem 1rem;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--fr-orange), var(--fr-blue));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── Quote form ──────────────────────────────────────────────────── */
.form-group {
  display: grid;
  gap: 0.42rem;
}

.form-group label {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--fr-ink);
  letter-spacing: 0.02em;
}

.flowright-theme .showcase-form {
  border: 1px solid rgba(9, 31, 52, 0.1);
  background: linear-gradient(180deg, #ffffff, #f7fcff);
  box-shadow: var(--fr-panel-shadow);
}

.flowright-theme .showcase-form input,
.flowright-theme .showcase-form select,
.flowright-theme .showcase-form textarea {
  width: 100%;
  border: 1px solid rgba(9, 31, 52, 0.16);
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(9, 31, 52, 0.04);
}

.flowright-theme .showcase-form input:focus,
.flowright-theme .showcase-form select:focus,
.flowright-theme .showcase-form textarea:focus {
  border-color: var(--fr-blue);
  box-shadow: 0 0 0 4px rgba(10, 167, 215, 0.16);
  outline: none;
}

.flowright-theme .showcase-form .showcase-cta {
  background: var(--fr-orange);
  border-color: var(--fr-orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 26px rgba(242, 100, 25, 0.32);
}

.flowright-theme .showcase-form .showcase-cta:hover {
  background: var(--fr-orange-deep);
  border-color: var(--fr-orange-deep);
  transform: translateY(-1px);
}

.flowright-theme .showcase-form-note {
  color: var(--fr-muted);
  font-size: 0.84rem;
}

.flowright-theme .showcase-form-note a {
  color: var(--fr-blue-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.form-success {
  background: #e8f6ec;
  border: 1px solid #9dcfac;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #1b4d2e;
}

.form-success a {
  color: var(--fr-blue-deep);
  font-weight: 800;
  text-decoration: underline;
}

.flowright-proof-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(10, 167, 215, 0.1), transparent 30%),
    linear-gradient(180deg, #edf5f9 0%, #ffffff 100%);
}

.flowright-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: start;
}

.flowright-review-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  margin-top: 1.5rem;
}

.flowright-map-column {
  position: relative;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  border: 1px solid rgba(10, 167, 215, 0.2);
  border-radius: 30px;
  background:
    linear-gradient(rgba(79, 200, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 200, 232, 0.055) 1px, transparent 1px),
    linear-gradient(160deg, #071a2e, #0d2b45);
  background-size: 26px 26px, 26px 26px, 100% 100%;
  box-shadow: 0 28px 70px rgba(9, 31, 52, 0.18);
}

.flowright-map-column .showcase-kicker,
.flowright-map-column h2 {
  color: #fff;
}

.flowright-map-column h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
}

.flowright-map-column > p:not(.showcase-kicker) {
  color: rgba(180, 215, 235, 0.74);
}

/* ════════════════════════════════════════════════════════════════════
   REVIEWS
   ════════════════════════════════════════════════════════════════════ */

.flowright-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
  line-height: 1;
}

.flowright-theme #reviews .showcase-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(9, 31, 52, 0.09);
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flowright-theme #reviews .showcase-panel::before {
  content: "Verified local job";
  display: inline-flex;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  padding: 0.34rem 0.68rem;
  background: rgba(10, 167, 215, 0.11);
  color: var(--fr-blue-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flowright-theme #reviews .showcase-panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--fr-panel-shadow-lg);
}

.flowright-review-meta {
  margin-top: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(9, 31, 52, 0.09);
  font-size: 0.84rem;
  color: var(--fr-muted);
}

.flowright-reviewer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.flowright-reviewer div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.flowright-reviewer div:last-child strong {
  color: var(--fr-ink);
}

.flowright-reviewer div:last-child span {
  display: block;
  font-size: 0.8rem;
  color: var(--fr-muted);
}

.flowright-reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--fr-blue), var(--fr-blue-deep));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════
   SERVICE AREA MAP BLOCK — pulsing location pin on dark grid
   ════════════════════════════════════════════════════════════════════ */

.flowright-theme .map-block {
  min-height: 220px;
  border-radius: 22px;
  border: 1px solid rgba(10, 167, 215, 0.22);
  box-shadow: var(--fr-panel-shadow);
  background:
    linear-gradient(rgba(10, 167, 215, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 167, 215, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, #081c30, #0c2540);
  background-size: 28px 28px, 28px 28px, 100% 100%;
  position: relative;
  overflow: hidden;
}

.flowright-map-column .flowright-map-list {
  margin-top: 1.1rem;
}

.flowright-map-column .showcase-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
}

/* Pulsing ring — the "we're here" indicator */
.flowright-theme .map-block::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--fr-orange);
  box-shadow: 0 0 12px rgba(242, 100, 25, 0.7);
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: fr-ping 2.4s ease-out infinite;
}

/* Expanding pulse ring */
.flowright-theme .map-block::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(242, 100, 25, 0.6);
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: fr-pulse-ring 2.4s ease-out infinite;
}

@keyframes fr-ping {
  0%, 100% { box-shadow: 0 0 12px rgba(242, 100, 25, 0.7); }
  50%       { box-shadow: 0 0 22px rgba(242, 100, 25, 0.9); }
}

@keyframes fr-pulse-ring {
  0%   { width: 12px; height: 12px; opacity: 0.9; }
  100% { width: 90px; height: 90px; opacity: 0; }
}

.flowright-map-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .flowright-theme *,
  .flowright-theme *::before,
  .flowright-theme *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* ════════════════════════════════════════════════════════════════════
   FOOTER — dark navy to bookend the dark hero
   ════════════════════════════════════════════════════════════════════ */

.flowright-theme .showcase-footer {
  background: linear-gradient(90deg, #061523, #0d2238);
  border-top: 1px solid rgba(10, 167, 215, 0.18);
  color: rgba(180, 215, 235, 0.6);
}

.flowright-theme .showcase-footer span {
  color: rgba(180, 215, 235, 0.6);
}

.flowright-theme .showcase-credit a {
  color: var(--fr-orange);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.flowright-mobile-call {
  display: none;
}

/* Cohesion pass: shared rhythm, typography, and panel language. */
.flowright-theme .showcase-topbar,
.flowright-theme .showcase-panel,
.flowright-promise-bar,
.flowright-map-column,
.flowright-theme .map-block,
.flowright-theme .flowright-intake-form {
  border-color: rgba(9, 31, 52, 0.11);
}

.flowright-theme .showcase-topbar {
  background: rgba(250, 253, 255, 0.94);
  box-shadow: 0 10px 32px rgba(9, 31, 52, 0.08);
}

.flowright-theme .showcase-brand,
.flowright-theme .showcase-links,
.flowright-theme .showcase-cta,
.flowright-service-label,
.flowright-quote-chips span,
.flowright-dispatch-board::before {
  font-family: var(--fr-heading);
}

.flowright-theme .showcase-kicker {
  letter-spacing: 0.13em;
}

.flowright-theme .showcase-head h2,
.flowright-quote-copy h2,
.flowright-review-column h2,
.flowright-map-column h2 {
  line-height: 1.02;
}

.flowright-theme .showcase-lead,
.flowright-theme .showcase-head p,
.flowright-service-card p,
.flowright-theme .showcase-list li,
.flowright-review-cards p,
.flowright-theme .showcase-form-note {
  line-height: 1.68;
}

.flowright-theme .showcase-section {
  padding-block: clamp(4rem, 7vw, 6.4rem);
}

.flowright-services-section,
.flowright-proof-section {
  background:
    radial-gradient(circle at 86% 14%, rgba(10, 167, 215, 0.09), transparent 30%),
    linear-gradient(180deg, #eef5f9 0%, #fbfdff 100%);
}

.flowright-theme .showcase-panel,
.flowright-promise-bar {
  box-shadow: 0 18px 48px rgba(9, 31, 52, 0.09);
}

.flowright-service-card {
  border-left-width: 5px;
  background:
    linear-gradient(135deg, rgba(10, 167, 215, 0.045), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.flowright-service-featured {
  border-top: 1px solid rgba(9, 31, 52, 0.1);
  border-left: 5px solid var(--fr-orange);
  background:
    radial-gradient(circle at right top, rgba(242, 100, 25, 0.1), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.flowright-service-card h3,
.flowright-theme #reviews .showcase-panel h3 {
  color: var(--fr-ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.025em;
}

.flowright-service-featured h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.flowright-service-label,
.flowright-theme #reviews .showcase-panel::before {
  background: rgba(10, 167, 215, 0.1);
  color: var(--fr-blue-deep);
}

.flowright-service-icon {
  background: #eef9fd;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.flowright-promise-bar {
  background:
    linear-gradient(90deg, rgba(10, 167, 215, 0.055), rgba(242, 100, 25, 0.055)),
    #ffffff;
}

.flowright-quote-section {
  background:
    radial-gradient(circle at 16% 24%, rgba(10, 167, 215, 0.15), transparent 34%),
    radial-gradient(circle at 88% 72%, rgba(242, 100, 25, 0.1), transparent 34%),
    linear-gradient(145deg, #061523 0%, #0a1f34 56%, #071827 100%);
}

.flowright-theme .flowright-intake-form {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, #ffffff, #f6fbfe);
}

.flowright-theme .flowright-intake-form::before {
  background: linear-gradient(90deg, var(--fr-ink), #14304a);
  border-left: 5px solid var(--fr-orange);
}

.flowright-theme .showcase-form input,
.flowright-theme .showcase-form select,
.flowright-theme .showcase-form textarea {
  background: #fbfdff;
}

.flowright-map-column {
  background:
    linear-gradient(rgba(79, 200, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 200, 232, 0.05) 1px, transparent 1px),
    linear-gradient(160deg, #071a2e, #0c2740);
}

.flowright-map-column h2 {
  max-width: 18ch;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
}

.flowright-theme #reviews .showcase-panel {
  box-shadow: 0 16px 42px rgba(9, 31, 52, 0.08);
}

/* Extreme polish pass: more cinematic, tactile, and command-center sharp. */
.flowright-theme .showcase-topbar {
  border-bottom: 1px solid rgba(9, 31, 52, 0.09);
}

.flowright-theme .showcase-topbar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--fr-blue), var(--fr-orange), transparent);
  opacity: 0.72;
}

.flowright-theme .showcase-logo {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.flowright-theme .showcase-brand:hover .showcase-logo {
  transform: translateY(-1px) rotate(-2deg);
  box-shadow: 0 12px 28px rgba(9, 31, 52, 0.16);
}

.flowright-theme .showcase-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.flowright-theme .showcase-cta::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -75%;
  z-index: -1;
  width: 58%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  transition: left 0.48s ease;
}

.flowright-theme .showcase-cta:hover::after,
.flowright-theme .showcase-cta:focus-visible::after {
  left: 118%;
}

.flowright-theme .showcase-hero::before {
  animation: fr-grid-drift 18s linear infinite;
}

.flowright-theme .showcase-hero::after {
  box-shadow:
    0 0 74px rgba(10, 167, 215, 0.18),
    inset 0 0 38px rgba(79, 200, 232, 0.08);
}

.flowright-hero-stage::before {
  content: "";
  position: absolute;
  inset: -1.5rem -1rem;
  z-index: 0;
  border-radius: 40px;
  background:
    linear-gradient(118deg, transparent 0 38%, rgba(79, 200, 232, 0.09) 45%, transparent 54% 100%),
    radial-gradient(circle at 78% 38%, rgba(242, 100, 25, 0.12), transparent 26%);
  opacity: 0.72;
  pointer-events: none;
  animation: fr-scan-sweep 9s ease-in-out infinite;
}

.flowright-hero-stage > * {
  position: relative;
  z-index: 1;
}

.flowright-hero-headline {
  position: relative;
  padding-left: clamp(0rem, 1.6vw, 1.1rem);
}

.flowright-hero-headline::before {
  content: "";
  position: absolute;
  top: clamp(2.15rem, 3vw, 3rem);
  bottom: 0.25rem;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--fr-blue-light), var(--fr-orange));
  box-shadow: 0 0 22px rgba(79, 200, 232, 0.58);
}

.flowright-hero-readout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: min(100%, 760px);
  margin-top: clamp(1rem, 2vw, 1.45rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(3, 15, 27, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 54px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.flowright-hero-readout div {
  position: relative;
  padding: 0.95rem clamp(0.9rem, 2vw, 1.2rem);
}

.flowright-hero-readout div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.flowright-hero-readout span,
.flowright-hero-readout strong {
  display: block;
}

.flowright-hero-readout span {
  color: rgba(180, 215, 235, 0.68);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.flowright-hero-readout strong {
  margin-top: 0.28rem;
  color: #fff;
  font-size: clamp(0.88rem, 1.2vw, 1.02rem);
  font-weight: 900;
}

.flowright-pressure-gauge {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 24%, rgba(242, 100, 25, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.065);
}

.flowright-pressure-gauge > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.flowright-pressure-gauge span,
.flowright-pressure-gauge strong,
.flowright-pressure-gauge small {
  display: block;
}

.flowright-pressure-gauge span {
  color: rgba(180, 215, 235, 0.62);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.flowright-pressure-gauge strong {
  color: var(--fr-orange);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.flowright-pressure-gauge small {
  color: rgba(180, 215, 235, 0.7);
  font-size: 0.78rem;
  line-height: 1.45;
}

.flowright-gauge-track {
  position: relative;
  height: 0.68rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.26);
}

.flowright-gauge-track i {
  position: absolute;
  inset: 0 18% 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--fr-blue), var(--fr-blue-light), var(--fr-orange));
  box-shadow: 0 0 18px rgba(79, 200, 232, 0.44);
}

.flowright-gauge-track i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: translateX(-100%);
  animation: fr-gauge-glint 2.6s ease-in-out infinite;
}

.flowright-stats-strip {
  position: relative;
  overflow: hidden;
}

.flowright-stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 15%, rgba(255, 255, 255, 0.09), transparent 45%);
  transform: translateX(-58%);
  animation: fr-strip-sheen 8s ease-in-out infinite;
  pointer-events: none;
}

.flowright-stat {
  position: relative;
}

.flowright-stat::after {
  content: "";
  position: absolute;
  left: clamp(1rem, 2vw, 1.35rem);
  right: clamp(1rem, 2vw, 1.35rem);
  bottom: 0.72rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fr-blue-light), transparent);
  opacity: 0.42;
}

.flowright-service-card {
  isolation: isolate;
  transform-style: preserve-3d;
}

.flowright-service-card > * {
  position: relative;
  z-index: 1;
}

.flowright-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(125deg, transparent 0 34%, rgba(79, 200, 232, 0.13) 43%, transparent 52% 100%),
    radial-gradient(circle at 88% 16%, rgba(242, 100, 25, 0.1), transparent 24%);
  opacity: 0;
  transform: translateX(-8%);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.flowright-service-card::after {
  content: "01";
  position: absolute;
  right: 1rem;
  top: 0.55rem;
  z-index: 0;
  color: rgba(10, 167, 215, 0.1);
  font-family: var(--fr-heading);
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.flowright-service-stack .flowright-service-card:nth-child(1)::after {
  content: "02";
}

.flowright-service-stack .flowright-service-card:nth-child(2)::after {
  content: "03";
}

.flowright-service-card:hover::before,
.flowright-service-card:focus-within::before {
  opacity: 1;
  transform: translateX(0);
}

.flowright-service-card:hover,
.flowright-service-card:focus-within {
  transform: translateY(-7px);
}

.flowright-service-icon {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.flowright-service-card:hover .flowright-service-icon,
.flowright-service-card:focus-within .flowright-service-icon {
  transform: translateY(-2px) rotate(-3deg);
  box-shadow: 0 18px 32px rgba(10, 167, 215, 0.18);
}

.flowright-promise-bar {
  position: relative;
}

.flowright-promise-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 167, 215, 0.1), transparent 32%, rgba(242, 100, 25, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent);
  pointer-events: none;
}

.flowright-promise-bar div {
  position: relative;
  z-index: 1;
}

.flowright-dispatch-board {
  position: relative;
}

.flowright-dispatch-board::after {
  content: "";
  position: absolute;
  inset: 2.5rem 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 200, 232, 0.55), transparent);
  animation: fr-terminal-scan 2.9s ease-in-out infinite;
}

.flowright-theme .flowright-intake-form {
  transform: translateZ(0);
}

.flowright-theme .showcase-form input,
.flowright-theme .showcase-form select,
.flowright-theme .showcase-form textarea {
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.flowright-theme .showcase-form input:focus,
.flowright-theme .showcase-form select:focus,
.flowright-theme .showcase-form textarea:focus {
  transform: translateY(-1px);
}

.flowright-theme #reviews .showcase-panel {
  isolation: isolate;
}

.flowright-theme #reviews .showcase-panel::after {
  content: "\"";
  position: absolute;
  right: 1rem;
  bottom: -1.15rem;
  z-index: -1;
  color: rgba(10, 167, 215, 0.08);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.flowright-theme .map-block {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 24px 58px rgba(0, 0, 0, 0.24);
}

.flowright-map-column {
  overflow: hidden;
}

.flowright-map-column::after {
  content: "";
  position: absolute;
  right: -84px;
  top: -84px;
  width: 190px;
  aspect-ratio: 1;
  border: 28px solid rgba(79, 200, 232, 0.08);
  border-left-color: rgba(242, 100, 25, 0.16);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.flowright-map-column > * {
  position: relative;
  z-index: 1;
}

@keyframes fr-grid-drift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 88px 44px, 88px 44px; }
}

@keyframes fr-scan-sweep {
  0%, 100% { transform: translateX(-2%); opacity: 0.46; }
  50% { transform: translateX(2%); opacity: 0.82; }
}

@keyframes fr-gauge-glint {
  0%, 44% { transform: translateX(-100%); }
  72%, 100% { transform: translateX(120%); }
}

@keyframes fr-strip-sheen {
  0%, 40% { transform: translateX(-58%); opacity: 0; }
  55% { opacity: 1; }
  100% { transform: translateX(72%); opacity: 0; }
}

@keyframes fr-terminal-scan {
  0%, 100% { transform: translateY(0); opacity: 0.15; }
  50% { transform: translateY(8.3rem); opacity: 0.72; }
}

/* ════════════════════════════════════════════════════════════════════
   MOBILE NAV DRAWER
   ════════════════════════════════════════════════════════════════════ */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px 8px;
  background: #fff;
  border: 1px solid rgba(9, 31, 52, 0.2);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--fr-ink);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-hamburger { display: flex; }

  .showcase-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.55rem 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(9, 31, 52, 0.14);
    z-index: 20;
    box-shadow: 0 16px 40px rgba(9, 31, 52, 0.15);
  }

  .showcase-links.is-open { display: flex; }

  .showcase-links a,
  .showcase-links a:not(.showcase-cta) {
    display: block !important;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(9, 31, 52, 0.08);
    color: var(--fr-ink) !important;
    font-size: 1rem;
  }

  .showcase-links .showcase-cta {
    display: flex !important;
    width: 100%;
    justify-content: center;
    margin-top: 0.6rem;
    border-bottom: 0;
  }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */

@media (max-width: 980px) {
  .flowright-hero-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "identity"
      "status"
      "headline"
      "triage"
      "media"
      "route";
  }

  .flowright-hero-status {
    justify-content: flex-start;
  }

  .flowright-hero-triage {
    min-height: auto;
  }

  .flowright-hero-headline {
    padding-left: 0;
  }

  .flowright-hero-headline::before {
    display: none;
  }

  .flowright-service-board {
    grid-template-columns: 1fr;
  }

  .flowright-promise-bar {
    grid-template-columns: 1fr;
  }

  .flowright-promise-bar div + div {
    border-left: 0;
    border-top: 1px solid rgba(9, 31, 52, 0.1);
  }

  .flowright-quote-shell,
  .flowright-proof-grid {
    grid-template-columns: 1fr;
  }

  .flowright-map-column {
    order: -1;
  }

  .flowright-hero-grid {
    grid-template-columns: 1fr;
  }

  .flowright-hero-copy,
  .flowright-hero-command {
    max-width: 760px;
  }

  .flowright-theme .showcase-hero h1 {
    max-width: 11ch;
  }
}

@media (max-width: 700px) {
  body.flowright-theme {
    padding-bottom: 5.75rem;
  }

  .flowright-hero-readout {
    grid-template-columns: 1fr;
  }

  .flowright-hero-readout div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .flowright-mobile-call {
    position: fixed;
    left: 1rem;
    right: auto;
    bottom: 1rem;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: calc(100vw - 2rem);
    min-height: 4rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--fr-orange), var(--fr-orange-deep));
    box-shadow: 0 20px 46px rgba(242, 100, 25, 0.42);
    color: #fff;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(1rem);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .flowright-mobile-call.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .flowright-mobile-call span,
  .flowright-mobile-call strong {
    display: block;
  }

  .flowright-mobile-call span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    opacity: 0.86;
    text-transform: uppercase;
  }

  .flowright-mobile-call strong {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }
}

@media (max-width: 540px) {
  .flowright-theme .showcase-hero {
    padding-top: 2rem;
  }

  .flowright-hero-mark {
    align-items: flex-start;
    border-radius: 20px;
  }

  .flowright-theme .showcase-hero h1 {
    max-width: 8.6ch;
    font-size: clamp(2.35rem, 10.2vw, 3rem);
    letter-spacing: -0.02em;
    word-spacing: 0.03em;
  }

  .flowright-theme .showcase-hero .showcase-lead {
    max-width: 32ch;
  }

  .flowright-hero-status {
    display: grid;
    grid-template-columns: 1fr;
  }

  .flowright-pressure-gauge > div:first-child {
    align-items: flex-start;
    flex-direction: column;
  }

  .flowright-pressure-gauge strong {
    text-align: left;
  }

  .flowright-triage-header,
  .flowright-triage-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .flowright-hero-route,
  .flowright-command-panel {
    grid-template-columns: 1fr;
  }

  .flowright-hero-route div {
    min-height: auto;
  }

  .flowright-hero-route div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .flowright-command-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .flowright-theme .flowright-hero-media,
  .flowright-theme .flowright-hero-media img {
    min-height: 330px;
  }

  .flowright-hero-stage .flowright-hero-media {
    clip-path: none;
  }

  .flowright-theme .flowright-hero-badge {
    left: 0.75rem;
    right: 0.75rem;
    max-width: none;
  }

  .flowright-waterline {
    width: 76%;
    bottom: 24%;
  }

  .flowright-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flowright-stat:nth-child(odd) {
    border-left: 0;
  }

  .flowright-stat:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .flowright-review-cards {
    grid-template-columns: 1fr;
  }

  .flowright-emergency-strip {
    grid-template-columns: 1fr;
  }
}
