/* Revenue Operations Consultant page */

:root {
  --ro-mint: #7ad7c4;
  --ro-gold: #d8b35f;
  --ro-blue: #8ea7ff;
  --ro-ink: #09090f;
  --ro-panel: rgba(255,255,255,0.035);
  --ro-panel-strong: rgba(255,255,255,0.055);
  --ro-line: rgba(255,255,255,0.09);
  --ro-text-soft: rgba(242,240,245,0.62);
  --ro-text-dim: rgba(242,240,245,0.42);
}

.ro-page {
  background: var(--black);
}

.ro-page .nav__link[href="/revenue-operations-consultant"] {
  color: var(--off-white);
}

.ro-hero {
  position: relative;
  min-height: 86svh;
  padding: calc(var(--nav-h) + 4.8rem) 3rem 4.6rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(9,9,15,0.96), rgba(15,15,24,0.98)),
    repeating-linear-gradient(90deg, rgba(242,240,245,0.035) 0 1px, transparent 1px 80px);
  border-bottom: 1px solid var(--ro-line);
}

.ro-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(242,240,245,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,240,245,0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.72), rgba(0,0,0,0.08));
}

.ro-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  mix-blend-mode: overlay;
}

.ro-breadcrumb {
  position: absolute;
  top: calc(var(--nav-h) + 1.15rem);
  left: max(3rem, calc((100vw - var(--max-w)) / 2 + 3rem));
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(242,240,245,0.30);
}

.ro-breadcrumb a {
  transition: color 0.2s var(--ease);
}

.ro-breadcrumb a:hover {
  color: var(--off-white);
}

.ro-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.54fr);
  gap: 5rem;
  align-items: center;
}

.ro-hero__copy {
  max-width: 780px;
}

.ro-hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242,240,245,0.56);
}

.ro-hero__eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.ro-hero__eyebrow span + span::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--pink);
}

.ro-hero__h1 {
  max-width: 760px;
  margin-bottom: 1.6rem;
  font-size: 4.75rem;
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--off-white);
}

.ro-hero__lead {
  max-width: 690px;
  margin-bottom: 2.15rem;
  color: var(--ro-text-soft);
  font-size: 1.02rem;
  line-height: 1.74;
}

.ro-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.6rem;
}

.ro-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  border-top: 1px solid var(--ro-line);
  border-left: 1px solid var(--ro-line);
}

.ro-hero__stats div {
  padding: 1rem 1.05rem;
  border-right: 1px solid var(--ro-line);
  border-bottom: 1px solid var(--ro-line);
  background: rgba(255,255,255,0.022);
}

.ro-hero__stats strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--off-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ro-hero__stats span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.42;
  color: var(--ro-text-dim);
}

.ro-hero__panel {
  border: 1px solid var(--ro-line);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
  box-shadow: 0 28px 70px rgba(0,0,0,0.24);
  overflow: hidden;
}

.ro-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid var(--ro-line);
  font-family: var(--sans);
}

.ro-panel__header span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-light);
}

.ro-panel__header strong {
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(242,240,245,0.52);
}

.ro-panel__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--ro-line);
}

.ro-panel__metrics div {
  padding: 1.45rem 1.35rem;
  background: #11111b;
}

.ro-panel__metrics strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--sans);
  font-size: 2.2rem;
  color: var(--ro-mint);
}

.ro-panel__metrics div + div strong {
  color: var(--pink-light);
}

.ro-panel__metrics span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ro-text-dim);
}

.ro-panel__flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 1.35rem 1.35rem 0.9rem;
}

.ro-panel__flow span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid rgba(242,240,245,0.12);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242,240,245,0.70);
}

.ro-panel__flow span:nth-child(2) {
  border-color: rgba(122,215,196,0.45);
}

.ro-panel__flow span:nth-child(3) {
  border-color: rgba(214,58,143,0.45);
}

.ro-panel__bars {
  display: grid;
  gap: 0.55rem;
  padding: 0.4rem 1.35rem 1.25rem;
}

.ro-panel__bars i {
  display: block;
  width: var(--w);
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ro-mint), var(--pink));
  opacity: 0.74;
}

.ro-hero__panel p {
  padding: 1.2rem 1.35rem 1.35rem;
  border-top: 1px solid var(--ro-line);
  color: var(--ro-text-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.ro-keyword-strip {
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #0c0c13;
}

.ro-keyword-strip__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: roTicker 38s linear infinite;
}

.ro-keyword-strip__track span {
  display: inline-flex;
  align-items: center;
  gap: 1.55rem;
  padding: 1rem 1.55rem;
  font-family: var(--sans);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,240,245,0.24);
  white-space: nowrap;
}

.ro-keyword-strip__track span::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.55;
}

@keyframes roTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ro-section {
  position: relative;
  padding: 6.5rem 3rem;
}

.ro-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.ro-section__inner--narrow {
  max-width: 880px;
}

.ro-section__header {
  max-width: 760px;
  margin-bottom: 3.5rem;
}

.ro-section__header--wide {
  max-width: 880px;
}

.ro-section__header h2,
.ro-split-head h2,
.ro-compare__copy h2,
.ro-cta h2 {
  margin: 1rem 0 1.25rem;
  font-size: 3.15rem;
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--off-white);
}

.ro-section__header p,
.ro-split-head p,
.ro-compare__copy p,
.ro-cta p {
  color: var(--ro-text-soft);
}

.ro-diagnosis,
.ro-fix,
.ro-model,
.ro-compare,
.ro-cta {
  background: var(--black);
  border-top: 1px solid var(--ro-line);
}

.ro-diagnosis__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ro-line);
  border-left: 1px solid var(--ro-line);
}

.ro-signal {
  min-height: 280px;
  padding: 2.05rem 1.7rem;
  border-right: 1px solid var(--ro-line);
  border-bottom: 1px solid var(--ro-line);
  background: rgba(255,255,255,0.018);
  transition: background 0.25s var(--ease);
}

.ro-signal:hover {
  background: rgba(255,255,255,0.035);
}

.ro-signal span {
  display: block;
  margin-bottom: 1.45rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--pink-light);
}

.ro-signal h3 {
  margin-bottom: 0.9rem;
  font-size: 1.35rem;
  line-height: 1.22;
  color: var(--off-white);
}

.ro-signal p {
  color: var(--ro-text-soft);
  font-size: 0.9rem;
  line-height: 1.68;
}

.ro-signal--accent {
  background: rgba(214,58,143,0.06);
}

.ro-split-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 2.6rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--ro-line);
}

.ro-fix__list {
  display: grid;
  border-top: 1px solid rgba(255,255,255,0.065);
}

.ro-fix__item {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 250px;
  gap: 1.8rem;
  padding: 2.15rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.065);
}

.ro-fix__item::before {
  content: "";
  position: absolute;
  inset: 0 -1.25rem;
  z-index: 0;
  background: linear-gradient(90deg, rgba(214,58,143,0.06), rgba(122,215,196,0.03));
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.ro-fix__item:hover::before {
  opacity: 1;
}

.ro-fix__item > * {
  position: relative;
  z-index: 1;
}

.ro-fix__num {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  color: rgba(242,240,245,0.13);
}

.ro-fix__item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
  color: var(--off-white);
}

.ro-fix__item p {
  max-width: 720px;
  font-size: 0.93rem;
  color: var(--ro-text-soft);
}

.ro-fix__tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.2rem;
}

.ro-fix__tags span {
  font-family: var(--sans);
  font-size: 0.63rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(242,240,245,0.34);
}

.ro-proof,
.ro-faq {
  background: var(--black-soft);
  border-top: 1px solid var(--ro-line);
}

.ro-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ro-proof-card,
.ro-proof-card--wide {
  grid-column: auto;
  overflow: hidden;
  border: 1px solid var(--ro-line);
  border-radius: 8px;
  background: rgba(255,255,255,0.025);
}

.ro-proof-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--ro-line);
}

.ro-proof-card figcaption {
  padding: 1.05rem 1.1rem 1.2rem;
  color: var(--ro-text-soft);
  font-size: 0.86rem;
  line-height: 1.58;
}

.ro-proof-card figcaption span {
  display: block;
  margin-bottom: 0.38rem;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-light);
}

.ro-model__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ro-line);
  border-left: 1px solid var(--ro-line);
}

.ro-model__steps article {
  min-height: 270px;
  padding: 2rem 1.45rem;
  border-right: 1px solid var(--ro-line);
  border-bottom: 1px solid var(--ro-line);
}

.ro-model__steps span {
  display: block;
  margin-bottom: 1.7rem;
  font-family: var(--serif);
  font-size: 2.05rem;
  font-style: italic;
  color: rgba(242,240,245,0.14);
}

.ro-model__steps h3 {
  margin-bottom: 0.8rem;
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--off-white);
}

.ro-model__steps p {
  font-size: 0.87rem;
  color: var(--ro-text-soft);
}

.ro-compare__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 4rem;
  align-items: start;
}

.ro-compare__table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ro-line);
  border-left: 1px solid var(--ro-line);
}

.ro-compare__table div {
  min-height: 205px;
  padding: 1.7rem;
  border-right: 1px solid var(--ro-line);
  border-bottom: 1px solid var(--ro-line);
  background: rgba(255,255,255,0.02);
}

.ro-compare__table span {
  display: block;
  margin-bottom: 0.9rem;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-light);
}

.ro-compare__table p {
  font-size: 0.9rem;
  color: var(--ro-text-soft);
}

.ro-keywords {
  background: #11111b;
  border-top: 1px solid var(--ro-line);
}

.ro-keyword-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ro-line);
  border-left: 1px solid var(--ro-line);
}

.ro-keyword-matrix article {
  min-height: 235px;
  padding: 1.7rem;
  border-right: 1px solid var(--ro-line);
  border-bottom: 1px solid var(--ro-line);
  background: rgba(255,255,255,0.018);
}

.ro-keyword-matrix h3 {
  margin-bottom: 0.85rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--off-white);
}

.ro-keyword-matrix p {
  font-size: 0.86rem;
  line-height: 1.72;
  color: var(--ro-text-soft);
}

.ro-faq__list {
  border-top: 1px solid var(--ro-line);
}

.ro-faq details {
  border-bottom: 1px solid var(--ro-line);
  padding: 1.35rem 0;
}

.ro-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--off-white);
}

.ro-faq summary::-webkit-details-marker {
  display: none;
}

.ro-faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--pink-light);
  font-size: 1.3rem;
}

.ro-faq details[open] summary::after {
  content: "-";
}

.ro-faq details p {
  padding-top: 1rem;
  max-width: 720px;
  color: var(--ro-text-soft);
  font-size: 0.93rem;
}

.ro-cta {
  text-align: center;
  overflow: hidden;
}

.ro-cta::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(242,240,245,0.045) 0 1px, transparent 1px 80px);
}

.ro-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.ro-cta .sec-label {
  justify-content: center;
}

.ro-cta .sec-label::before {
  display: none;
}

.ro-cta p {
  margin-bottom: 2.2rem;
}

@media (max-width: 1180px) {
  .ro-hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.48fr);
    gap: 3rem;
  }

  .ro-hero__h1 {
    font-size: 4rem;
  }

  .ro-section__header h2,
  .ro-split-head h2,
  .ro-compare__copy h2,
  .ro-cta h2 {
    font-size: 2.75rem;
  }

  .ro-diagnosis__grid,
  .ro-keyword-matrix,
  .ro-proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ro-model__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ro-fix__item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .ro-fix__tags {
    grid-column: 2;
  }
}

@media (max-width: 880px) {
  .ro-hero,
  .ro-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .ro-hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 4.4rem);
  }

  .ro-breadcrumb {
    left: 1.5rem;
  }

  .ro-hero__content,
  .ro-split-head,
  .ro-compare__grid {
    grid-template-columns: 1fr;
  }

  .ro-hero__panel {
    display: none;
  }

  .ro-hero__h1 {
    font-size: 3.25rem;
    line-height: 1.05;
  }

  .ro-hero__lead {
    font-size: 1rem;
  }

  .ro-hero__stats,
  .ro-diagnosis__grid,
  .ro-proof__grid,
  .ro-model__steps,
  .ro-compare__table,
  .ro-keyword-matrix {
    grid-template-columns: 1fr;
  }

  .ro-section__header h2,
  .ro-split-head h2,
  .ro-compare__copy h2,
  .ro-cta h2 {
    font-size: 2.25rem;
    line-height: 1.1;
  }

  .ro-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .ro-signal,
  .ro-model__steps article,
  .ro-keyword-matrix article {
    min-height: auto;
  }
}

@media (max-width: 540px) {
  .ro-hero__h1 {
    font-size: 2.58rem;
  }

  .ro-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ro-hero__actions .cta-primary,
  .ro-hero__actions .cta-ghost {
    width: 100%;
    justify-content: center;
  }

  .ro-panel__metrics,
  .ro-panel__flow {
    grid-template-columns: 1fr;
  }

  .ro-fix__item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ro-fix__tags {
    grid-column: auto;
  }
}
