/* ==========================================================================
   Echelon Consulting - myechelonconsulting.com
   Marketing operations & growth consulting | Sarasota + nationwide remote
   --------------------------------------------------------------------------
   Editorial palette: Aubergine + Lime + Warm Bone
   Instrument Serif headings, Manrope body. Magazine-leaning layout.
   ========================================================================== */

:root {
  --aubergine:       #3D2547;
  --aubergine-deep:  #1F1226;
  --aubergine-soft:  #5B3A6A;
  --lime:            #C2D944;
  --lime-deep:       #8FA420;
  --lime-soft:       #DCE99A;
  --bone:            #F6F2EA;
  --bone-warm:       #ECE5D2;
  --rule:            #CFC4A9;
  --ink:             #3D2547;
  --ink-soft:        #6A5670;
  --white:           #FFFFFF;

  --radius: 2px;
  --radius-lg: 4px;

  --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-sans:    'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--aubergine);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a {
  color: var(--aubergine);
  text-decoration: none;
  border-bottom: 1px solid var(--lime);
  transition: color .2s ease, border-color .2s ease;
}
a:hover { color: var(--aubergine-deep); border-color: var(--lime-deep); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--aubergine-deep);
  font-weight: 400;
  line-height: 1.06;
  margin: 0 0 .6em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.8rem, 6.4vw, 5.2rem); }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 600; }
p  {
  margin: 0 0 1.1em;
  color: var(--ink-soft);
  font-weight: 400;
}

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 24px;
  margin: 0 auto;
}

/* Eyebrow / kicker */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aubergine);
  margin-bottom: 1.1rem;
  position: relative;
  padding-left: 38px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--lime);
  transform: translateY(-50%);
}
.eyebrow.on-dark { color: var(--lime-soft); }
.eyebrow.on-dark::before { background: var(--lime); }
.eyebrow.center { padding-left: 0; }
.eyebrow.center::before {
  position: static;
  display: block;
  margin: 0 auto 10px;
  transform: none;
  width: 36px;
}

.section-title {
  text-align: center;
  margin-bottom: 3.6rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-title h2 { margin-bottom: .6rem; }
.section-title p {
  font-size: 1.08rem;
  color: var(--ink-soft);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 15px 30px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all .25s ease;
  cursor: pointer;
  text-align: center;
  border: 1.5px solid transparent;
  text-transform: uppercase;
  position: relative;
}
.btn-primary {
  background: var(--aubergine);
  color: var(--bone);
  border-color: var(--aubergine);
}
.btn-primary:hover {
  background: var(--aubergine-deep);
  border-color: var(--aubergine-deep);
  color: var(--lime);
}
.btn-outline {
  background: transparent;
  color: var(--aubergine);
  border-color: var(--aubergine);
}
.btn-outline:hover {
  background: var(--aubergine);
  color: var(--bone);
}
.btn-outline.on-dark {
  color: var(--bone);
  border-color: var(--lime);
}
.btn-outline.on-dark:hover {
  background: var(--lime);
  color: var(--aubergine-deep);
  border-color: var(--lime);
}
.btn-large { padding: 17px 36px; font-size: 0.95rem; }

/* Topbar */
.topbar {
  background: var(--aubergine-deep);
  color: var(--bone);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 24px;
}
.topbar-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.topbar-tagline svg { width: 14px; height: 14px; color: var(--lime); }
.topbar-meta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.topbar-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--bone);
}
.topbar-meta svg { width: 13px; height: 13px; color: var(--lime); }

/* Nav */
.nav {
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--aubergine-deep);
  border: 0;
}
.brand:hover { color: var(--aubergine-deep); }
.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--aubergine-deep);
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  border-radius: var(--radius);
  line-height: 1;
  padding-bottom: 4px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  color: var(--aubergine-deep);
}
.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--aubergine-deep);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 2px;
  position: relative;
  border: 0;
}
.nav-menu a.active,
.nav-menu a:hover { color: var(--aubergine); }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--lime);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--aubergine-deep);
}
.hamburger svg { width: 22px; height: 22px; }

/* Mobile drawer */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(31,18,38,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 90;
}
.scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 86vw);
  background: var(--bone);
  padding: 32px 28px;
  transform: translateX(110%);
  transition: transform .3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  align-self: flex-end;
  color: var(--aubergine-deep);
  margin-bottom: 14px;
}
.drawer-close svg { width: 22px; height: 22px; }
.drawer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer ul a {
  display: block;
  padding: 14px 6px;
  color: var(--aubergine-deep);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 0;
  border-bottom: 1px solid var(--rule);
}
.drawer-cta { width: 100%; margin-bottom: 28px; }
.drawer-meta {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.drawer-meta strong { color: var(--aubergine-deep); }

/* Hero */
.hero {
  position: relative;
  background: var(--bone);
  color: var(--aubergine-deep);
  padding: 120px 0 140px;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.hero-rule {
  width: 60px;
  height: 3px;
  background: var(--lime);
  margin-bottom: 36px;
}
.hero-inner { position: relative; z-index: 2; max-width: 1000px; }
.hero h1 {
  color: var(--aubergine-deep);
  margin-bottom: 1.6rem;
  font-weight: 400;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--aubergine);
}
.hero-lead {
  color: var(--ink-soft);
  font-size: 1.18rem;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 660px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2.6rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-meta svg { width: 14px; height: 14px; color: var(--lime-deep); }

/* Hero ornament */
.hero-ornament {
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 540px;
  height: 540px;
  opacity: 0.12;
  pointer-events: none;
  color: var(--aubergine);
}

/* Sections */
.section-light { background: var(--bone); padding: 110px 0; }
.section-cream { background: var(--bone-warm); padding: 110px 0; }
.section-white { background: var(--white); padding: 110px 0; }
.section-dark {
  background: var(--aubergine-deep);
  color: var(--bone);
  padding: 110px 0;
}
.section-dark h2,
.section-dark h3 { color: var(--bone); }
.section-dark p { color: rgba(246,242,234,0.78); }
.section-dark .section-title p { color: rgba(246,242,234,0.78); }

/* Trust strip */
.trust {
  background: var(--bone-warm);
  padding: 60px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-tick {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--lime-deep);
  margin-top: 4px;
}
.trust-item .label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--aubergine-deep);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 4px;
}
.trust-item .desc {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Services grid - unboxed editorial cards with aubergine left rule */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px 48px;
}
.service-card {
  padding: 0 0 0 28px;
  border-left: 2px solid var(--aubergine);
  position: relative;
  transition: border-color .25s ease;
}
.service-card:hover { border-left-color: var(--lime-deep); }
.service-kicker {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 14px;
}
.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.7rem;
  line-height: 1.1;
}
.service-card p {
  font-size: 0.98rem;
  margin-bottom: 16px;
  color: var(--ink-soft);
}
.service-card .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-card .chips li {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--aubergine);
  padding: 4px 11px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: transparent;
}

/* Engagement formats */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.format {
  background: var(--bone);
  padding: 32px 28px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  position: relative;
}
.format .duration {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}
.format h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.format p { margin: 0; font-size: 0.95rem; }

/* Process bar - horizontal bar on aubergine-deep with lime numerals */
.process-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(220,233,154,0.16);
}
.process-step {
  padding: 36px 28px;
  border-right: 1px solid rgba(220,233,154,0.16);
  position: relative;
}
.process-step:last-child { border-right: 0; }
.process-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 400;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 18px;
}
.process-step h3 {
  margin-bottom: 8px;
  color: var(--bone);
  font-size: 1.3rem;
}
.process-step p {
  font-size: 0.92rem;
  margin: 0;
  color: rgba(246,242,234,0.78);
}

/* Who-we-work-with cards */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.who-card {
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 36px 30px;
  border-top: 4px solid var(--aubergine);
}
.who-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.who-card p { margin: 0; font-size: 0.96rem; }

/* Specializations */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.spec {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.spec svg {
  width: 20px;
  height: 20px;
  color: var(--lime-deep);
  flex-shrink: 0;
}
.spec-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--aubergine-deep);
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.timeline-step {
  padding: 30px 28px;
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  border-left: 2px solid var(--lime);
}
.timeline-step .when {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 12px;
  display: block;
}
.timeline-step h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.timeline-step p { margin: 0; font-size: 0.95rem; }

/* FAQ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq {
  background: var(--bone);
  border-top: 1px solid var(--rule);
  margin-bottom: 0;
  overflow: hidden;
}
.faq:last-child { border-bottom: 1px solid var(--rule); }
.faq summary {
  padding: 26px 26px 26px 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--aubergine-deep);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 50px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--lime-deep);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1;
  transition: transform .2s ease;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body {
  padding: 0 0 26px;
  color: var(--ink-soft);
  font-size: 1rem;
}
.faq-body p { margin: 0; }

/* CTA banner */
.cta-banner {
  background: var(--aubergine-deep);
  color: var(--bone);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  color: var(--bone);
  max-width: 780px;
  margin: 0 auto 1.2rem;
}
.cta-banner h2 .accent {
  color: var(--lime);
  font-style: italic;
}
.cta-banner p {
  color: rgba(246,242,234,0.8);
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.08rem;
}
.cta-banner .hero-actions { justify-content: center; margin: 0; }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.2rem; }
.contact-info p { font-size: 1.04rem; margin-bottom: 1.6rem; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row svg {
  width: 22px;
  height: 22px;
  color: var(--lime-deep);
  flex-shrink: 0;
  margin-top: 4px;
}
.contact-row strong {
  display: block;
  font-family: var(--font-sans);
  color: var(--aubergine-deep);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-row span {
  color: var(--ink-soft);
  font-size: 1rem;
}
.form-card {
  background: var(--bone);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--rule);
}
.form-card iframe {
  width: 100%;
  border: 0;
  min-height: 750px;
  display: block;
}

/* Page hero */
.page-hero {
  background: var(--bone);
  color: var(--aubergine-deep);
  padding: 100px 0 90px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.page-hero h1 {
  color: var(--aubergine-deep);
  margin-bottom: 1rem;
}
.page-hero h1 .accent {
  font-style: italic;
  color: var(--aubergine);
}
.page-hero p {
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.12rem;
}

/* Prose */
.prose {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.06rem;
}
.prose h2 {
  margin-top: 2.6rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.prose ul {
  color: var(--ink-soft);
  padding-left: 22px;
  margin-bottom: 1.4rem;
}
.prose ul li { margin-bottom: 0.6rem; }
.prose ul li strong { color: var(--aubergine-deep); font-weight: 600; }
.prose a {
  border-bottom: 1px solid var(--lime);
  color: var(--aubergine);
}
.prose a:hover { color: var(--aubergine-deep); border-color: var(--lime-deep); }

/* Footer */
.footer {
  background: var(--aubergine-deep);
  color: rgba(246,242,234,0.72);
  padding: 80px 0 32px;
}
.footer h4 {
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer .brand { margin-bottom: 18px; color: var(--bone); }
.footer .brand .brand-name,
.footer .brand .brand-sub { color: var(--bone); }
.footer .brand .brand-sub { color: rgba(246,242,234,0.6); }
.footer .brand .brand-mark { background: var(--aubergine); color: var(--lime); }
.footer p { color: rgba(246,242,234,0.68); font-size: 0.94rem; margin: 16px 0; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(246,242,234,0.72);
  font-size: 0.92rem;
  border: 0;
  font-family: var(--font-sans);
}
.footer ul a:hover { color: var(--lime); }
.footer-meta {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(246,242,234,0.7);
}
.footer-meta-row svg { width: 15px; height: 15px; color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(246,242,234,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(246,242,234,0.5);
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .process-bar { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(1), .process-step:nth-child(2) {
    border-bottom: 1px solid rgba(220,233,154,0.16);
  }
  .timeline { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .topbar-tagline { display: none; }
  .nav-menu { display: none; }
  .hamburger { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .hero { padding: 80px 0 90px; }
  .section-light, .section-cream, .section-white, .section-dark { padding: 80px 0; }
  .services-grid { gap: 44px; }
  .hero-ornament { display: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-bar { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid rgba(220,233,154,0.16); }
  .process-step:last-child { border-bottom: 0; }
  .hero-meta { gap: 14px; }
  .topbar-meta { gap: 14px; }
  .hero-actions .btn { flex: 1; }
}
